/* ===================================================================
   MARY FLEUREAU — Styles spécifiques aux PAGES EXTRAIT (lecture sobre)
   À charger APRÈS styles.css. Ne redéfinit ni la nav, ni le footer,
   ni les boutons : uniquement la colonne de lecture.
   =================================================================== */

.extrait { padding-block: clamp(2.5rem, 6vw, 5rem); }

/* En-tête de l'extrait */
.extrait-head { text-align: center; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.extrait-head .eyebrow { display: block; margin-bottom: .8rem; }
.extrait-head h1 { font-size: var(--fs-h2); color: var(--bone); }
.extrait-chapter {
  font-family: var(--display);
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--bone-dim); font-size: var(--fs-small);
  margin-top: 1rem;
}

/* Colonne de lecture */
.reading { max-width: 64ch; margin-inline: auto; }
.reading p {
  color: var(--bone); margin-bottom: 1.4rem;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem);
  line-height: 1.85;
  text-align: justify; text-align-last: left;
  hyphens: auto; -webkit-hyphens: auto;
}
.reading p em, .reading p i { color: var(--bone-dim); font-style: italic; }

/* Bas de page : envie de lire la suite + retour */
.extrait-foot {
  max-width: 64ch; margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding-top: clamp(1.6rem, 4vw, 2.4rem);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
  text-align: center;
}
.extrait-foot p { color: var(--bone-dim); font-style: italic; }
.extrait-foot .hero-cta { justify-content: center; margin-top: 0; }
.extrait-back {
  font-family: var(--display); letter-spacing: .14em; text-transform: uppercase;
  font-size: clamp(1rem, 0.92rem + 0.3vw, 1.18rem); color: var(--bone-dim);
  transition: color .2s ease;
}
.extrait-back:hover { color: var(--ember); }
