/* ===================================================================
   OCHA Matcha Lab — Page Actus
   Styles spécifiques à /actus/  ·  Reprend les tokens de l'accueil
   =================================================================== */

/* ──────── FONTS ──────── */
@font-face {
  font-family: "Pandemonium";
  src: url("/assets/fonts/Pandemonium-Regular.woff2") format("woff2"),
       url("/assets/fonts/Pandemonium-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ──────── TOKENS (identiques à index.html) ──────── */
:root {
  --olive:       #778837;
  --olive-deep:  #4A5A22;
  --olive-soft:  #9DAB66;
  --olive-mid:   #849C61;

  --paper:       #E7DEC2;
  --cream:       #D8D7B8;
  --cream-soft:  #EFE7D2;

  --brick:       #C77877;
  --brick-soft:  #DBA59E;
  --brick-deep:  #A85E5D;
  --brick-pale:  #E8C7B6;

  --sky:         #B8D8F7;
  --sky-soft:    #DCEAF7;
  --sky-deep:    #8FB8E0;

  --ink:         #3B3833;
  --ink-soft:    #5A554D;
  --rule:        rgba(59, 56, 51, 0.14);

  --f-brush:   "Pandemonium", "Bradley Hand", cursive;
  --f-display: "rl-horizon", "Antonio", "Oswald", sans-serif;
  --f-italic:  "itc-avant-garde-gothic-pro", "Inter", sans-serif;
  --f-sans:    "itc-avant-garde-gothic-pro", "Inter", system-ui, sans-serif;
  --f-mono:    "itc-avant-garde-gothic-pro", ui-monospace, monospace;

  --shell: min(1280px, 92vw);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ──────── RESET ──────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sky);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
strong, b { font-weight: 300; color: var(--olive-deep); }
em, i { font-style: italic; font-weight: 300; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--olive); color: var(--paper); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--olive-deep); color: var(--paper);
  padding: 12px 18px; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ─────────────────────── NAV ─────────────────────── */
.nav {
  /* z-index 120 : doit rester AU-DESSUS de .nav__overlay (z-index 100)
     pour que le bouton burger reste cliquable et visible (croix de
     fermeture) quand l'overlay est ouvert. Sans ça, l'overlay
     passerait par-dessus toute la nav et la croix serait masquée. */
  position: sticky; top: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px max(28px, calc((100vw - var(--shell)) / 2));
  background: color-mix(in oklab, var(--sky) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  gap: 24px;
  /* Transition douce sur le fond et la bordure pour que l'apparition/
     disparition de la nav lors du toggle de l'overlay soit fluide. */
  transition:
    background .3s ease,
    border-bottom-color .3s ease,
    backdrop-filter .3s ease;
}
/* Quand l'overlay menu est ouvert, on neutralise le fond de la nav :
   elle doit "disparaître" pour laisser respirer le fond olive deep
   plein écran. Le logo et le burger (en croix) restent visibles. */
body.nav-open .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
/* Logo : pendant l'overlay, on garde le logo visible mais on
   change juste sa couleur du vert olive vers le crème pour qu'il
   ressorte sur le fond olive deep du menu. */
body.nav-open .nav__brand .logomark {
  color: var(--paper);
}

.nav__brand { display: inline-flex; align-items: center; line-height: 0; }
.nav__brand .logomark {
  /* Logo doublé par rapport à la version précédente (64→128). Sur
     mobile on reste à 112 pour préserver l'équilibre nav vs. CTA. */
  width: 128px; height: 128px;
  color: var(--olive-deep);
  /* transition: voir aussi la règle dupliquée plus haut qui
     inclut color pour le toggle paper pendant l'overlay. */
  transition: transform .4s var(--ease-out), color .25s ease;
}
.nav__brand .logomark svg {
  width: 100%; height: 100%;
}
.nav__brand:hover .logomark { transform: rotate(-3deg) scale(1.05); }
@media (max-width: 820px) {
  .nav__brand .logomark { width: 112px; height: 112px; }
}
.nav__links {
  display: flex; gap: 20px;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  /* Pas de wrap sur les libellés multi-mots (ex. "Le matcha") :
     garantit que tous les liens restent sur une seule ligne, sinon
     l'alignement vertical de la nav casse complètement. */
  white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--olive-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav__links a:hover { color: var(--olive-deep); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Bloc droite : sélecteur de langue + CTA, alignés sur la même ligne */
.nav__right {
  display: flex; align-items: center; gap: 18px;
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--olive-deep); color: var(--paper);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.nav__cta:hover { background: var(--olive); transform: translateY(-1px); }

/* ─── Sélecteur de langue (drapeaux SVG minimalistes) ─── */
/* Les drapeaux sont des liens directs vers /index.html ou /index-en.html.
   C'est crawlable par Google et compatible avec hreflang. Style
   délibérément discret : pas de cadre, juste les deux drapeaux côte
   à côte en carré légèrement arrondi, avec une opacité réduite sur
   la langue inactive. */
.lang-switch {
  display: inline-flex; align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-switch__item {
  display: inline-flex;
  width: 24px; height: 18px;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0.4;
  transition: opacity .25s ease, transform .25s ease;
  box-sizing: border-box;
  /* Subtle ring for depth, accentué quand actif */
  box-shadow: 0 0 0 1px rgba(59, 56, 51, 0.12);
}
.lang-switch__item:hover { opacity: 0.85; transform: scale(1.08); }
.lang-switch__item.is-active {
  opacity: 1;
  box-shadow: 0 0 0 1.5px var(--olive-deep);
}
.lang-switch__item svg {
  width: 100%; height: 100%; display: block;
}

/* ─── Burger button (caché desktop, visible mobile) ─── */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: none;
  cursor: pointer;
  padding: 0;
  color: var(--olive-deep);
  flex-shrink: 0;
  position: relative;
  z-index: 110; /* au-dessus de l'overlay quand il est ouvert pour rester cliquable */
  border-radius: 50%;
  transition: background .3s var(--ease-out), transform .25s var(--ease-out);
}
/* Petit halo au tap/hover pour donner du feedback tactile */
.nav__burger:hover,
.nav__burger:focus-visible {
  background: rgba(74, 90, 34, 0.08);
  outline: none;
}
.nav__burger:active { transform: scale(0.92); }

.nav__burger-icon {
  position: relative;
  width: 22px; height: 14px;
  display: block;
}
.nav__burger-icon span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  /* Transition plus riche : on anime aussi width pour un effet de
     "compression" des barres lors de la transformation en croix.
     cubic-bezier custom pour un feel un peu plus snappy. */
  transition:
    transform .45s cubic-bezier(0.65, 0, 0.35, 1.4),
    opacity .2s ease,
    top .35s var(--ease-out),
    width .35s var(--ease-out),
    left .35s var(--ease-out);
}
.nav__burger-icon span:nth-child(1) { top: 0; }
.nav__burger-icon span:nth-child(2) { top: 6px; width: 75%; left: 25%; }
.nav__burger-icon span:nth-child(3) { top: 12px; }

/* État ouvert : transformation en croix bien visible
   - couleur paper (crème) pour ressortir sur le fond olive deep
   - le burger se transforme en X net avec le halo qui devient
     plus dense pour bien matérialiser l'état "fermable" */
.nav__burger[aria-expanded="true"] {
  color: var(--paper);
  background: rgba(231, 222, 194, 0.12);
}
.nav__burger[aria-expanded="true"]:hover {
  background: rgba(231, 222, 194, 0.22);
}
.nav__burger[aria-expanded="true"] .nav__burger-icon span:nth-child(1) {
  top: 6px; transform: rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-icon span:nth-child(2) {
  opacity: 0; width: 0; left: 50%;
}
.nav__burger[aria-expanded="true"] .nav__burger-icon span:nth-child(3) {
  top: 6px; transform: rotate(-45deg);
}

/* ─── Overlay menu mobile plein écran ─── */
/* Philosophie : RAPIDE et FLUIDE.
   - L'overlay doit être utilisable en ~400ms maximum
   - Pas de cascade ralentie un par un — les liens apparaissent ensemble
   - Effet liquide gardé mais condensé (350ms de remplissage)
   - Fermeture symétrique et propre
   - Aucun setTimeout JS : tout est piloté par transitions/animations CSS */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  /* À la fermeture : on attend que tout soit redescendu (~400ms)
     avant de retirer la visibility. */
  transition: visibility 0s linear .4s;
}
.nav__overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

/* ─── Calque de remplissage liquide ───
   Position absolute en bas, height passe de 0 à 100% en 350ms.
   Cubic-bezier qui mime un versement (accélération initiale puis
   léger ralentissement à la fin pour la "tension de surface"). */
.nav__overlay-fill {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 0;
  background: var(--olive-deep);
  transition: height .4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
.nav__overlay[aria-hidden="false"] .nav__overlay-fill {
  height: 100%;
}

/* ─── Surface ondulante du liquide ───
   Positionnée au sommet du fill. Anime en continu pour donner
   l'impression d'un liquide vivant. */
.nav__overlay-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  top: -28px;
  width: 120%;
  height: 40px;
  pointer-events: none;
}
.nav__overlay-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.nav__overlay-wave svg:nth-child(1) {
  fill: var(--olive-deep);
  animation: waveFlow 6s ease-in-out infinite;
}
.nav__overlay-wave svg:nth-child(2) {
  fill: var(--olive-soft);
  opacity: 0.25;
  animation: waveFlow 8s ease-in-out infinite reverse;
  top: 3px;
}

@keyframes waveFlow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-20%); }
}

