/* Clairvita, feuille de style unique.
   Vocabulaire de classes emprunte a l atelier de fabrication d une revue imprimee:
   rv-tete, rv-manchette, rv-cahier, rv-gouttieres, rv-filet, rv-cartouche, rv-galee,
   rv-ours. Mode clair integral, aucune variante sombre. */

/* 1. Jetons de la maquette
   ------------------------------------------------------------------ */
:root {
  --fond: #FAF6EA;
  --fond-alt: #F1ECDA;
  --surface: #FFFDF6;
  --encre: #23261A;
  --encre-douce: #575B42;
  --mauve: #8C2E78;
  --mauve-sombre: #742563;
  --mauve-clair: #F4E6F0;
  --sur-mauve: #FFF7FB;
  --olive: #6D7A38;
  --olive-texte: #556025;
  --olive-pale: #E7EAD6;
  --filet: #DED8C2;

  --largeur: 1264px;
  --gout: 20px;
  --tete: 72px;

  --pas: clamp(56px, 7vw, 104px);
  --rayon: 2px;

  --titre: "Spectral", "Iowan Old Style", Georgia, serif;
  --courant: "IBM Plex Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --commentaire: "Petrona", "Iowan Old Style", Georgia, serif;

  --courbe: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--tete) + 18px); }

body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: var(--courant);
  font-size: 1.06rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

/* 2. Typographie de revue
   ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--titre);
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h1 { font-size: 3.1rem; font-weight: 600; line-height: 1.12; }
h2 { font-size: 2.15rem; font-weight: 500; line-height: 1.2; }
h3 { font-size: 1.35rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.35; }

p { margin: 0 0 1.05em; max-width: 68ch; }
a { color: var(--mauve); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--mauve-sombre); }

.rv-surtitre {
  font-family: var(--commentaire);
  font-style: italic;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-texte);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}
.rv-surtitre::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--olive);
  flex: 0 0 24px;
}

.rv-chapo {
  font-family: var(--commentaire);
  font-size: 1.16rem;
  line-height: 1.62;
  color: var(--encre-douce);
  max-width: 62ch;
}

.rv-mention {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--encre-douce);
}

.rv-nombre {
  font-family: var(--commentaire);
  font-feature-settings: "onum" 1, "lnum" 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Mot sensible cite dans une demonstration: trait mauve ondule, jamais d aplat. */
.rv-sensible {
  text-decoration: underline wavy var(--mauve);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.rv-prudent { color: var(--olive-texte); font-weight: 500; }

/* 3. Grille editoriale a douze colonnes
   ------------------------------------------------------------------ */
.rv-cadre {
  width: min(100% - 40px, var(--largeur));
  margin-inline: auto;
}

.rv-grille {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gout);
  row-gap: 0;
}

.c1-4 { grid-column: 1 / 5; }
.c1-5 { grid-column: 1 / 6; }
.c1-6 { grid-column: 1 / 7; }
.c1-7 { grid-column: 1 / 8; }
.c1-8 { grid-column: 1 / 9; }
.c2-11 { grid-column: 2 / 12; }
.c3-11 { grid-column: 3 / 12; }
.c5-8 { grid-column: 5 / 9; }
.c5-9 { grid-column: 5 / 10; }
.c6-13 { grid-column: 6 / 13; }
.c7-13 { grid-column: 7 / 13; }
.c8-13 { grid-column: 8 / 13; }
.c9-13 { grid-column: 9 / 13; }
.c1-13 { grid-column: 1 / 13; }
.c4-13 { grid-column: 4 / 13; }
.c1-3 { grid-column: 1 / 4; }
.c4-7 { grid-column: 4 / 7; }
.c7-10 { grid-column: 7 / 10; }
.c10-13 { grid-column: 10 / 13; }

/* Les onze gouttieres materialisees, du haut du hero au pied de page. */
.rv-gouttieres {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(100% - 40px, var(--largeur));
  margin-inline: auto;
  left: 0;
  right: 0;
}
.rv-gouttieres i { border-right: 1px solid var(--filet); opacity: 0.4; }
.rv-gouttieres i:last-child { border-right: 0; }

main { position: relative; }
main > section { position: relative; z-index: 1; }

/* 4. Double filet ouvert, forme signature
   ------------------------------------------------------------------ */
.rv-filet {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 26px 26px 24px;
}
.rv-filet::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--olive-pale);
  border-radius: 1px;
  pointer-events: none;
}
/* Interruption de dix huit pixels a l angle superieur gauche. */
.rv-filet::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--fond);
  border-left: 4px solid var(--fond);
  pointer-events: none;
}
.rv-cahier--alt .rv-filet::after { border-color: var(--fond-alt); }

/* La punaise: petite etoile radiale posee dans l ouverture. */
.rv-punaise {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 20px;
  height: 20px;
  color: var(--mauve);
  z-index: 2;
}

.rv-etoile { display: block; width: 100%; height: 100%; }
.rv-etoile line { stroke: currentColor; stroke-width: 1.1; stroke-linecap: round; }

