/* =============================================================================
   STELLA DÉCOMPTE
   Section ouverture · fond Spritz · 10 septembre 2026
   ============================================================================= */

/* --- Wrapper section --- */
.stella-decompte-section .stella-label {
  color: var(--stella-spritz);
  opacity: 0.75;
  text-align: center;
  margin-bottom: 16px;
}

/* --- Grille décompte --- */
.stella-decompte {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 16px;
}

/* --- Bloc individuel --- */
.stella-decompte__bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* --- Chiffre --- */
.stella-decompte__chiffre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: var(--stella-creme);
  min-width: 2ch;
  text-align: center;
}

/* --- Label unité --- */
.stella-decompte__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stella-spritz);
  opacity: 1;
}

/* --- Séparateur étoile --- */
.stella-decompte__sep {
  color: var(--stella-spritz);
  font-size: 1em;
  align-self: center;
  opacity: 1;
}

/* --- Mobile --- */
@media (max-width: 640px) {
  .stella-decompte {
    gap: clamp(16px, 4vw, 32px);
  }

  .stella-decompte__chiffre {
    font-size: clamp(36px, 8vw, 56px);
  }

  .stella-decompte__label {
    font-size: 10px;
  }
}