.stat-row {
  display: flex;
  align-items: stretch;
}

.stat {
  flex: 1;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat + .stat {
  position: relative;
  padding-left: 3rem;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--color-border-primary);
}

@media (max-width: 768px) {
  .stat-row {
    display: flex;
    flex-direction: column;
  }
  .stat + .stat {
    padding-top: 3rem;
    padding-left: none;
  }
  .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border-primary);
}
}

/* TEXT STYLES */
.stat > .content-primary {
  color: var(--color-text-primary);
}

.stat > .content-primary-subtle {
  color: var(--color-text-tertiary);
}

.stat > .content-secondary {
  color: var(--color-text-tertiary);
}

.stat > .content-secondary-italic {
  color: var(--color-text-tertiary);
  font-style: italic;
}