/* Etoile de fond, posee a un endroit choisi, jamais repetee. */
.rv-astre {
  position: absolute;
  width: 200px;
  height: 200px;
  color: var(--olive);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.rv-astre--probleme { top: 24px; right: -46px; }
.rv-astre--tarifs { bottom: -40px; left: -40px; width: 240px; height: 240px; }

/* 5. Boutons
   ------------------------------------------------------------------ */
.rv-bouton,
.rv-bouton-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--courant);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 26px;
  border-radius: var(--rayon);
  border-top-left-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms var(--courbe), transform 120ms var(--courbe), color 200ms var(--courbe);
}
.rv-bouton {
  background: var(--mauve);
  color: var(--sur-mauve);
  border: 1px solid var(--mauve);
}
.rv-bouton::after {
  content: "";
  position: absolute;
  inset: -3px -3px auto auto;
  width: 0;
  height: 0;
}
.rv-bouton .rv-picto { width: 10px; height: 10px; color: var(--sur-mauve); }
.rv-bouton:hover { background: var(--mauve-sombre); border-color: var(--mauve-sombre); color: var(--sur-mauve); }
.rv-bouton:active { transform: translateY(1px); }

.rv-bouton-2 {
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--olive);
}
.rv-bouton-2::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--olive-pale);
  border-top-color: transparent;
  border-left-color: transparent;
  transition: border-color 220ms var(--courbe);
}
.rv-bouton-2:hover { color: var(--encre); background: var(--olive-pale); }
.rv-bouton-2:hover::before { border-top-color: var(--olive-pale); border-left-color: var(--olive-pale); }
.rv-bouton-2:active { transform: translateY(1px); }

.rv-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 26px 0 0; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 2px;
  border-radius: 1px;
}

.rv-evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mauve);
  color: var(--sur-mauve);
  padding: 12px 20px;
  z-index: 60;
  font-weight: 600;
}
.rv-evitement:focus { left: 12px; top: 12px; }

/* 6. En tete fixe
   ------------------------------------------------------------------ */
.rv-tete {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--tete);
  background: rgba(250, 246, 234, 0.92);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--filet);
  box-shadow: 0 3px 0 -2px var(--olive-pale);
  transition: box-shadow 260ms var(--courbe), border-color 260ms var(--courbe);
}
.rv-tete.est-defile { box-shadow: none; border-bottom-color: var(--olive-pale); }
.rv-tete__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rv-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.rv-logo__pastille {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: var(--fond-alt);
  border: 1px solid var(--filet);
  border-radius: 3px;
  display: grid;
  place-items: center;
  color: var(--mauve);
}
.rv-logo__pastille .rv-etoile { width: 24px; height: 24px; }
.rv-logo__mot {
  font-family: var(--titre);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--encre);
}
.rv-logo__mot em { font-style: normal; color: var(--olive); }

.rv-nav { display: flex; align-items: center; gap: 24px; }
.rv-nav a {
  color: var(--encre);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.rv-nav a:hover { border-bottom-color: var(--olive-pale); }
.rv-nav a.est-active { border-bottom-color: var(--mauve); color: var(--encre); }

.rv-menu-bouton {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--olive);
  border-radius: var(--rayon);
  border-top-left-radius: 0;
  padding: 9px 14px;
  font-family: var(--courant);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--encre);
  cursor: pointer;
}
.rv-menu-bouton__barres { display: block; width: 18px; height: 10px; position: relative; }
.rv-menu-bouton__barres::before,
.rv-menu-bouton__barres::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--encre);
}
.rv-menu-bouton__barres::before { top: 0; }
.rv-menu-bouton__barres::after { bottom: 0; }

.rv-panneau {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--surface);
  padding: 26px 24px 40px;
  overflow-y: auto;
}
.rv-panneau[hidden] { display: none; }
.rv-panneau__tete { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.rv-panneau__fermer {
  background: transparent;
  border: 1px solid var(--olive);
  border-radius: var(--rayon);
  padding: 9px 16px;
  font-family: var(--courant);
  font-weight: 600;
  color: var(--encre);
  cursor: pointer;
}
.rv-panneau nav { display: flex; flex-direction: column; }
.rv-panneau nav a {
  font-family: var(--titre);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--encre);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--filet);
}
.rv-panneau .rv-bouton { margin-top: 26px; justify-content: center; }

/* 7. Rythme vertical des cahiers
   ------------------------------------------------------------------ */
.rv-cahier { padding: var(--pas) 0; position: relative; }
.rv-cahier--alt { background: var(--fond-alt); }
.rv-cahier--serre { padding: calc(var(--pas) * 0.66) 0; }
.rv-cahier__tete { margin-bottom: 44px; }
.rv-cahier__tete h2 { position: relative; padding-bottom: 16px; }
.rv-cahier__tete h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: 1px;
  background: linear-gradient(to right, var(--olive) 0 96px, transparent 96px 114px, var(--olive) 114px 100%);
}

/* 8. Manchette, le premier ecran
   ------------------------------------------------------------------ */
.rv-manchette { padding: calc(var(--pas) * 0.9) 0 var(--pas); }
.rv-manchette__texte { padding-right: 24px; }
.rv-manchette h1 em { font-style: normal; color: var(--mauve); }
.rv-manchette__socle {
  margin-top: 34px;
  border-top: 1px solid var(--filet);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.rv-manchette__socle strong { font-family: var(--commentaire); font-size: 1.5rem; font-weight: 600; color: var(--mauve); }
.rv-manchette__socle span { display: block; }

.rv-vignette { position: relative; }
.rv-vignette img { border-radius: var(--rayon); }
.rv-vignette__voile {
  position: absolute;
  inset: 3px;
  background: rgba(250, 246, 234, 0.08);
  pointer-events: none;
}
.rv-vignette__astre {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 74px;
  height: 74px;
  color: var(--mauve);
  opacity: 0.12;
}
.rv-legende {
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--encre-douce);
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--olive-pale);
}

