/* ==========================================================================
   nessnet.fr : feuille unique.
   Vocabulaire maison : bandeau, enseigne, rubriques, avant-propos, chapo,
   surtitre, planche, serre, rayonnage, notice, filet, encart, exergue,
   ariane, cartouche, corps, reperes, ourlet.
   Aucune ressource externe. Polices systeme uniquement.
   ========================================================================== */

:root {
  color-scheme: light;

  /* Chromatique : chanvre ecru, sylve profonde, resine ambree, sauge. */
  --fond-chanvre:  #F4F1E9;
  --fond-lin:      #FBF9F3;
  --fond-brume:    #ECE7DA;
  --sylve:         #12251C;
  --sylve-clair:   #1E3A2C;
  --sylve-brume:   #2C4A38;
  --resine:        #9A5220;
  --resine-vive:   #C57A32;
  --sauge:         #7E9077;
  --texte:         #1B2A21;
  --texte-doux:    #4E5A51;
  --texte-tenu:    #5E6A61;
  --craie:         #EFE9DA;
  --craie-doux:    #C3CDBF;
  --filet:         #DCD5C4;
  --filet-sombre:  #33513F;

  /* Fontes systeme, aucune requete reseau. */
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Rythme vertical : une seule echelle pour tout le site. */
  --pas-1: 0.35rem;
  --pas-2: 0.7rem;
  --pas-3: 1.15rem;
  --pas-4: 1.85rem;
  --pas-5: 2.9rem;
  --pas-6: 4.4rem;
  --pas-7: 6.6rem;

  --marge-page: 1.15rem;
  --largeur-cadre: 74rem;
  --justif: 38rem;

  --trait: 1px solid var(--filet);
  --arrondi: 3px;
  --ombre-basse: 0 1px 0 rgba(27, 42, 33, .05), 0 10px 26px -22px rgba(27, 42, 33, .5);
}

@media (min-width: 48em) { :root { --marge-page: 2.25rem; } }
@media (min-width: 68em) { :root { --marge-page: 3.25rem; } }

/* --------------------------------------------------------------- socle -- */

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

/* Les enfants de grille ne doivent jamais deborder a cause d'un contenu
   intrinsequement large (texte alternatif d'une image absente, tableau...). */
.avant-propos > *,
.une > *,
.rayonnage > *,
.corps-double > *,
.ourlet-grille > *,
.grille-legale > * { min-width: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--fond-chanvre);
  color: var(--texte);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

@media (min-width: 48em) { body { font-size: 1.125rem; } }
@media (min-width: 68em) { body { font-size: 1.1875rem; } }

img, svg { max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.018em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--resine); }
a:hover { color: var(--sylve); }

:focus-visible {
  outline: 2px solid var(--resine);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--sauge); color: #fff; }

.evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sylve);
  color: var(--craie);
  padding: .8rem 1.2rem;
  font-family: var(--sans);
  font-size: .85rem;
  z-index: 90;
}
.evitement:focus { left: .6rem; top: .6rem; }

.cadre {
  width: min(100% - (2 * var(--marge-page)), var(--largeur-cadre));
  margin-inline: auto;
}

.serre { padding-block: var(--pas-6); }
.serre-mince { padding-block: var(--pas-5); }

@media (min-width: 68em) {
  .serre { padding-block: var(--pas-7); }
  .serre-mince { padding-block: var(--pas-6); }
}

.surtitre {
  font-family: var(--sans);
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--resine);
  margin: 0 0 var(--pas-2);
  display: block;
}
.surtitre-clair { color: var(--craie-doux); }

.filet {
  border: 0;
  border-top: var(--trait);
  margin: 0;
}

.filet-signe {
  border: 0;
  height: 2px;
  width: 3.6rem;
  background: var(--resine-vive);
  margin: var(--pas-3) 0 0;
}

/* ------------------------------------------------------------- bandeau -- */

.bandeau {
  background: var(--sylve);
  color: var(--craie);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--filet-sombre);
}

.bandeau-corps {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding-block: .7rem .55rem;
}

.enseigne {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  text-decoration: none;
  color: var(--craie);
  font-family: var(--serif);
  font-size: 1.34rem;
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1;
}
.enseigne:hover { color: #fff; }

.enseigne-pastille {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--resine-vive);
  flex: none;
  transform: translateY(-.1rem);
}

.enseigne-mention {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--craie-doux);
  font-weight: 550;
}

.rubriques {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
  padding: 0 0 .15rem;
  list-style: none;
}
.rubriques::-webkit-scrollbar { display: none; }

