/* VP Stats — rangée de chiffres-clés (compteur animé).
   Styles repris à l'identique du bloc atomic d'origine (page À propos) :
   - chiffre  : Playfair Display 900 italic 60px, corail #f1b8a0
   - label    : Montserrat 700 14px, gris #4b4b4b, uppercase, letter-spacing 1.5px
   - grille   : 2 colonnes (mobile) → 4 colonnes (≥1024px)
   La bande de fond (#fdf6f3) + le padding vertical restent portés par la
   section atomic parente : ce widget ne rend que la grille. */

.vp-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .vp-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.vp-stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 16px;
}

/* Séparateurs verticaux entre colonnes (desktop 4-across, gap 0).
   Trait fin centré (80 % de hauteur), ton prune subtil. */
@media (min-width: 1024px) {
  .vp-stats__item:not(:first-child)::before {
    content: "";
    position: absolute;
    inset-block: 10%;
    inset-inline-start: 0;
    width: 1px;
    background: rgba(180, 99, 150, 0.25);
  }
}

.vp-stats__value {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 60px;
  line-height: 1em;
  color: #f1b8a0;
  margin-block-end: 12px;
  white-space: nowrap; /* garde « 20 000 » sur une ligne */
}

.vp-stats__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #4b4b4b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Sous 600px (2 colonnes étroites) : le chiffre 60px déborde la colonne
   (« 20 000 » en nowrap). On le rend fluide pour qu'il tienne. */
@media (max-width: 600px) {
  .vp-stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .vp-stats__value { font-size: clamp(32px, 12vw, 52px); }
  .vp-stats__label { font-size: 12px; letter-spacing: 1px; }
}

/* Chiffres a chasse fixe : largeur de digit constante (anti-flicker compteur) */
.vp-stats__num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