/* 9. Le probleme, deux blocs de six colonnes
   ------------------------------------------------------------------ */
.rv-partage { border-left: 1px solid var(--filet); padding-left: 30px; }
.rv-liste-nue { list-style: none; margin: 0; padding: 0; }
.rv-liste-cout { list-style: none; margin: 0; padding: 0; }
.rv-liste-cout li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--filet);
  align-items: baseline;
}
.rv-liste-cout li:first-child { border-top: 1px solid var(--filet); }
.rv-liste-cout b {
  font-family: var(--commentaire);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--mauve);
}

/* Galee: la demonstration avant apres. */
.rv-galee { margin-top: 30px; display: grid; gap: 18px; }
.rv-galee__bloc { position: relative; }
.rv-etiquette {
  font-family: var(--commentaire);
  font-style: italic;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 1px;
  margin-bottom: 10px;
}
.rv-etiquette--revoir { background: var(--mauve-clair); color: var(--mauve-sombre); }
.rv-etiquette--prudente { background: var(--olive-pale); color: #3E4620; }
.rv-galee p { margin: 0; font-size: 1rem; }

/* 10. Methode, quatre etapes numerotees
   ------------------------------------------------------------------ */
.rv-etape { padding: 28px 24px 26px; }
.rv-etape__no {
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--olive-texte);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.rv-etape h3 { margin-bottom: 0.4em; }
.rv-etape p { font-size: 0.98rem; margin-bottom: 0; }

/* 11. Fonctionnalites, trois rangs de quatre colonnes
   ------------------------------------------------------------------ */
.rv-fonction { padding: 26px 24px 24px; margin-bottom: var(--gout); }
.rv-fonction h3 { font-size: 1.18rem; }
.rv-fonction p { font-size: 0.98rem; margin-bottom: 0; }
.rv-fonction__marque {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: var(--mauve);
  margin-bottom: 10px;
}

/* 12. Avantages, deux colonnes de six avec chiffre
   ------------------------------------------------------------------ */
.rv-avantage {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--filet);
  align-items: start;
}
.rv-avantage__chiffre {
  font-family: var(--commentaire);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--mauve);
  font-feature-settings: "onum" 1;
}
.rv-avantage__chiffre small { display: block; font-size: 0.8rem; font-style: italic; color: var(--encre-douce); margin-top: 6px; letter-spacing: 0.06em; }
.rv-avantage h3 { font-size: 1.2rem; margin-bottom: 0.35em; }
.rv-avantage p { font-size: 0.98rem; margin-bottom: 0; }

/* 13. Preuve sociale
   ------------------------------------------------------------------ */
.rv-temoignage { padding: 28px 26px 24px; height: 100%; display: flex; flex-direction: column; }
.rv-temoignage blockquote { margin: 0 0 18px; }
.rv-temoignage blockquote p {
  font-family: var(--commentaire);
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--encre);
  margin-bottom: 0.9em;
}
.rv-temoignage figcaption { margin-top: auto; border-top: 1px solid var(--filet); padding-top: 14px; }
.rv-temoignage figcaption b { display: block; font-weight: 600; font-size: 0.98rem; }
.rv-temoignage figcaption span { display: block; font-size: 0.86rem; color: var(--encre-douce); }

.rv-bandeau {
  background: var(--mauve);
  color: var(--sur-mauve);
  padding: 30px 0;
  margin-top: 46px;
  position: relative;
}
.rv-bandeau dl { margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.rv-bandeau dt {
  font-family: var(--commentaire);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.1;
  font-feature-settings: "onum" 1;
}
.rv-bandeau dd { margin: 6px 0 0; font-size: 0.9rem; line-height: 1.45; color: var(--sur-mauve); opacity: 0.94; }

/* 14. Tarifs
   ------------------------------------------------------------------ */
.rv-formule { padding: 30px 26px 28px; display: flex; flex-direction: column; height: 100%; }
.rv-formule--phare { background: var(--surface); border-color: var(--olive); }
.rv-formule--phare::before { border-color: var(--olive-pale); }
.rv-formule__fanion {
  font-family: var(--commentaire);
  font-style: italic;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve-sombre);
  background: var(--mauve-clair);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}
.rv-formule h3 { margin-bottom: 0.3em; }
.rv-formule__prix { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 4px; }
.rv-formule__prix b { font-family: var(--commentaire); font-size: 2.7rem; font-weight: 600; line-height: 1; color: var(--encre); }
.rv-formule__prix span { font-family: var(--commentaire); font-style: italic; font-size: 0.92rem; color: var(--encre-douce); }
.rv-formule__cible { font-size: 0.92rem; color: var(--encre-douce); margin: 12px 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--filet); }
.rv-formule ul { list-style: none; margin: 0 0 24px; padding: 0; }
.rv-formule li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.rv-formule li .rv-puce {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  color: var(--olive);
}
.rv-formule .rv-bouton,
.rv-formule .rv-bouton-2 { margin-top: auto; justify-content: center; }
.rv-tarifs__note { margin-top: 30px; font-size: 0.92rem; color: var(--encre-douce); }

/* 15. FAQ
   ------------------------------------------------------------------ */