/* ─── Layout interne de l'overlay ─── */
.nav__overlay-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 16px;
  gap: 4px;
  position: relative;
  z-index: 2;
  /* Animation d'apparition GROUPÉE des liens : tous ensemble,
     pas de cascade lente un par un. */
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .25s ease .2s,
    transform .3s var(--ease-out) .2s;
}
.nav__overlay[aria-hidden="false"] .nav__overlay-inner {
  opacity: 1;
  transform: translateY(0);
}

.nav__overlay a.nav__overlay-link {
  font-family: var(--f-display);
  font-weight: 800;
  /* Tailles compactes pour tenir sur iPhone SE 667px */
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--paper);
  text-decoration: none;
  padding: 10px 16px;
  position: relative;
  transition: color .2s ease, transform .2s var(--ease-out);
}

/* Soulignement animé au hover */
.nav__overlay a.nav__overlay-link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 4px;
  height: 1.5px;
  background: var(--olive-soft);
  transition: left .25s var(--ease-out), right .25s var(--ease-out);
}
.nav__overlay a.nav__overlay-link:hover,
.nav__overlay a.nav__overlay-link:focus-visible {
  color: var(--cream);
}
.nav__overlay a.nav__overlay-link:hover::after,
.nav__overlay a.nav__overlay-link:focus-visible::after {
  left: 22%; right: 22%;
}

