/* ── VP Pourcent List ── cercles de progression + titre/texte, séparés ──
   Anneau SVG : piste grise (--border) + arc rempli (--primary), pourcentage
   au centre. Animation de remplissage pilotée par le JS (vp-pourcent-list.js). */

.vp-pct {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

/* Item = anneau (gauche) + texte (droite). */
.vp-pct__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 28px;
}

/* Séparateur entre items (trait fin ton prune subtil, comme vp-stats). */
.vp-pct__item:not(:last-child) {
  border-block-end: 1px solid rgba(180, 99, 150, 0.18);
}

/* ── Anneau ── */
.vp-pct__ring {
  position: relative;
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
}

.vp-pct__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);   /* départ du remplissage à 12 h */
}

.vp-pct__track {
  fill: none;
  stroke: var(--border, #ececec);
  stroke-width: 9;
}

.vp-pct__fill {
  fill: none;
  stroke: var(--primary, #f1b8a0);
  stroke-width: 9;
  stroke-linecap: round;
  /* L'offset final est posé en inline par le serveur ; le JS l'anime.
     Transition douce de secours si la valeur change hors animation rAF. */
  transition: stroke-dashoffset 0.2s linear;
}

/* Pourcentage centré dans l'anneau. */
.vp-pct__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--surface-dark, #4b4b4b);
  letter-spacing: 0.5px;
}
.vp-pct__sign {
  font-size: 13px;
  margin-inline-start: 1px;
  opacity: 0.8;
}

/* ── Texte ── */
.vp-pct__body { flex: 1 1 auto; min-width: 0; }

.vp-pct__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--foreground, #000);
  margin-block-end: 6px;
}

.vp-pct__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: var(--surface-dark, #4b4b4b);
}

/* Mobile : anneau un peu plus compact, gap resserré. */
@media (max-width: 480px) {
  .vp-pct__item { gap: 18px; padding-block: 22px; }
  .vp-pct__ring { width: 88px; height: 88px; }
  .vp-pct__num { font-size: 17px; }
}