.rv-question {
  border-bottom: 1px solid var(--filet);
  padding: 4px 0;
}
.rv-question:first-of-type { border-top: 1px solid var(--filet); }
.rv-question summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--titre);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}
.rv-question summary::-webkit-details-marker { display: none; }
.rv-question summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -7px;
  border-right: 2px solid var(--mauve);
  border-bottom: 2px solid var(--mauve);
  transform: rotate(45deg);
  transition: transform 240ms var(--courbe);
}
.rv-question[open] summary::after { transform: rotate(225deg); }
.rv-question__corps { padding: 0 44px 22px 0; }
.rv-question__corps p:last-child { margin-bottom: 0; }

/* 16. Formulaire
   ------------------------------------------------------------------ */
.rv-formulaire { padding: 32px 30px 30px; }
.rv-champ { margin-bottom: 18px; }
.rv-champ label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.rv-champ input[type="text"],
.rv-champ input[type="email"],
.rv-champ select,
.rv-champ textarea {
  width: 100%;
  font-family: var(--courant);
  font-size: 1rem;
  color: var(--encre);
  background: var(--fond);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 11px 13px;
}
.rv-champ textarea { resize: vertical; min-height: 130px; }
.rv-champ input:hover,
.rv-champ select:hover,
.rv-champ textarea:hover { border-color: var(--olive); }
.rv-aide { font-size: 0.84rem; color: var(--encre-douce); margin: 6px 0 0; }
.rv-consentement {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 22px 0 24px;
}
.rv-consentement input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--mauve); }
.rv-formulaire .rv-bouton { width: 100%; justify-content: center; }

.rv-rappel { padding: 28px 26px 26px; }
.rv-rappel h3 { font-size: 1.16rem; }
.rv-rappel ul { list-style: none; margin: 0 0 18px; padding: 0; }
.rv-rappel li { padding: 12px 0; border-bottom: 1px solid var(--filet); font-size: 0.95rem; }
.rv-rappel li:last-child { border-bottom: 0; }

/* 17. Ours, le pied de page
   ------------------------------------------------------------------ */
.rv-ours {
  background: var(--fond-alt);
  border-top: 1px solid var(--filet);
  padding: 56px 0 0;
  position: relative;
  z-index: 1;
}
.rv-ours__colonnes {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 36px;
  padding-bottom: 44px;
}
.rv-ours h2, .rv-ours h3 {
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-texte);
  margin-bottom: 16px;
}
.rv-ours ul { list-style: none; margin: 0; padding: 0; }
.rv-ours li { margin-bottom: 9px; }
.rv-ours a { color: var(--encre); text-decoration: none; font-size: 0.94rem; }
.rv-ours a:hover { color: var(--mauve); text-decoration: underline; }
.rv-ours p { font-size: 0.92rem; color: var(--encre-douce); }
.rv-ours__social { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; }
.rv-ours__social a { font-size: 0.88rem; border-bottom: 1px solid var(--filet); }
.rv-ours__barre {
  border-top: 1px solid var(--filet);
  padding: 20px 0 26px;
  font-size: 0.86rem;
  color: var(--encre-douce);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: space-between;
}
.rv-ours__barre a { font-size: 0.86rem; color: var(--mauve); text-decoration: underline; }

/* 18. Pages interieures
   ------------------------------------------------------------------ */
.rv-fil {
  font-size: 0.86rem;
  color: var(--encre-douce);
  padding: 22px 0 0;
}
.rv-fil a { color: var(--encre-douce); }
.rv-tribune { padding: 30px 0 var(--pas); }
.rv-tribune h2 { margin-top: 1.6em; }
.rv-tribune h3 { margin-top: 1.3em; }
.rv-tribune ul, .rv-tribune ol { max-width: 68ch; padding-left: 22px; }
.rv-tribune li { margin-bottom: 9px; }
.rv-tribune table { border-collapse: collapse; width: 100%; margin: 18px 0 26px; font-size: 0.95rem; }
.rv-tribune th, .rv-tribune td { border: 1px solid var(--filet); padding: 10px 12px; text-align: left; vertical-align: top; }
.rv-tribune th { background: var(--fond-alt); font-weight: 600; }
.rv-portrait { padding: 22px; }
.rv-portrait img { border-radius: var(--rayon); }
.rv-encart { background: var(--surface); border-left: 3px solid var(--mauve); padding: 20px 22px; margin: 26px 0; }
.rv-encart p:last-child { margin-bottom: 0; }
.rv-court { min-height: 46vh; display: flex; align-items: center; padding: var(--pas) 0; }

/* 19. Signature d animation: le texte se defloute
   ------------------------------------------------------------------ */
