/* =========================
   PAGE MON HISTOIRE
   ========================= */

.fv-story {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 5rem) 1.25rem;
}

.fv-story__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fv-story__header h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}

.fv-story__intro {
  margin: 0;
  padding: 1.15rem 1.25rem;
  font-size: clamp(1.04rem, 1.4vw, 1.14rem);
  line-height: 1.75;
  color: rgba(70, 28, 68, 0.84);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(140, 100, 150, 0.16);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(90, 55, 100, 0.05);
  backdrop-filter: blur(4px);
}

.fv-story__section {
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.fv-story__section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fv-story__section p {
  margin: 0 0 1.05rem;
  font-size: clamp(1.02rem, 1.28vw, 1.12rem);
  line-height: 1.82;
  color: rgba(58, 30, 54, 0.9);
}

.fv-story__section p:last-child {
  margin-bottom: 0;
}

.fv-story strong {
  color: rgba(84, 18, 82, 0.96);
  font-weight: 600;
}

.fv-story em {
  font-style: italic;
  color: rgba(88, 44, 86, 0.9);
}

/* =========================
   IMAGES INSÉRÉES DANS LES SECTIONS
   ========================= */

.fv-story__figure {
  margin: 1.25rem 0 1.5rem;
}

.fv-story__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(60, 20, 60, 0.12);
}

.fv-story__figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(84, 62, 84, 0.72);
  text-align: center;
}

/* =========================
   LIENS
   ========================= */

.fv-story a {
  color: rgba(116, 34, 112, 0.95);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.fv-story a:hover,
.fv-story a:focus {
  color: rgba(143, 47, 136, 1);
}

/* =========================
   PETITE MISE EN VALEUR
   si tu veux isoler une phrase clé
   ========================= */

.fv-story__quote {
  margin: 1.75rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(148, 98, 160, 0.28);
  font-size: clamp(1.08rem, 1.45vw, 1.2rem);
  line-height: 1.75;
  color: rgba(74, 34, 74, 0.88);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px) {
  .fv-story {
    padding: 2rem 1rem 3rem;
  }

  .fv-story__intro {
    padding: 1rem 1rem;
    border-radius: 16px;
  }

  .fv-story__figure {
    margin: 1rem 0 1.25rem;
  }

  .fv-story__figure img {
    border-radius: 18px;
  }
}