/* Askuria — feuille de style unique, zéro dépendance externe */

:root {
  --bg: #070c12;
  --bg-elevated: #0c141c;
  --bg-card: #0e1922;
  --border: rgba(10, 230, 201, 0.16);
  --border-strong: rgba(10, 230, 201, 0.44);
  --accent: #0ae6c9;
  --accent-soft: rgba(10, 230, 201, 0.12);
  --text: #e9f6f3;
  --text-muted: #93a8a5;
  --text-dim: #708785;
  --warn: #ff6b5e;
  --warn-soft: rgba(255, 107, 94, 0.12);
  --radius: 14px;
  --maxw: 1140px;
  --font: -apple-system, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { color-scheme: dark; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(10, 230, 201, 0.10) 0%, rgba(10, 230, 201, 0.03) 32%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, label:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #06110f; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lede { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 12, 18, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 26px; height: 26px; }
.brand__word {
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav ul { display: flex; gap: 1.6rem; }
.nav a {
  font-size: 0.92rem; color: var(--text-muted); white-space: nowrap;
  transition: color 0.15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"] { color: var(--accent); }

/* Les boutons du header sont des <a> dans .nav : sans ce rappel de spécificité,
   `.nav a` (0-1-1) l'emporte sur `.btn--primary` (0-1-0) et le libellé s'affiche
   en gris sur le fond turquoise (1,57:1 — sous le seuil RGAA de 4,5:1). */
.nav a.btn--primary, .nav a.btn--primary:hover { color: #06110f; }
.nav a.btn--ghost { color: var(--text); }
.nav a.btn--ghost:hover { color: var(--accent); }

.nav-toggle, .nav-burger { display: none; }

.lang-switch {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--text-muted); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 0.35rem 0.7rem; transition: all 0.15s ease;
}
.lang-switch:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.92rem; font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn--primary { background: var(--accent); color: #06110f; }
.btn--primary:hover { background: #3ff2da; }
.btn--ghost { border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Sections ---------- */

section { position: relative; z-index: 1; padding: 5rem 0; }
section + section { border-top: 1px solid var(--border); }

.hero { padding: 6.5rem 0 5rem; }
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12; max-width: 18ch; }
.hero .lede { margin-top: 1.4rem; font-size: 1.25rem; }

h2.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 28ch; }
.section-head { margin-bottom: 3rem; }
.section-head .lede { margin-top: 1rem; }

/* ---------- Grids & cards ---------- */

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card .eyebrow { margin-bottom: 0.5rem; font-size: 0.68rem; }

.stat {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.stat__value { font-size: 2.1rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat__label { margin-top: 0.7rem; font-size: 0.9rem; color: var(--text); }
.stat__source { margin-top: 0.4rem; font-size: 0.75rem; color: var(--text-dim); }

/* ---------- Split (texte + chiffre / visuel) ---------- */

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.split--reverse .split__figure { order: -1; }
.split__figure {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 2.5rem;
}

.big-number { font-size: clamp(3.4rem, 7vw, 5.2rem); font-weight: 700; color: var(--accent); line-height: 0.95; }
.big-number-label { margin-top: 1rem; font-size: 1.02rem; color: var(--text); max-width: 32ch; }
.big-number-source { margin-top: 0.6rem; font-size: 0.8rem; color: var(--text-dim); }

/* ---------- List rows (alternative aux grilles de cartes) ---------- */

.list-rows { border-top: 1px solid var(--border); }
.list-row {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem;
  padding: 1.85rem 0; border-bottom: 1px solid var(--border);
}
.list-row__index { font-variant-numeric: tabular-nums; color: var(--text-dim); font-size: 0.95rem; padding-top: 0.15rem; }
.list-row__body h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.list-row__body p { color: var(--text-muted); font-size: 0.94rem; max-width: 62ch; }

/* ---------- Utilitaires de section ---------- */

.section--tight { padding-top: 0.5rem; padding-bottom: 3.5rem; }
.section--flush { border-top: none !important; }

/* ---------- Scénario (mise en situation narrative) ---------- */

.story { max-width: 68ch; }
.story__setup { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--text); font-weight: 600; line-height: 1.45; margin-bottom: 1.4rem; }
.story p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.story__punch { color: var(--accent) !important; font-weight: 600; }

.scenario {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 2.25rem;
}
.scenario .eyebrow { margin-bottom: 1.1rem; }
.scenario__setup { font-size: 1.02rem; color: var(--text); font-weight: 600; line-height: 1.5; margin-bottom: 1rem; }
.scenario p { font-size: 0.94rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.9rem; }
.scenario__punch { color: var(--accent) !important; font-weight: 600; margin-bottom: 0 !important; }

/* ---------- Compare (avant / avec) ---------- */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.compare__col {
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.compare__col--bad { background: var(--warn-soft); border-color: rgba(255, 107, 94, 0.28); }
.compare__col--good { background: var(--accent-soft); border-color: var(--border-strong); }
.compare__col h3 {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.compare__col--bad h3 { color: var(--warn); }
.compare__col--good h3 { color: var(--accent); }
.compare__item { display: flex; gap: 0.75rem; padding: 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.compare__item:first-of-type { border-top: none; }
.compare__item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.compare__item span { font-size: 0.85rem; color: var(--text-muted); }
.compare__icon { flex: 0 0 auto; font-size: 1.1rem; line-height: 1.4; }

/* ---------- Steps (timeline) ---------- */

.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; counter-reset: step; }
.step { text-align: left; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  border: 1px solid var(--border-strong); color: var(--accent);
  font-size: 0.8rem; font-weight: 700; margin-bottom: 0.9rem;
}
.step h4 { font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Quote band ---------- */

.quote-band { text-align: center; padding: 4.5rem 0; }
.quote-band p {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  max-width: 42ch;
  margin: 0 auto;
  line-height: 1.4;
}
.quote-band p em { color: var(--accent); font-style: normal; }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band .lede { margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Lists ---------- */

.check-list li {
  position: relative; padding-left: 1.6rem; padding-bottom: 0.85rem; color: var(--text-muted); font-size: 0.96rem;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700;
}
.check-list li strong { color: var(--text); }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--border-strong); color: var(--accent);
}

/* ---------- Prose (legal pages) ---------- */

.prose { max-width: 76ch; }
.prose h2 { font-size: 1.35rem; margin: 2.4rem 0 0.9rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 1.6rem 0 0.6rem; color: var(--text); }
.prose p, .prose li { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 0.9rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose .updated { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 2rem; }

.placeholder {
  color: var(--warn);
  background: var(--warn-soft);
  padding: 0.05em 0.4em;
  border-radius: 4px;
  font-size: 0.92em;
}

table.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; }
table.legal-table th, table.legal-table td {
  text-align: left; padding: 0.7rem 0.9rem; border: 1px solid var(--border); font-size: 0.9rem;
}
table.legal-table th { color: var(--text); background: var(--bg-card); }
table.legal-table td { color: var(--text-muted); }

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.team-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; background: var(--bg-card);
}
.team-card__avatar {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent); font-size: 1.1rem; margin-bottom: 1.1rem;
}
.team-card h3 { font-size: 1.1rem; }
.team-card .role { color: var(--accent); font-size: 0.85rem; margin: 0.25rem 0 0.9rem; }
.team-card p.bio { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
.contact-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; background: var(--bg-card);
  margin-bottom: 1.25rem;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.contact-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.9rem; }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--border); margin-top: 3rem; position: relative; z-index: 1; }
.site-footer__inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.site-footer__brand { display: flex; gap: 0.75rem; align-items: flex-start; }
.site-footer__name { font-weight: 600; letter-spacing: 0.08em; }
.site-footer__baseline { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.2rem; }
.site-footer__nav ul, .site-footer__legal ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__nav a, .site-footer__legal a { color: var(--text-muted); font-size: 0.9rem; }
.site-footer__nav a:hover, .site-footer__legal a:hover { color: var(--accent); }
.site-footer__nocookie { margin-top: 1rem; font-size: 0.78rem; color: var(--text-dim); }
.site-footer__bottom { border-top: 1px solid var(--border); padding: 1.4rem 0; }
.site-footer__bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__figure { order: 0; }
  .list-row { grid-template-columns: 2rem 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }

  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 34px; height: 34px; cursor: pointer;
  }
  .nav-burger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; }

  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-elevated); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .nav ul { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .nav ul li a { display: block; padding: 0.85rem 1.5rem; }
  .lang-switch { margin: 0.25rem 1.5rem; align-self: flex-start; }
  .nav__cta { margin: 0.75rem 1.5rem 1.25rem; }

  .nav-toggle:checked ~ .nav { max-height: 480px; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .cta-band { padding: 2.25rem 1.5rem; }
}

/* ---------- Blog ---------- */

.hero--post { padding-bottom: 3rem; }
/* Colonne de lecture centrée : le chapeau et le corps partagent la même mesure. */
.hero--post .wrap { max-width: calc(72ch + 3rem); }
.hero--post h1 { max-width: 24ch; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.eyebrow a:hover { text-decoration: underline; text-underline-offset: 3px; }

.post-meta { margin-top: 1.2rem; color: var(--text-muted); font-size: 0.9rem; }

.post-list--compact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.post-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.post-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.post-card__meta {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.9rem;
}
.post-card h3 { font-size: 1.05rem; line-height: 1.35; }
.post-card p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.8rem; }
.post-card__more { margin-top: auto; padding-top: 1.2rem; color: var(--accent); font-size: 0.9rem; font-weight: 600; }

/* ---------- Index du blog : à la une + liste éditoriale ---------- */

.hero--blog { padding-bottom: 3.5rem; }

.post-featured {
  display: block; position: relative;
  padding: 3rem 3.2rem;
  border: 1px solid var(--border-strong); border-radius: 20px;
  background:
    radial-gradient(circle at 85% -30%, rgba(10, 230, 201, 0.13), transparent 55%),
    linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  transition: border-color 0.15s ease;
}
.post-featured:hover { border-color: var(--accent); }
.post-featured__eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.post-featured h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.18; max-width: 30ch; }
.post-featured__desc { margin-top: 1.1rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; max-width: 62ch; }
.post-featured__foot {
  margin-top: 2rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  color: var(--text-muted); font-size: 0.88rem;
}
.post-featured__cta { margin-left: auto; color: var(--accent); font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.post-featured__cta span { display: inline-block; transition: transform 0.15s ease; }
.post-featured:hover .post-featured__cta span { transform: translateX(4px); }

.post-rows { margin-top: 4rem; }
.post-rows__head {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); padding-bottom: 1.1rem;
}
.post-row {
  display: grid; grid-template-columns: 11.5rem 1fr auto; gap: 2.2rem; align-items: start;
  padding: 1.9rem 0.2rem; border-top: 1px solid var(--border);
  transition: background 0.15s ease;
}
.post-row:last-child { border-bottom: 1px solid var(--border); }
.post-row__meta { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: var(--text-muted); padding-top: 0.25rem; }
.post-row__meta span { color: var(--text-dim); font-size: 0.8rem; }
.post-row__body h3 { font-size: 1.22rem; line-height: 1.35; transition: color 0.15s ease; }
.post-row:hover .post-row__body h3 { color: var(--accent); }
.post-row__body p { margin-top: 0.55rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; max-width: 68ch; }
.post-row__arrow { align-self: center; color: var(--text-dim); font-size: 1.25rem; transition: transform 0.15s ease, color 0.15s ease; }
.post-row:hover .post-row__arrow { transform: translateX(5px); color: var(--accent); }

/* Corps d'article : la classe .prose est calibrée pour les pages légales,
   on remonte l'échelle typographique pour du texte long. */
.post-body { max-width: 72ch; margin: 0 auto; }
.post-body h2 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); margin: 3rem 0 1rem; }
.post-body h3 { font-size: 1.15rem; margin: 2rem 0 0.7rem; }
.post-body p, .post-body li { font-size: 1.02rem; line-height: 1.7; }
.post-body li { margin-bottom: 0.5rem; }
.post-body li p { margin-bottom: 0.5rem; }
.post-body > p:first-child { font-size: 1.15rem; color: var(--text); }
.post-body > p:first-child em { font-style: normal; }