.rv-flou {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(8px);
  transition:
    opacity 620ms var(--courbe),
    filter 620ms var(--courbe),
    transform 620ms var(--courbe);
  transition-delay: var(--retard, 0ms);
}
.rv-flou.est-net {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

/* 20. Adaptations
   ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  :root { --largeur: 960px; }
  .rv-nav { gap: 18px; }
  .rv-nav a { font-size: 0.9rem; }
}

@media (max-width: 900px) {
  :root { --tete: 64px; }
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.7rem; }
  .rv-nav, .rv-tete .rv-bouton { display: none; }
  .rv-menu-bouton { display: inline-flex; }
  .rv-grille { grid-template-columns: minmax(0, 1fr); row-gap: 22px; }
  .rv-grille > * { grid-column: 1 / -1 !important; }
  .rv-gouttieres { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-gouttieres i:nth-child(n + 3) { display: none; }
  .rv-partage { border-left: 0; padding-left: 0; border-top: 1px solid var(--filet); padding-top: 26px; }
  .rv-manchette__texte { padding-right: 0; }
  .rv-bandeau dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-ours__colonnes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
  .rv-astre--probleme { right: -60px; opacity: 0.12; }
  .rv-fonction, .rv-etape { margin-bottom: 0; }
}

@media (max-width: 560px) {
  .rv-cadre { width: calc(100% - 32px); }
  .rv-bandeau dl { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .rv-ours__colonnes { grid-template-columns: minmax(0, 1fr); }
  .rv-avantage { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .rv-liste-cout li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .rv-actions .rv-bouton, .rv-actions .rv-bouton-2 { width: 100%; justify-content: center; }
}

@media print {
  .rv-tete, .rv-panneau, .rv-gouttieres { display: none; }
  body { background: #FFFFFF; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv-flou {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
/* ==================================================================
   21. Le Cahier du cadre de pratique, section magazine
   ------------------------------------------------------------------
   Ajoutee en fin de feuille, cette section ne modifie aucune regle
   precedente. Elle reprend la palette ecru et olive claire, le double
   filet ouvert a l angle superieur gauche, l etoile radiale a branches
   fines posee dans l ouverture, et la mise au net progressive des
   textes. Le magazine se lit comme un cahier interieur de la revue,
   pas comme un module rapporte.

   Le corps des articles est du HTML nu: les balises h2, h3, p, ul, ol,
   li, table, blockquote, aside, figure, strong, em et a sont mises en
   forme comme descendantes de .rv-corps, sans aucun attribut class.
   ================================================================== */

/* 21.1 Jetons propres au magazine
   L etoile radiale a seize branches, centre vide, une branche sur quatre
   plus longue, servie en image de fond pour les elements sans balise SVG:
   puces de listes, punaises des encadres et des citations.
   ------------------------------------------------------------------ */
:root {
  --astre-mauve: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 32 32%22%3E%3Cg stroke=%22%238C2E78%22 stroke-width=%221%22 stroke-linecap=%22round%22%3E%3Cline x1=%2219.20%22 y1=%2216.00%22 x2=%2231.00%22 y2=%2216.00%22/%3E%3Cline x1=%2218.96%22 y1=%2217.22%22 x2=%2227.09%22 y2=%2220.59%22/%3E%3Cline x1=%2218.26%22 y1=%2218.26%22 x2=%2224.49%22 y2=%2224.49%22/%3E%3Cline x1=%2217.22%22 y1=%2218.96%22 x2=%2220.59%22 y2=%2227.09%22/%3E%3Cline x1=%2216.00%22 y1=%2219.20%22 x2=%2216.00%22 y2=%2231.00%22/%3E%3Cline x1=%2214.78%22 y1=%2218.96%22 x2=%2211.41%22 y2=%2227.09%22/%3E%3Cline x1=%2213.74%22 y1=%2218.26%22 x2=%227.51%22 y2=%2224.49%22/%3E%3Cline x1=%2213.04%22 y1=%2217.22%22 x2=%224.91%22 y2=%2220.59%22/%3E%3Cline x1=%2212.80%22 y1=%2216.00%22 x2=%221.00%22 y2=%2216.00%22/%3E%3Cline x1=%2213.04%22 y1=%2214.78%22 x2=%224.91%22 y2=%2211.41%22/%3E%3Cline x1=%2213.74%22 y1=%2213.74%22 x2=%227.51%22 y2=%227.51%22/%3E%3Cline x1=%2214.78%22 y1=%2213.04%22 x2=%2211.41%22 y2=%224.91%22/%3E%3Cline x1=%2216.00%22 y1=%2212.80%22 x2=%2216.00%22 y2=%221.00%22/%3E%3Cline x1=%2217.22%22 y1=%2213.04%22 x2=%2220.59%22 y2=%224.91%22/%3E%3Cline x1=%2218.26%22 y1=%2213.74%22 x2=%2224.49%22 y2=%227.51%22/%3E%3Cline x1=%2218.96%22 y1=%2214.78%22 x2=%2227.09%22 y2=%2211.41%22/%3E%3C/g%3E%3C/svg%3E");
  --astre-olive: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 32 32%22%3E%3Cg stroke=%22%236D7A38%22 stroke-width=%221%22 stroke-linecap=%22round%22%3E%3Cline x1=%2219.20%22 y1=%2216.00%22 x2=%2231.00%22 y2=%2216.00%22/%3E%3Cline x1=%2218.96%22 y1=%2217.22%22 x2=%2227.09%22 y2=%2220.59%22/%3E%3Cline x1=%2218.26%22 y1=%2218.26%22 x2=%2224.49%22 y2=%2224.49%22/%3E%3Cline x1=%2217.22%22 y1=%2218.96%22 x2=%2220.59%22 y2=%2227.09%22/%3E%3Cline x1=%2216.00%22 y1=%2219.20%22 x2=%2216.00%22 y2=%2231.00%22/%3E%3Cline x1=%2214.78%22 y1=%2218.96%22 x2=%2211.41%22 y2=%2227.09%22/%3E%3Cline x1=%2213.74%22 y1=%2218.26%22 x2=%227.51%22 y2=%2224.49%22/%3E%3Cline x1=%2213.04%22 y1=%2217.22%22 x2=%224.91%22 y2=%2220.59%22/%3E%3Cline x1=%2212.80%22 y1=%2216.00%22 x2=%221.00%22 y2=%2216.00%22/%3E%3Cline x1=%2213.04%22 y1=%2214.78%22 x2=%224.91%22 y2=%2211.41%22/%3E%3Cline x1=%2213.74%22 y1=%2213.74%22 x2=%227.51%22 y2=%227.51%22/%3E%3Cline x1=%2214.78%22 y1=%2213.04%22 x2=%2211.41%22 y2=%224.91%22/%3E%3Cline x1=%2216.00%22 y1=%2212.80%22 x2=%2216.00%22 y2=%221.00%22/%3E%3Cline x1=%2217.22%22 y1=%2213.04%22 x2=%2220.59%22 y2=%224.91%22/%3E%3Cline x1=%2218.26%22 y1=%2213.74%22 x2=%2224.49%22 y2=%227.51%22/%3E%3Cline x1=%2218.96%22 y1=%2214.78%22 x2=%2227.09%22 y2=%2211.41%22/%3E%3C/g%3E%3C/svg%3E");
  --mesure: 68ch;
}

/* Colonnes supplementaires de la grille a douze colonnes. */
.c2-10 { grid-column: 2 / 11; }
.c2-12 { grid-column: 2 / 13; }

/* 21.2 Manchette du magazine, en tete de la page d index
   ------------------------------------------------------------------ */
.rv-kiosque-tete { padding: calc(var(--pas) * 0.72) 0 calc(var(--pas) * 0.4); }
.rv-kiosque-tete h1 { max-width: 18ch; }
.rv-kiosque-tete .rv-chapo { max-width: 64ch; }
/* L etoile de fond reste calee dans sa colonne, jamais au dela du cadre. */
.rv-kiosque-tete .c9-13 { position: relative; }
.rv-kiosque-tete .rv-astre {
  top: -8px;
  right: -14px;
  width: 210px;
  height: 210px;
}
.rv-sommaire-relief {
  margin-top: 30px;
  border-top: 1px solid var(--filet);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
}
.rv-sommaire-relief p { margin: 0; max-width: 34ch; }
.rv-sommaire-relief b {
  font-family: var(--commentaire);
  font-feature-settings: "onum" 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mauve);
  display: block;
  line-height: 1.1;
}
.rv-sommaire-relief span {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--encre-douce);
  line-height: 1.5;
}

