/*
Theme Name: La Route du Métier
Theme URI: https://gestionnaire-transport.eu/
Author: La rédaction de La Route du Métier
Description: Thème sur-mesure de La Route du Métier — média d'orientation dédié au métier de gestionnaire de transport et à l'attestation de capacité professionnelle. Code pur, sans page-builder.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: route-metier
*/

/* ==========================================================================
   Fonts self-hosted (P-086) — Lora variable (titres) + Alegreya Sans (texte)
   ========================================================================== */
@font-face {
  font-family: "Lora";
  src: url("assets/fonts/Lora-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("assets/fonts/Lora-italic-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya Sans";
  src: url("assets/fonts/AlegreyaSans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya Sans";
  src: url("assets/fonts/AlegreyaSans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya Sans";
  src: url("assets/fonts/AlegreyaSans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya Sans";
  src: url("assets/fonts/AlegreyaSans-italic-400.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   Tokens — 1 fond neutre crème + 1 accent terracotta (P-116)
   Contrastes vérifiés ≥ 4.5:1 en clair ET en sombre (P-110)
   ========================================================================== */
:root {
  /* mode clair */
  --rm_fond: #faf5ec;          /* crème chaud */
  --rm_surface: #f3ead9;       /* crème soutenu (sections alternées) */
  --rm_carte: #fffdf8;         /* fond des cartes */
  --rm_encre: #332a1e;         /* texte principal — 12.97:1 sur crème */
  --rm_encre_2: #5c4f3d;       /* texte secondaire — 7.32:1 sur crème */
  --rm_accent: #b4501e;        /* terracotta : fonds de boutons, filets forts */
  --rm_accent_texte: #a03f12;  /* terracotta lisible en texte — 6.02:1 sur crème, 5.47:1 sur surface */
  --rm_sur_accent: #fdf9f1;    /* texte posé SUR l'accent — 4.87:1 sur #b4501e */
  --rm_filet: #e2d5bd;         /* bordures douces */
  --rm_ombre: 0 1px 2px rgba(51, 42, 30, 0.08), 0 6px 18px rgba(51, 42, 30, 0.07);

  --rm_serif: "Lora", Georgia, "Times New Roman", serif;
  --rm_sans: "Alegreya Sans", "Segoe UI", Tahoma, sans-serif;

  --rm_gabarit: 68rem;
  --rm_colonne: 44rem;
  --rm_rayon: 0.9rem;
  --rm_pas: 1rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* mode sombre — brun profond chaud, jamais anthracite */
    --rm_fond: #241b11;
    --rm_surface: #2f2417;
    --rm_carte: #2a2015;
    --rm_encre: #f0e6d6;        /* 13.71:1 sur fond sombre */
    --rm_encre_2: #cbbba2;      /* 9.01:1 sur fond sombre */
    --rm_accent: #eb9e66;       /* terracotta éclairci */
    --rm_accent_texte: #eb9e66; /* 7.75:1 sur fond, 6.94:1 sur surface */
    --rm_sur_accent: #241b11;   /* 7.75:1 sur accent */
    --rm_filet: #4a3c2a;
    --rm_ombre: 0 1px 2px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.3);
  }
}

/* ==========================================================================
   Base — mobile-first (390 px d'abord)
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--rm_fond);
  color: var(--rm_encre);
  font-family: var(--rm_sans);
  font-size: 1.125rem;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--rm_serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--rm_encre);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.45rem); }

p { margin: 0 0 1.1em; }

a {
  color: var(--rm_accent_texte);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover { text-decoration-thickness: 2px; }

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

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

.acces_saut {
  position: absolute;
  left: -999rem;
  background: var(--rm_accent);
  color: var(--rm_sur_accent);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--rm_rayon) 0;
  z-index: 99;
}
.acces_saut:focus { left: 0; top: 0; }

.cadre { width: min(100% - 2.5rem, var(--rm_gabarit)); margin-inline: auto; }
.cadre_lecture { width: min(100% - 2.5rem, var(--rm_colonne)); margin-inline: auto; }

/* ==========================================================================
   Boutons — couleur de texte posée sur le même élément que le fond (P-110)
   ========================================================================== */
.bouton_plein,
.bouton_plein:visited {
  display: inline-block;
  background: var(--rm_accent);
  color: var(--rm_sur_accent);
  font-family: var(--rm_sans);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  min-height: 44px;
  border: 0;
  border-radius: 2rem;
  cursor: pointer;
}
.bouton_plein:hover { filter: brightness(0.94); text-decoration: none; }

.lien_discret,
.lien_discret:visited {
  display: inline-block;
  color: var(--rm_accent_texte);
  font-weight: 700;
  padding: 0.75rem 0.25rem;
  min-height: 44px;
}

/* ==========================================================================
   En-tête à 2 niveaux : marque + recherche, puis barre de silo
   (motif réservé .eu — jamais de CTA outline à droite)
   ========================================================================== */
.entete_double {
  background: var(--rm_fond);
  border-bottom: 1px solid var(--rm_filet);
}

.ligne_marque {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}
.marque_lien {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--rm_encre);
  min-height: 44px;
}
.marque_embleme { width: 46px; height: 46px; flex: none; }
.marque_nom {
  font-family: var(--rm_serif);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1;
  white-space: nowrap;
}
.marque_devise {
  display: none;
  font-size: 0.9rem;
  color: var(--rm_encre_2);
}
@media (min-width: 640px) {
  .marque_devise { display: block; }
}

.zone_recherche { margin-left: auto; }
.formulaire_recherche {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--rm_filet);
  border-radius: 2rem;
  background: var(--rm_carte);
  overflow: hidden;
}
.formulaire_recherche:focus-within { border-color: var(--rm_accent_texte); }
.champ_recherche {
  border: 0;
  background: transparent;
  color: var(--rm_encre);
  font-family: var(--rm_sans);
  font-size: 1rem;
  padding: 0.6rem 0.4rem 0.6rem 1rem;
  width: 7.5rem;
  min-height: 44px;
}
@media (min-width: 640px) { .champ_recherche { width: 15rem; } }
.champ_recherche:focus { outline: none; }
.champ_recherche::placeholder { color: var(--rm_encre_2); opacity: 1; }
.soumettre_recherche {
  border: 0;
  background: transparent;
  color: var(--rm_accent_texte);
  font-weight: 700;
  padding: 0 1rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

/* barre de silo — nav flex sans puces (P-004), défilement horizontal en mobile */
.barre_silo {
  border-top: 1px solid var(--rm_filet);
  background: var(--rm_surface);
}
.barre_silo_dedans {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.barre_silo ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  flex: 1;
}
.barre_silo li { flex: none; }
.barre_silo a {
  display: inline-block;
  color: var(--rm_encre);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 0.85rem;
  min-height: 44px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.barre_silo a:hover,
.barre_silo .current-menu-item > a,
.barre_silo .current_page_item > a {
  color: var(--rm_accent_texte);
  border-bottom-color: var(--rm_accent);
}
.silo_accompagnement {
  flex: none;
  margin-left: auto;
  padding-left: 0.75rem;
}
.silo_accompagnement .bouton_plein {
  font-size: 0.95rem;
  padding: 0.55rem 1.15rem;
  white-space: nowrap;
}

/* ==========================================================================
   Fil d'ariane (P-010)
   ========================================================================== */
.fil_ariane {
  font-size: 0.92rem;
  color: var(--rm_encre_2);
  padding: 0.9rem 0 0;
}
.fil_ariane ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}
.fil_ariane li + li::before { content: "›"; margin-right: 0.35rem; color: var(--rm_encre_2); }
.fil_ariane a { color: var(--rm_encre_2); }

/* ==========================================================================
   Héros — texte LCP, illustration SVG décorative
   ========================================================================== */
.heros_metier {
  position: relative;
  padding: 2.75rem 0 3rem;
  overflow: hidden;
}
.heros_metier .cadre { position: relative; }
.heros_surtitre {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rm_accent_texte);
  margin-bottom: 0.75rem;
}
.heros_texte { max-width: 36rem; }
.heros_texte p {
  font-size: 1.2rem;
  color: var(--rm_encre_2);
  max-width: 33rem;
}
.heros_actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
}
.heros_decor {
  display: none;
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20rem;
  opacity: 0.9;
  pointer-events: none;
}
@media (min-width: 900px) {
  .heros_decor { display: block; }
  .heros_metier { padding: 4rem 0 4.5rem; }
}

/* ==========================================================================
   Sections de la home
   ========================================================================== */
.tranche { padding: 3rem 0; }
.tranche_chaude { background: var(--rm_surface); }
.tranche_entete { max-width: 38rem; margin-bottom: 1.75rem; }
.tranche_entete p { color: var(--rm_encre_2); }

/* Parcours par profil « Vous êtes… » */
.parcours_profils {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .parcours_profils { grid-template-columns: repeat(3, 1fr); } }
.carte_profil {
  background: var(--rm_carte);
  border: 1px solid var(--rm_filet);
  border-radius: var(--rm_rayon);
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: var(--rm_ombre);
  display: flex;
  flex-direction: column;
}
.carte_profil h3 { margin-bottom: 0.4rem; }
.carte_profil p { color: var(--rm_encre_2); font-size: 1.02rem; flex: 1; }
.carte_profil .lien_discret { padding-left: 0; }

/* Pourquoi ce métier */
.raisons_metier {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) { .raisons_metier { grid-template-columns: repeat(3, 1fr); } }
.raisons_metier h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
}
.raisons_metier h3::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  flex: none;
  border-radius: 50%;
  background: var(--rm_accent);
}
.raisons_metier p { color: var(--rm_encre_2); font-size: 1.02rem; }

