/* ─────────────────────────────────────────────
   05-stats.css — Bandeau stats
───────────────────────────────────────────────── */

.hero-stats-mobile {
  background: var(--accent1);
  padding-block: 0.75rem;
  padding-inline: max(1.25rem, calc((100vw - 1120px) / 2 + 1.25rem));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.hero-stat-mobile {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(31, 46, 42, 0.1);
}

.hero-stat-mobile:nth-last-child(-n+1),
.hero-stat-mobile:nth-last-child(-n+2):nth-child(odd) {
  border-bottom: none;
}

.hero-stat-mobile span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