/* 21.3 Grille des cartes d article
   Trois colonnes de quatre, comme les fonctionnalites de la page d accueil,
   pour que le sommaire du magazine se cale sur la meme respiration.
   ------------------------------------------------------------------ */
.rv-kiosque {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--gout);
  row-gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 21.4 Carte d article
   ------------------------------------------------------------------ */
.rv-carte {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px 14px 24px;
  transition: border-color 220ms var(--courbe);
}
.rv-carte::before { transition: inset 220ms var(--courbe), border-color 220ms var(--courbe); }
.rv-carte:hover { border-color: var(--olive); }
.rv-carte:hover::before { inset: 6px; border-color: var(--olive-pale); }

.rv-carte__vue {
  position: relative;
  display: block;
  margin: 0 0 18px;
  border-radius: var(--rayon);
  overflow: hidden;
  background: var(--fond-alt);
}
.rv-carte__vue img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--rayon);
}
/* Voile ecru couvrant, il unifie la temperature des photographies. */
.rv-carte__vue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 234, 0.08);
  pointer-events: none;
}
.rv-carte__corps { display: flex; flex-direction: column; flex: 1 1 auto; padding: 0 10px; }

.rv-etiquette--angle {
  background: var(--olive-pale);
  color: #3E4620;
  align-self: flex-start;
}

.rv-carte__titre {
  font-family: var(--titre);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
.rv-carte__titre a {
  color: var(--encre);
  text-decoration: none;
  background-image: linear-gradient(var(--olive-pale), var(--olive-pale));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 260ms var(--courbe), color 200ms var(--courbe);
}
.rv-carte:hover .rv-carte__titre a,
.rv-carte__titre a:hover,
.rv-carte__titre a:focus-visible { color: var(--mauve); background-size: 100% 2px; }

.rv-carte__extrait {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--encre-douce);
  margin-bottom: 18px;
  max-width: none;
}

.rv-carte__jalons {
  margin: auto 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--filet);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--encre-douce);
  font-feature-settings: "onum" 1;
  max-width: none;
}
.rv-carte__jalons time { font-feature-settings: "onum" 1; }

/* 21.5 Entete d article: fil d Ariane, angle, dates, temps de lecture
   ------------------------------------------------------------------ */
.rv-article-tete { padding: calc(var(--pas) * 0.5) 0 calc(var(--pas) * 0.34); }
.rv-fil--mag { padding-top: 0; margin: 0 0 26px; max-width: none; }
.rv-fil--mag span[aria-current] { color: var(--encre); }
.rv-fil--mag i { font-style: normal; color: var(--olive); padding: 0 6px; }

.rv-article-tete h1 { max-width: 26ch; margin-bottom: 0.4em; }

/* Chapeau en exergue typographique, voix de la relectrice. */
.rv-exergue {
  font-family: var(--commentaire);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--encre-douce);
  max-width: 62ch;
  margin: 0 0 28px;
  padding-left: 22px;
  border-left: 2px solid var(--olive-pale);
}