/* Les 3 voies vers la capacité */
.voies_capacite {
  counter-reset: voie;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 900px) { .voies_capacite { grid-template-columns: repeat(3, 1fr); } }
.voie_capacite {
  counter-increment: voie;
  background: var(--rm_carte);
  border: 1px solid var(--rm_filet);
  border-radius: var(--rm_rayon);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--rm_ombre);
}
.voie_capacite::before {
  content: "Voie " counter(voie);
  display: inline-block;
  font-family: var(--rm_serif);
  font-style: italic;
  font-weight: 600;
  color: var(--rm_accent_texte);
  border-bottom: 2px solid var(--rm_accent);
  margin-bottom: 0.8rem;
  padding-bottom: 0.2rem;
}
.voie_capacite p { color: var(--rm_encre_2); font-size: 1.02rem; }

/* Débouchés & salaire */
.debouches_grille {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .debouches_grille { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.tableau_reperes {
  width: 100%;
  border-collapse: collapse;
  background: var(--rm_carte);
  border: 1px solid var(--rm_filet);
  border-radius: var(--rm_rayon);
  overflow: hidden;
  font-size: 1rem;
}
.tableau_reperes caption {
  text-align: left;
  font-size: 0.88rem;
  color: var(--rm_encre_2);
  padding: 0.6rem 0.2rem;
  caption-side: bottom;
}
.tableau_reperes th,
.tableau_reperes td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--rm_filet);
}
.tableau_reperes thead th {
  font-family: var(--rm_serif);
  background: var(--rm_surface);
  color: var(--rm_encre);
}
.tableau_reperes tbody tr:last-child th,
.tableau_reperes tbody tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   Bloc boussole — CTA soft + capture légère d'orientation
   ========================================================================== */