.rubriques a {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--craie-doux);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: .2rem;
  border-bottom: 2px solid transparent;
}
.rubriques a:hover,
.rubriques a[aria-current] {
  color: #fff;
  border-bottom-color: var(--resine-vive);
}

@media (min-width: 48em) {
  .bandeau-corps {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: .95rem;
  }
  .rubriques { gap: 1.6rem; padding-bottom: 0; }
  .enseigne { font-size: 1.45rem; }
}

/* --------------------------------------------------------- avant-propos -- */

.avant-propos { padding-block: var(--pas-5) var(--pas-5); }

.avant-propos h1 {
  font-size: clamp(2.15rem, 1.3rem + 3.6vw, 4.15rem);
  line-height: 1.02;
  margin-bottom: var(--pas-3);
}

.chapo {
  font-size: clamp(1.08rem, 1rem + .5vw, 1.34rem);
  line-height: 1.62;
  color: var(--texte-doux);
  max-width: 34rem;
}

.avant-propos-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: var(--pas-4);
}

@media (min-width: 62em) {
  .avant-propos {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding-block: var(--pas-6) var(--pas-6);
  }
}

/* ------------------------------------------------------------- planches -- */

.planche {
  position: relative;
  overflow: hidden;
  border-radius: var(--arrondi);
  background:
    radial-gradient(115% 88% at 18% 6%, var(--sylve-brume) 0%, var(--sylve-clair) 46%, var(--sylve) 100%);
  aspect-ratio: 4 / 3;
  margin: 0;
  min-width: 0;
  box-shadow: var(--ombre-basse);
}

.planche::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    24deg,
    rgba(239, 233, 218, .055) 0 1px,
    rgba(239, 233, 218, 0) 1px 9px
  );
}

.planche img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Si le fichier manque, l'alternative textuelle reste lisible sur le degrade. */
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.5;
  color: var(--craie-doux);
  padding: 1rem;
}

.planche-haute { aspect-ratio: 5 / 6; }
.planche-large { aspect-ratio: 16 / 9; max-height: 30rem; }
.planche-carree { aspect-ratio: 1 / 1; }

/* Figure d'ouverture posee directement dans le cadre : respiration en dessous. */
.cadre > .planche { margin-bottom: var(--pas-3); }
.cadre > .legende { margin-bottom: var(--pas-5); }

.legende {
  font-family: var(--sans);
  font-size: .76rem;
  line-height: 1.5;
  color: var(--texte-tenu);
  margin-top: .6rem;
}

/* -------------------------------------------------------------- boutons -- */

.bouton {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .72rem 1.25rem;
  border-radius: 2px;
  border: 1px solid var(--sylve);
  background: var(--sylve);
  color: var(--craie);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.bouton:hover { background: var(--sylve-clair); border-color: var(--sylve-clair); color: #fff; }

.bouton-creux {
  background: transparent;
  color: var(--sylve);
  border-color: var(--filet);
}
.bouton-creux:hover { background: var(--fond-lin); border-color: var(--sylve); color: var(--sylve); }

.lien-fleche {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--resine);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.lien-fleche::after { content: "\203A"; font-size: 1.15em; line-height: 1; transform: translateY(-.05em); }
.lien-fleche:hover { color: var(--sylve); }

/* --------------------------------------------------------- mise en garde -- */

.mise-en-garde {
  border-top: var(--trait);
  border-bottom: var(--trait);
  background: var(--fond-brume);
}

.mise-en-garde-corps {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding-block: 1.05rem;
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.62;
  color: var(--texte-doux);
}

.mise-en-garde strong { color: var(--texte); font-weight: 650; }

.mise-en-garde-marque {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--sylve);
  color: var(--craie);
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--serif);
  transform: translateY(.1rem);
}

/* ------------------------------------------------------------ en-tetes -- */

.tete-section {
  display: flex;
  flex-direction: column;
  gap: var(--pas-2);
  margin-bottom: var(--pas-4);
  padding-bottom: var(--pas-3);
  border-bottom: 2px solid var(--sylve);
}

.tete-section h2 {
  font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.3rem);
  line-height: 1.12;
}

.tete-section p {
  font-family: var(--sans);
  font-size: .89rem;
  line-height: 1.6;
  color: var(--texte-doux);
  max-width: 40rem;
}