.rv-jalons {
  margin: 0;
  max-width: none;
  padding-top: 16px;
  border-top: 1px solid var(--filet);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--encre-douce);
}
.rv-jalons b {
  font-family: var(--commentaire);
  font-weight: 600;
  font-feature-settings: "onum" 1;
  color: var(--mauve);
}
.rv-jalons time { font-feature-settings: "onum" 1; }

.rv-article-vue { padding: 10px; margin: 0 0 12px; }
.rv-article-vue img { width: 100%; }

/* 21.6 Corps d article, mesure de lecture de soixante huit signes
   Toutes les regles qui suivent visent des balises nues: le redacteur
   n a aucune classe a poser, et aucun corps ne peut paraitre non style.
   ------------------------------------------------------------------ */
.rv-corps {
  max-width: var(--mesure);
  margin: 34px 0 0;
  font-size: 1.06rem;
  line-height: 1.7;
}
.rv-corps > *:first-child { margin-top: 0; }

.rv-corps h2 {
  font-family: var(--titre);
  font-size: 1.86rem;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 1.9em 0 0.6em;
  padding-bottom: 14px;
  position: relative;
}
/* Le filet interrompu du site, repris sous chaque grande partie. */
.rv-corps h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 190px;
  height: 1px;
  background: linear-gradient(to right, var(--olive) 0 84px, transparent 84px 102px, var(--olive) 102px 100%);
}

.rv-corps h3 {
  font-family: var(--titre);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 1.7em 0 0.5em;
  padding-left: 18px;
  position: relative;
}
.rv-corps h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 1px;
  background: var(--olive);
}

.rv-corps p { margin: 0 0 1.15em; max-width: none; }
.rv-corps strong { font-weight: 600; color: var(--encre); }
.rv-corps em { font-style: italic; }
.rv-corps a { color: var(--mauve); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.rv-corps a:hover { color: var(--mauve-sombre); text-decoration-thickness: 2px; }

/* Listes: la puce est l etoile radiale reduite, en olive clair. */
.rv-corps ul,
.rv-corps ol { margin: 0 0 1.4em; padding: 0; list-style: none; }
.rv-corps li { position: relative; padding-left: 28px; margin-bottom: 11px; line-height: 1.62; }
.rv-corps li:last-child { margin-bottom: 0; }
.rv-corps ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 15px;
  height: 15px;
  background: var(--astre-olive) center / contain no-repeat;
}
.rv-corps ol { counter-reset: rv-pas; }
.rv-corps ol > li { counter-increment: rv-pas; }
.rv-corps ol > li::before {
  content: counter(rv-pas);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--commentaire);
  font-style: italic;
  font-weight: 600;
  font-feature-settings: "onum" 1;
  color: var(--olive-texte);
}
.rv-corps li > ul,
.rv-corps li > ol { margin: 10px 0 0; }

/* Tableau recapitulatif, mis en page comme un releve de revue. */
.rv-corps table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 1.6em;
  font-size: 0.95rem;
  line-height: 1.5;
  background: var(--surface);
}
.rv-corps thead th {
  background: var(--olive-pale);
  color: #3E4620;
  font-family: var(--commentaire);
  font-style: italic;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rv-corps th,
.rv-corps td {
  border: 1px solid var(--filet);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}
.rv-corps tbody th { font-weight: 600; background: var(--fond-alt); }
.rv-corps tbody tr:nth-child(even) td { background: var(--fond); }

/* Encadre et citation: double filet ouvert, avec l etoile en punaise. */
.rv-corps aside,
.rv-corps blockquote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 24px 26px 22px;
  margin: 1.8em 0;
}
.rv-corps aside::before,
.rv-corps blockquote::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--olive-pale);
  border-radius: 1px;
  pointer-events: none;
}
/* L ouverture de l angle superieur gauche, occupee par l etoile radiale. */
.rv-corps aside::after,
.rv-corps blockquote::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: var(--astre-mauve) center / 16px 16px no-repeat, var(--fond);
  pointer-events: none;
}
.rv-corps aside p:last-child,
.rv-corps blockquote p:last-child { margin-bottom: 0; }
.rv-corps aside ul:last-child { margin-bottom: 0; }
.rv-corps aside > p:first-child > strong:first-child {
  display: block;
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-texte);
  margin-bottom: 8px;
}
.rv-corps blockquote {
  background: var(--fond-alt);
  border-color: var(--olive-pale);
}
.rv-corps blockquote p {
  font-family: var(--commentaire);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.62;
  color: var(--encre);
}

.rv-corps figure { margin: 1.8em 0; }
.rv-corps figure img { border-radius: var(--rayon); }
.rv-corps figcaption {
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--encre-douce);
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--olive-pale);
}

/* 21.7 Appel a l action de fin d article
   ------------------------------------------------------------------ */
.rv-appel { padding: 32px 32px 30px; }
.rv-appel .rv-appel__titre {
  font-family: var(--titre);
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  max-width: 26ch;
}
.rv-appel p { font-size: 0.99rem; }
.rv-appel .rv-bouton { margin-top: 8px; }

/* 21.8 Encart auteur
   ------------------------------------------------------------------ */
.rv-signature {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 28px 26px;
  align-items: start;
}
.rv-signature img { border-radius: var(--rayon); }
.rv-signature .rv-signature__nom {
  font-family: var(--titre);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.rv-signature__role {
  display: block;
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-texte);
  margin-bottom: 12px;
}
.rv-signature p { font-size: 0.97rem; margin-bottom: 0.8em; }
.rv-signature p:last-child { margin-bottom: 0; }