.bloc_boussole {
  background: var(--rm_surface);
  border: 1px solid var(--rm_filet);
  border-radius: var(--rm_rayon);
  padding: 1.75rem 1.4rem;
}
@media (min-width: 720px) { .bloc_boussole { padding: 2.25rem 2.5rem; } }
.bloc_boussole h2 { font-size: clamp(1.35rem, 3vw, 1.7rem); }
.bloc_boussole > p { color: var(--rm_encre_2); max-width: 38rem; }
.formulaire_boussole {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}
@media (min-width: 720px) {
  .formulaire_boussole { grid-template-columns: 1fr 1fr; }
  .formulaire_boussole .champ_large,
  .formulaire_boussole .pied_formulaire { grid-column: 1 / -1; }
}
.groupe_champ label {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}
.groupe_champ input,
.groupe_champ select {
  width: 100%;
  background: var(--rm_carte);
  color: var(--rm_encre);
  border: 1.5px solid var(--rm_filet);
  border-radius: 0.55rem;
  font-family: var(--rm_sans);
  font-size: 1.05rem;
  padding: 0.7rem 0.85rem;
  min-height: 48px;
}
.groupe_champ input:focus,
.groupe_champ select:focus {
  outline: none;
  border-color: var(--rm_accent_texte);
  box-shadow: 0 0 0 2px var(--rm_accent_texte);
}
.pied_formulaire {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.promesse_delai { font-size: 0.95rem; color: var(--rm_encre_2); margin: 0; }
.champ_repli { position: absolute !important; left: -999rem; }
.message_merci {
  background: var(--rm_carte);
  border-left: 4px solid var(--rm_accent);
  color: var(--rm_encre);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--rm_rayon) var(--rm_rayon) 0;
  margin-top: 1rem;
}

/* ==========================================================================
   Grille d'articles + FAQ
   ========================================================================== */
.grille_articles {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grille_articles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grille_articles { grid-template-columns: repeat(3, 1fr); } }
.carte_article {
  background: var(--rm_carte);
  border: 1px solid var(--rm_filet);
  border-radius: var(--rm_rayon);
  overflow: hidden;
  box-shadow: var(--rm_ombre);
  display: flex;
  flex-direction: column;
}
.carte_article img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.carte_article_corps { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.carte_article_rubrique {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rm_accent_texte);
  margin-bottom: 0.35rem;
}
.carte_article h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.carte_article h3 a { color: var(--rm_encre); text-decoration: none; }
.carte_article h3 a:hover { color: var(--rm_accent_texte); text-decoration: underline; }
.carte_article p { color: var(--rm_encre_2); font-size: 0.98rem; flex: 1; margin-bottom: 0.6rem; }
.carte_article time { font-size: 0.88rem; color: var(--rm_encre_2); }