@media (min-width: 48em) {
  .tete-section {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .tete-section p { text-align: right; max-width: 26rem; }
}

/* ------------------------------------------------------------ rayonnage -- */

.rayonnage {
  display: grid;
  gap: var(--pas-3);
  grid-template-columns: 1fr;
}

@media (min-width: 40em) { .rayonnage { grid-template-columns: repeat(2, 1fr); gap: var(--pas-4); } }
@media (min-width: 62em) { .rayonnage-3 { grid-template-columns: repeat(3, 1fr); } }

.notice {
  background: var(--fond-lin);
  border: var(--trait);
  border-top: 3px solid var(--sauge);
  border-radius: var(--arrondi);
  padding: var(--pas-3) var(--pas-3) var(--pas-4);
  display: flex;
  flex-direction: column;
  gap: var(--pas-2);
  transition: border-top-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.notice:hover {
  border-top-color: var(--resine-vive);
  transform: translateY(-2px);
  box-shadow: var(--ombre-basse);
}

.notice h3 {
  font-size: clamp(1.12rem, 1rem + .55vw, 1.38rem);
  line-height: 1.24;
}
.notice h3 a { color: var(--texte); text-decoration: none; }
.notice h3 a:hover { color: var(--resine); }

.notice p {
  font-family: var(--sans);
  font-size: .86rem;
  line-height: 1.62;
  color: var(--texte-doux);
  margin: 0;
}

.notice .lien-fleche { margin-top: auto; padding-top: var(--pas-1); }

.notice-numerotee { counter-increment: notices; }
.notice-numerotee h3::before {
  content: counter(notices, decimal-leading-zero);
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--texte-tenu);
  margin-bottom: .45rem;
  font-weight: 650;
}

.rayonnage-numerote { counter-reset: notices; }

/* -------------------------------------------------------------- la une -- */

.une {
  display: grid;
  gap: var(--pas-4);
}

@media (min-width: 62em) {
  .une {
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    align-items: start;
  }
}

.une-vedette h3 {
  font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.35rem);
  line-height: 1.1;
  margin-block: var(--pas-3) var(--pas-2);
}
.une-vedette h3 a { color: var(--texte); text-decoration: none; }
.une-vedette h3 a:hover { color: var(--resine); }

.une-vedette p {
  color: var(--texte-doux);
  max-width: 36rem;
  margin-bottom: var(--pas-3);
}

.pile { list-style: none; margin: 0; padding: 0; }

.pile li { border-top: var(--trait); }
.pile li:last-child { border-bottom: var(--trait); }

.pile a {
  display: block;
  padding: var(--pas-3) 0;
  text-decoration: none;
  color: var(--texte);
}
.pile a:hover { color: var(--resine); }

.pile-titre {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: .3rem;
}

.pile-mention {
  font-family: var(--sans);
  font-size: .76rem;
  color: var(--texte-tenu);
  letter-spacing: .03em;
  display: block;
}

/* -------------------------------------------------------------- exergue -- */

.bande-sombre {
  background: var(--sylve);
  color: var(--craie);
  position: relative;
  overflow: hidden;
}

.bande-sombre::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    24deg,
    rgba(239, 233, 218, .05) 0 1px,
    rgba(239, 233, 218, 0) 1px 11px
  );
  pointer-events: none;
}

.bande-sombre .cadre { position: relative; }

.exergue {
  margin: 0;
  max-width: 46rem;
}