/* 21.9 Bloc A lire aussi
   ------------------------------------------------------------------ */
.rv-aussi { margin-top: 46px; }
.rv-aussi__titre {
  font-family: var(--titre);
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.35em;
  position: relative;
  padding-bottom: 14px;
}
.rv-aussi__titre::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 190px;
  height: 1px;
  background: linear-gradient(to right, var(--olive) 0 84px, transparent 84px 102px, var(--olive) 102px 100%);
}
.rv-aussi__intro { color: var(--encre-douce); font-size: 0.97rem; margin-bottom: 28px; }
.rv-aussi__mur {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--gout);
  row-gap: 26px;
}
.rv-aussi-carte {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 20px;
  height: 100%;
  transition: border-color 220ms var(--courbe);
}
.rv-aussi-carte::before { transition: inset 220ms var(--courbe), border-color 220ms var(--courbe); }
.rv-aussi-carte:hover { border-color: var(--olive); }
.rv-aussi-carte:hover::before { inset: 6px; }
.rv-aussi-carte__vue {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--rayon);
  margin-bottom: 15px;
}
.rv-aussi-carte__titre {
  font-family: var(--titre);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.01em;
  margin: 0 0 0.45em;
  padding: 0 8px;
}
.rv-aussi-carte__titre a { color: var(--encre); text-decoration: none; }
.rv-aussi-carte:hover .rv-aussi-carte__titre a,
.rv-aussi-carte__titre a:hover { color: var(--mauve); text-decoration: underline; }
.rv-aussi-carte__accroche {
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--encre-douce);
  margin: 0;
  padding: 0 8px;
  max-width: none;
}

/* 21.10 Derniers articles sur la page d accueil
   ------------------------------------------------------------------ */
.rv-derniers__tete {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 30px;
  margin-bottom: 40px;
}
.rv-derniers__tete .rv-cahier__tete { margin-bottom: 0; }
.rv-derniers .rv-kiosque { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rv-derniers__pied { margin-top: 34px; }
.rv-derniers__pied p { font-size: 0.92rem; color: var(--encre-douce); margin: 0 0 16px; }

/* 21.11 Releve des articles publies, page auteur et plan du site
   ------------------------------------------------------------------ */
.rv-bibliographie {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  counter-reset: rv-article;
  max-width: 78ch;
}
.rv-bibliographie li {
  position: relative;
  counter-increment: rv-article;
  padding: 16px 0 16px 48px;
  border-bottom: 1px solid var(--filet);
  margin: 0;
}
.rv-bibliographie li:first-child { border-top: 1px solid var(--filet); }
.rv-bibliographie li::before {
  content: counter(rv-article, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 15px;
  font-family: var(--commentaire);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  font-feature-settings: "onum" 1;
  color: var(--olive-texte);
}
.rv-bibliographie a {
  font-family: var(--titre);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--encre);
  text-decoration: none;
}
.rv-bibliographie a:hover { color: var(--mauve); text-decoration: underline; }
.rv-bibliographie__jalons {
  display: block;
  margin-top: 5px;
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--encre-douce);
  font-feature-settings: "onum" 1;
}

/* Dans les pages du magazine, les intitules de colonnes du pied de page
   passent en h4: les h2 et h3 sont reserves au corps redactionnel.
   Le rendu reste celui des colonnes du pied de page du reste du site. */
.rv-ours h4 {
  font-family: var(--commentaire);
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-texte);
  margin: 0 0 16px;
}

/* 21.12 Adaptations du magazine
   ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .rv-kiosque,
  .rv-derniers .rv-kiosque,
  .rv-aussi__mur { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .rv-corps { max-width: none; }
  .rv-corps h2 { font-size: 1.6rem; }
  .rv-article-tete h1 { max-width: none; }
  .rv-kiosque-tete h1 { max-width: none; }
  .rv-kiosque-tete .rv-astre { display: none; }
  .rv-signature { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .rv-appel { padding: 26px 22px 24px; }
}

@media (max-width: 680px) {
  .rv-kiosque,
  .rv-derniers .rv-kiosque,
  .rv-aussi__mur { grid-template-columns: minmax(0, 1fr); }
  .rv-derniers__tete { align-items: flex-start; }
  .rv-corps table { font-size: 0.9rem; }
  .rv-corps th, .rv-corps td { padding: 9px 10px; }
}

/* Maillage du reseau, bandeau de pied de page. Mise en page seulement:
   les couleurs, la police et le survol restent ceux du site.
   grid-column et flex-basis font tenir le bandeau sur toute la largeur,
   que le pied de page soit une grille ou une boite flexible.
   Les raccourcis margin et padding sont evites: ils ecraseraient le retrait
   interieur d une colonne dont le bandeau herite la classe. */
[data-reseau-bloc]{grid-column:1/-1;flex-basis:100%;width:100%;margin-top:26px;padding-top:18px}
[data-reseau-titre]{font-size:.8rem;line-height:1.3;letter-spacing:.09em;text-transform:uppercase;
  font-weight:600;margin:0 0 12px}
ul[data-reseau]{list-style:none;display:flex;flex-wrap:wrap;gap:10px 26px;margin:0;padding:0}
ul[data-reseau] li{margin:0;padding:0}
