
.livre-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 2.5rem auto 3rem;
  padding: 0 1.5rem;
}
.livre-hero__couverture {
  width: 260px;
  max-width: 70vw;
  height: auto;
  border-radius: var(--rayon-doux);
  box-shadow: 0 10px 30px rgba(36,28,23,.18);
  flex: 0 0 auto;
}
.livre-hero__texte {
  flex: 1 1 360px;
  max-width: 480px;
}
.livre-hero__texte h1 { text-align: left !important; }
.livre-hero__soustitre {
  font-family: "Fraunces", serif;
  color: var(--turquoise-fonce);
  font-weight: 500;
  margin: -.5rem 0 1rem;
}
.livre-hero__bouton {
  display: inline-block;
  margin-top: 1rem;
  padding: .75rem 1.6rem;
  background: var(--turquoise);
  color: var(--creme);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.livre-hero__bouton:hover { filter: brightness(1.06); }

@media (max-width: 700px) {
  .livre-hero { flex-direction: column; text-align: center; }
  .livre-hero__texte h1 { text-align: center !important; }
}

.livre-etapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.livre-etapes__carte {
  padding: 1.4rem;
  background: var(--turquoise-clair);
  border-radius: var(--rayon-doux);
}
.livre-etapes__carte h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: var(--brun); }
.livre-etapes__carte p { margin: 0; font-size: .88rem; color: #3c332c; }