.exergue q, .exergue p {
  font-size: clamp(1.35rem, 1.05rem + 1.6vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.018em;
  color: var(--craie);
  quotes: "\00AB\00A0" "\00A0\00BB";
  display: block;
}

.exergue footer, .attribution {
  font-family: var(--sans);
  font-size: .79rem;
  line-height: 1.6;
  color: var(--craie-doux);
  margin-top: var(--pas-3);
  padding-top: var(--pas-3);
  border-top: 1px solid var(--filet-sombre);
}

.bande-sombre a { color: #E8B87C; }
.bande-sombre a:hover { color: #fff; }

/* ---------------------------------------------------------------- corps -- */

.ariane {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--texte-tenu);
  padding-block: var(--pas-3) 0;
}
.ariane ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.ariane li::after { content: "/"; margin-left: .4rem; color: var(--filet); }
.ariane li:last-child::after { content: ""; }
.ariane a { color: var(--texte-doux); text-decoration: none; }
.ariane a:hover { color: var(--resine); text-decoration: underline; }

.tete-article { padding-block: var(--pas-4) var(--pas-5); }

.tete-article h1 {
  font-size: clamp(1.95rem, 1.3rem + 2.8vw, 3.3rem);
  line-height: 1.06;
  max-width: 22ch;
  margin-bottom: var(--pas-3);
}

.tete-article .chapo { max-width: 40rem; }

.cartouche {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--texte-tenu);
  margin-top: var(--pas-4);
  padding-top: var(--pas-3);
  border-top: var(--trait);
}
.cartouche span { display: inline-flex; align-items: center; gap: .4rem; }
.cartouche b { font-weight: 600; color: var(--texte-doux); }

.corps { padding-bottom: var(--pas-6); }

.corps > * { max-width: var(--justif); }
.corps > .planche,
.corps > .encart,
.corps > .questions,
.corps > .tableau-cadre,
.corps > .exergue-clair { max-width: min(100%, 46rem); }

.corps > * + * { margin-top: var(--pas-3); }

.corps h2 {
  font-size: clamp(1.42rem, 1.15rem + 1.15vw, 1.98rem);
  line-height: 1.16;
  margin-top: var(--pas-5);
  padding-top: var(--pas-3);
  border-top: 2px solid var(--sylve);
}

.corps h3 {
  font-size: clamp(1.12rem, 1.02rem + .5vw, 1.34rem);
  line-height: 1.28;
  margin-top: var(--pas-4);
  color: var(--sylve-clair);
}

.corps p a { text-decoration-thickness: 1px; text-underline-offset: .18em; }

.corps ul, .corps ol { padding-left: 1.15rem; margin-top: var(--pas-3); }
.corps li + li { margin-top: .5rem; }
.corps li::marker { color: var(--sauge); }

.corps ul { list-style: square; }

.corps strong { font-weight: 650; }

.corps abbr { text-decoration: underline dotted; text-underline-offset: .2em; cursor: help; }

@media (min-width: 68em) {
  .corps-double {
    display: grid;
    grid-template-columns: minmax(0, var(--justif)) minmax(0, 17rem);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
  .corps-double .corps { grid-column: 1; padding-bottom: var(--pas-7); }
  .marge-laterale { grid-column: 2; position: sticky; top: 6rem; }
}

/* ---------------------------------------------------------- accessoires -- */

.encart {
  background: var(--fond-lin);
  border: var(--trait);
  border-left: 3px solid var(--resine-vive);
  border-radius: 0 var(--arrondi) var(--arrondi) 0;
  padding: var(--pas-3) var(--pas-3);
}
.encart h3 {
  margin: 0 0 var(--pas-2);
  font-size: 1.02rem;
  color: var(--sylve);
}
.encart p, .encart li {
  font-family: var(--sans);
  font-size: .87rem;
  line-height: 1.62;
  color: var(--texte-doux);
}
.encart > * + * { margin-top: var(--pas-2); }
.encart ul { margin: var(--pas-2) 0 0; padding-left: 1.1rem; }

.encart-sylve {
  background: var(--sylve);
  border-color: var(--filet-sombre);
  border-left-color: var(--resine-vive);
  color: var(--craie);
}
.encart-sylve h3 { color: var(--craie); }
.encart-sylve p, .encart-sylve li { color: var(--craie-doux); }
.encart-sylve a { color: #E8B87C; }

.exergue-clair {
  margin: var(--pas-4) 0;
  padding: 0 0 0 var(--pas-3);
  border-left: 3px solid var(--sauge);
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--sylve-clair);
  font-style: italic;
}

.reperes {
  list-style: none;
  margin: var(--pas-3) 0 0;
  padding: 0;
  border-top: var(--trait);
}
.reperes li {
  border-bottom: var(--trait);
  padding: var(--pas-2) 0 var(--pas-2) 1.5rem;
  position: relative;
  font-family: var(--sans);
  font-size: .88rem;
  line-height: 1.6;
  color: var(--texte-doux);
  margin: 0;
}
.reperes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: .5rem;
  height: .5rem;
  background: var(--resine-vive);
  transform: rotate(45deg);
}

.sommaire {
  background: var(--fond-brume);
  border-radius: var(--arrondi);
  padding: var(--pas-3);
}
.sommaire h2, .sommaire p.sommaire-titre {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  margin: 0 0 var(--pas-2);
  border: 0;
  padding: 0;
  font-weight: 650;
}
.sommaire ol { list-style: none; margin: 0; padding: 0; counter-reset: som; }
.sommaire li { counter-increment: som; margin: 0; border-top: 1px solid rgba(27,42,33,.09); }
.sommaire li:first-child { border-top: 0; }
.sommaire a {
  display: block;
  padding: .5rem 0;
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.45;
  color: var(--texte-doux);
  text-decoration: none;
}
.sommaire a::before {
  content: counter(som) ".";
  color: var(--resine);
  font-weight: 650;
  margin-right: .45rem;
}
.sommaire a:hover { color: var(--resine); }

.questions { margin-top: var(--pas-4); }
.questions > .questions-titre {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  font-weight: 650;
  margin-bottom: var(--pas-2);
}
.questions details {
  border-top: var(--trait);
  padding: var(--pas-2) 0;
}
.questions details:last-of-type { border-bottom: var(--trait); }
.questions summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sylve);
  list-style: none;
  display: flex;
  gap: .7rem;
  align-items: baseline;
  padding: .3rem 0;
}
.questions summary::-webkit-details-marker { display: none; }
.questions summary::before {
  content: "+";
  color: var(--resine-vive);
  font-family: var(--sans);
  font-weight: 700;
  flex: none;
  width: .8rem;
}
.questions details[open] summary::before { content: "\2013"; }
.questions details > p, .questions details > ul {
  font-family: var(--sans);
  font-size: .89rem;
  line-height: 1.66;
  color: var(--texte-doux);
  margin-top: var(--pas-2);
  padding-left: 1.5rem;
}

