/* =========================
   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(2rem, 3vw, 3rem);
  position:relative;
}

.fv-story__header h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  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.38vw, 1.14rem);
  line-height: 1.75;
  color: rgba(70, 28, 68, 0.84);
  background: rgba(255, 255, 255, 0.56);
  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(1rem, 1vw, 2rem);
}

.fv-story__section h2 {
  margin: 0 0 0.95rem;
  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 1rem;
  font-size: clamp(1.02rem, 1.26vw, 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);
}

/* =========================
   QUOTES
   ========================= */

.fv-story__quote {
  margin: clamp(0rem, 4vw, 3rem) 0;
  padding: 1.15rem 1.25rem 1.15rem 1.4rem;
  border-left: 3px solid rgba(152, 107, 164, 0.34);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.56) 0%,
    rgba(255, 255, 255, 0.18) 100%
  );
  border-radius: 0 18px 18px 0;
  box-shadow: 0 12px 28px rgba(78, 36, 78, 0.05);
}

.fv-story__quote p {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  line-height: 1.72;
  color: rgba(72, 30, 72, 0.88);
  font-style: italic;
}

/* =========================
   IMAGES
   ========================= */

.fv-story__figure {
  margin: 1.2rem 0 1.6rem;
}

.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);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px) {
  .fv-story {
    padding: 2rem 1rem 3rem;
  }

  .fv-story__intro {
    padding: 1rem;
    border-radius: 16px;
  }

  .fv-story__quote {
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 0 16px 16px 0;
  }

  .fv-story__figure {
    margin: 1rem 0 1.25rem;
  }

  .fv-story__figure img {
    border-radius: 18px;
  }
}