.stats {
  background: var(--white);
  padding: 0 var(--px);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.stats-inner {
  display: flex;
  border-left: 1px solid rgba(0, 0, 0, .07);
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 36px) clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(0, 0, 0, .07);
  gap: 5px;
}

.stat-label {
  font-size: clamp(11px, 1vw, 13px);
  color: var(--gray);
  font-weight: 500;
}

.stat-n {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.2;
  word-break: keep-all;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.stat-n.on { opacity: 1; transform: none }

@media (max-width: 480px) {
  .stats-inner { flex-direction: column; border-left: none }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  .stat:last-child { border-bottom: none }
  .stats { padding: 0 28px }
}