.tableau-cadre { overflow-x: auto; border: var(--trait); border-radius: var(--arrondi); }
.tableau-cadre table { border-collapse: collapse; width: 100%; min-width: 30rem; }
.tableau-cadre th, .tableau-cadre td {
  text-align: left;
  padding: .7rem .9rem;
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--filet);
}
.tableau-cadre th { background: var(--fond-brume); font-weight: 650; color: var(--sylve); }
.tableau-cadre tr:last-child td { border-bottom: 0; }

.sources {
  margin-top: var(--pas-5);
  padding-top: var(--pas-3);
  border-top: 2px solid var(--sylve);
}
.sources h2 {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  border: 0;
  padding: 0;
  margin: 0 0 var(--pas-2);
  font-weight: 650;
}
.sources ol { list-style: decimal; padding-left: 1.25rem; margin: 0; }
.sources li {
  font-family: var(--sans);
  font-size: .81rem;
  line-height: 1.6;
  color: var(--texte-tenu);
  margin-top: .45rem;
}

.suite {
  border-top: 2px solid var(--sylve);
  padding-top: var(--pas-4);
  margin-top: var(--pas-5);
}
.suite h2 {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  font-weight: 650;
  margin: 0 0 var(--pas-3);
  border: 0;
  padding: 0;
}

/* --------------------------------------------------------------- ourlet -- */

.ourlet {
  background: var(--sylve);
  color: var(--craie-doux);
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.66;
  padding-block: var(--pas-5) var(--pas-4);
  position: relative;
  overflow: hidden;
}

.ourlet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    24deg,
    rgba(239, 233, 218, .04) 0 1px,
    rgba(239, 233, 218, 0) 1px 11px
  );
  pointer-events: none;
}

.ourlet .cadre { position: relative; }

.ourlet-grille {
  display: grid;
  gap: var(--pas-4);
  grid-template-columns: 1fr;
}

@media (min-width: 46em) { .ourlet-grille { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--pas-5); } }

.ourlet h2 {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #8FA187;
  font-weight: 650;
  margin: 0 0 var(--pas-2);
}

.ourlet ul { list-style: none; margin: 0; padding: 0; }
.ourlet li + li { margin-top: .45rem; }
.ourlet a { color: var(--craie-doux); text-decoration: none; }
.ourlet a:hover { color: #fff; text-decoration: underline; text-underline-offset: .18em; }

.ourlet-manifeste {
  color: var(--craie);
  font-size: .92rem;
  max-width: 30rem;
}

.ourlet-bas {
  margin-top: var(--pas-5);
  padding-top: var(--pas-3);
  border-top: 1px solid var(--filet-sombre);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .74rem;
  color: #8FA192;
  letter-spacing: .03em;
}

/* ------------------------------------------------------------- divers -- */

.discret { color: var(--texte-tenu); font-size: .8rem; font-family: var(--sans); }

.grille-legale { display: grid; gap: var(--pas-4); }
@media (min-width: 56em) { .grille-legale { grid-template-columns: 1fr 1fr; } }

@media print {
  .bandeau, .ourlet, .mise-en-garde, .suite { display: none; }
  body { background: #fff; font-size: 11pt; }
  .planche { display: none; }
}

/* ------------------------------------------- ajout rédaction (19/08/2026) -- */
/* ul.reperes est annoncé comme disponible dans .corps, mais `.corps ul`
   (0,1,1) l'emporte en spécificité sur `.reperes` (0,1,0) : la liste y
   héritait des puces carrées et du retrait des listes d'article, en plus de
   ses losanges. Ces trois règles rétablissent le rendu prévu à l'intérieur
   d'un article, sans rien changer au rendu de .reperes ailleurs. */

.corps ul.reperes { list-style: none; padding-left: 0; }
.corps ul.reperes li { padding: var(--pas-2) 0 var(--pas-2) 1.5rem; }
.corps ul.reperes li + li { margin-top: 0; }