/* ─── Footer overlay (CTA + langues) ───
   Apparition groupée et rapide, légèrement après les liens. */
.nav__overlay-footer {
  padding: 16px 24px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(231, 222, 194, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .25s ease .3s,
    transform .3s var(--ease-out) .3s;
}
.nav__overlay[aria-hidden="false"] .nav__overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav__overlay-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 999px;
  background: var(--paper); color: var(--olive-deep);
  font-family: var(--f-sans);
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.nav__overlay-cta:hover,
.nav__overlay-cta:focus-visible {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* ─── Sélecteur de langue texte (mobile overlay uniquement) ───
   "FR  ·  EN" textuel, discret et facile à toucher. */
.nav__overlay-langs {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__overlay-langs a {
  color: rgba(231, 222, 194, 0.55);
  padding: 8px 14px;
  transition: color .25s ease;
  position: relative;
}
.nav__overlay-langs a:hover,
.nav__overlay-langs a:focus-visible {
  color: var(--paper);
  outline: none;
}
.nav__overlay-langs a.is-active {
  color: var(--paper);
  font-weight: 400;
}
.nav__overlay-langs a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--paper);
}
.nav__overlay-langs span.sep {
  color: rgba(231, 222, 194, 0.3);
  padding: 0 2px;
  user-select: none;
}

/* Bloque le scroll du body quand l'overlay est ouvert */
body.nav-open {
  overflow: hidden;
}

/* ─── Bascule responsive ─── */
@media (max-width: 820px) {
  .nav__links { display: none; }
  /* Sur mobile, la langue est dans l'overlay seulement, pas dans la nav
     (pour garder la nav top épurée à côté du burger). */
  .nav__right .lang-switch { display: none; }
  .nav__right .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}
/* Desktop ≥821px : l'overlay reste invisible et le burger caché */
@media (min-width: 821px) {
  .nav__overlay { display: none; }
}
/* ============================================
   HEADER DE LA PAGE ACTUS
   ============================================ */
.actus-header {
  padding: 96px max(28px, calc((100vw - var(--shell)) / 2)) 56px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.actus-eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0 0 20px;
}
.actus-eyebrow::before {
  content: ""; display: inline-block;
  width: 36px; height: 1px;
  background: var(--olive-deep);
  vertical-align: middle;
  margin-right: 14px;
}
.actus-eyebrow::after {
  content: ""; display: inline-block;
  width: 36px; height: 1px;
  background: var(--olive-deep);
  vertical-align: middle;
  margin-left: 14px;
}

.actus-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.actus-title .brush {
  font-family: var(--f-brush);
  font-weight: 400;
  font-size: 0.92em;
  color: var(--olive);
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(0.05em);
}

.actus-subtitle {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   ARTICLE MIS EN AVANT
   ============================================ */
.featured-article {
  padding: 80px max(28px, calc((100vw - var(--shell)) / 2)) 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--olive-deep);
  color: var(--paper);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
}
.featured-card:hover { transform: translateY(-4px); }

.featured-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--olive);
  position: relative;
}
.featured-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(74, 90, 34, 0.25));
}