.foire_questions { max-width: var(--rm_colonne); }
.question_pliee {
  background: var(--rm_carte);
  border: 1px solid var(--rm_filet);
  border-radius: var(--rm_rayon);
  margin-bottom: 0.75rem;
}
.question_pliee summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--rm_serif);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 1rem 2.6rem 1rem 1.2rem;
  position: relative;
  min-height: 44px;
}
.question_pliee summary::-webkit-details-marker { display: none; }
.question_pliee summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--rm_sans);
  font-size: 1.5rem;
  color: var(--rm_accent_texte);
}
.question_pliee[open] summary::after { content: "–"; }
.question_pliee div { padding: 0 1.2rem 1.1rem; color: var(--rm_encre_2); }

/* ==========================================================================
   Contenu article / page
   ========================================================================== */
.entete_article { padding: 1.25rem 0 0.5rem; }
.meta_article {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.95rem;
  color: var(--rm_encre_2);
  margin-bottom: 1.5rem;
}
.contenu_redige { font-size: 1.13rem; }
.contenu_redige > * + * { margin-top: 1.1em; }
.contenu_redige h2 { margin-top: 1.8em; }
.contenu_redige h3 { margin-top: 1.4em; }
.contenu_redige img { border-radius: var(--rm_rayon); }
.contenu_redige blockquote {
  margin: 1.5em 0;
  padding: 0.4em 0 0.4em 1.2em;
  border-left: 4px solid var(--rm_accent);
  font-family: var(--rm_serif);
  font-style: italic;
  color: var(--rm_encre_2);
}
.contenu_redige table { width: 100%; border-collapse: collapse; }
.contenu_redige th, .contenu_redige td {
  border: 1px solid var(--rm_filet);
  padding: 0.6rem 0.8rem;
  text-align: left;
}
.contenu_redige thead th { background: var(--rm_surface); }

.encart_redaction {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--rm_surface);
  border-radius: var(--rm_rayon);
  padding: 1.1rem 1.3rem;
  margin: 2.5rem 0 1.5rem;
}
.encart_redaction svg { width: 52px; height: 52px; flex: none; }
.encart_redaction p { margin: 0; font-size: 0.98rem; color: var(--rm_encre_2); }
.encart_redaction strong { color: var(--rm_encre); }

.navigation_voisine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 0 2.5rem;
}
.navigation_voisine a { font-weight: 700; }

/* archives */
.entete_rubrique { padding: 2rem 0 1.5rem; }
.entete_rubrique p { color: var(--rm_encre_2); max-width: 38rem; }
.pagination_route { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 2rem 0; }
.pagination_route .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.3rem 0.8rem;
  border: 1.5px solid var(--rm_filet);
  border-radius: 0.55rem;
  text-decoration: none;
  color: var(--rm_encre);
  background: var(--rm_carte);
}
.pagination_route .page-numbers.current {
  background: var(--rm_accent);
  border-color: var(--rm_accent);
  color: var(--rm_sur_accent);
}

/* 404 + recherche vide */
.page_egaree { padding: 3.5rem 0 4rem; max-width: 40rem; }
.page_egaree p { color: var(--rm_encre_2); }

/* ==========================================================================
   Pied de page
   ========================================================================== */
.pied_route {
  margin-top: 3.5rem;
  background: var(--rm_surface);
  border-top: 3px solid var(--rm_accent);
  padding: 2.5rem 0 1.75rem;
}
.pied_colonnes {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pied_colonnes { grid-template-columns: 1.4fr 1fr 1fr; } }
.pied_route h2 {
  font-size: 1.05rem;
  font-family: var(--rm_sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rm_encre);
}
.pied_marque { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.pied_marque svg { width: 40px; height: 40px; }
.pied_marque span { font-family: var(--rm_serif); font-weight: 700; font-size: 1.15rem; }
.pied_route p { color: var(--rm_encre_2); font-size: 0.98rem; }
.pied_route nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.pied_route nav a {
  color: var(--rm_encre_2);
  text-decoration: none;
  display: inline-block;
  padding: 0.35rem 0;
  min-height: 32px;
}
.pied_route nav a:hover { color: var(--rm_accent_texte); text-decoration: underline; }
.pied_final {
  border-top: 1px solid var(--rm_filet);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--rm_encre_2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}
.pied_final a { color: var(--rm_encre_2); }

/* utilitaires */
.lecture_ecran {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