.post-body blockquote {
  margin: 2rem 0; padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-body blockquote p:last-child { margin-bottom: 0; }

.post-tldr {
  margin: 2.5rem 0; padding: 1.8rem;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.post-tldr > p:first-child {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.post-tldr ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.post-tldr li { position: relative; padding-left: 1.4rem; }
.post-tldr li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.post-tldr li:last-child p:last-child { margin-bottom: 0; }

.post-related {
  margin: 2rem 0; padding: 1rem 1.3rem;
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
  font-size: 0.95rem;
}
.post-related a { color: var(--accent); font-weight: 600; }

.post-body table { width: 100%; border-collapse: collapse; margin: 1.8rem 0; font-size: 0.9rem; }
.post-body th, .post-body td {
  text-align: left; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
  vertical-align: top;
}
.post-body th { color: var(--text); background: var(--bg-card); }
.post-body td { color: var(--text-muted); }

@media (max-width: 860px) {
  .post-list--compact { grid-template-columns: 1fr; }
  .post-featured { padding: 2rem 1.5rem; }
  .post-featured__cta { margin-left: 0; flex-basis: 100%; }
  .post-row { grid-template-columns: 1fr; gap: 0.7rem; padding: 1.6rem 0; }
  .post-row__meta { flex-direction: row; gap: 0.8rem; padding-top: 0; }
  .post-row__arrow { display: none; }
  .post-body { max-width: none; }
  .post-body table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* La barre de navigation porte 8 entrées + le sélecteur de langue + le CTA :
   on resserre avant le basculement en menu burger pour éviter le débordement. */
@media (min-width: 861px) and (max-width: 1080px) {
  .nav { gap: 1.1rem; }
  .nav ul { gap: 1rem; }
  .nav a { font-size: 0.86rem; }
  .btn.nav__cta { padding: 0.6rem 1rem; font-size: 0.85rem; }
}