.featured-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-tag {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin: 0 0 24px;
}

.featured-content h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--paper);
}
.featured-content h2 .brush {
  font-family: var(--f-brush);
  font-weight: 400;
  color: var(--olive-soft);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.7em;
}

.featured-excerpt {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(231, 222, 194, 0.78);
  margin: 0 0 32px;
}

.featured-meta {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(231, 222, 194, 0.6);
}
.featured-meta .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.featured-card:hover .featured-meta .arrow { transform: translateX(8px); }

/* ============================================
   GRILLE DES ARTICLES
   ============================================ */
.articles-grid-section {
  padding: 96px max(28px, calc((100vw - var(--shell)) / 2)) 120px;
}

.grid-label {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0 0 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 56px 36px;
}

.article-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out);
}
.article-card:hover { transform: translateY(-6px); }

.article-card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--sky-deep);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.article-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(74, 90, 34, 0);
  transition: background 0.4s ease;
}
.article-card:hover .article-card-image::after {
  background: rgba(74, 90, 34, 0.08);
}

.article-card-date {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 12px;
}

.article-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}

.article-card-excerpt {
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   PAGE ARTICLE INDIVIDUEL
   ============================================ */
.article-header {
  max-width: 760px;
  margin: 0 auto;
  /* Padding horizontal simple à 28px : suffit puisque max-width 760px
     centré gère déjà la largeur. L'ancien `max(28px, calc(...))` faisait
     un calcul basé sur le shell (1280px) qui, sur très grand écran,
     créait un padding gauche/droite énorme (jusqu'à 800px par côté)
     compressant le texte en colonne d'1 mot par ligne. */
  padding: 72px 28px 40px;
  text-align: center;
}

.article-back {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 40px;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.article-back:hover { opacity: 0.7; }
.article-back::before { content: '←'; margin-right: 0.5rem; }

.article-meta {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.article-meta .dot { margin: 0 12px; opacity: 0.5; }

.article-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--olive-deep);
  text-transform: uppercase;
  margin: 0 0 28px;
}
.article-title .brush {
  font-family: var(--f-brush);
  font-weight: 400;
  color: var(--olive);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92em;
}

.article-lede {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.article-hero {
  max-width: 1100px;
  margin: 56px auto;
  /* Même fix que .article-header : padding horizontal simple,
     pas de calc basé sur le shell qui détruirait la mise en page
     sur très grand écran. */
  padding: 0 28px;
}
.article-hero img {
  width: 100%;
  height: auto;
  /* PAS d'aspect-ratio forcé : les images d'articles sont fournies
     en formats variables (paysage, portrait, carré, grille). Forcer
     16/9 avec object-fit: cover rognait massivement les images portrait
     (la grille Hidden Romance perdait ~50% de son contenu). On laisse
     le ratio natif respirer, en bornant simplement la hauteur pour
     éviter qu'une image très haute ne mange tout l'écran. */
  max-height: 80vh;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 28px 96px;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}

.article-body p { margin: 0 0 24px; }

.article-body p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 72px;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--olive-deep);
}

.article-body h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 56px 0 20px;
  color: var(--olive-deep);
}

.article-body h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 40px 0 16px;
  color: var(--olive-deep);
}

.article-body img { width: 100%; height: auto; margin: 40px 0; }
.article-body figure { margin: 40px 0; }
.article-body figcaption {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
}

.article-body blockquote {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--olive-deep);
  border-left: 2px solid var(--olive);
  padding-left: 32px;
  margin: 40px 0;
}

.article-body a {
  color: var(--olive-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body ul, .article-body ol { margin: 24px 0 24px 24px; }
.article-body li { margin-bottom: 8px; }

.article-footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 28px 80px;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.article-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--olive-deep);
  color: var(--paper);
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}
.article-footer-cta:hover {
  background: var(--olive);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-content { padding: 40px 28px; }
  .articles-grid { grid-template-columns: 1fr; gap: 40px; }
  .actus-header { padding-top: 56px; padding-bottom: 40px; }
  .article-header { padding-top: 40px; padding-bottom: 24px; }
  .article-body { font-size: 16px; padding: 24px 24px 64px; }
  .article-body p:first-of-type::first-letter { font-size: 60px; }
}
