/* =========================================================================
   INSIGHT 221 — Feuille de style principale, habillage « New York Times »
   -------------------------------------------------------------------------
   Remplace assets/style.css. Conserve TOUTES les classes et les hooks JS
   existants (.brandbar, .main-nav, #site-search, [data-*]…).

   • Logo « Insight 221 » centré dans le bandeau
   • Recherche en surimpression, pleine largeur, sans débordement
   • « À la une » hiérarchisée (une manchette + suiveuses)
   • Listage éditorial (première analyse large puis grille sobre)
   • Palette noir / blanc / hairline — plus de vert (#153b35) ni d'or (#c98232)
   • Titres serif façon Cheltenham (Playfair Display / Georgia)
   • Corps Georgia · Interface & métadonnées Libre Franklin

   ⚠️ Dans le <head>, remplacez la ligne Google Fonts (Barlow Condensed +
      Source Sans) par :
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Libre+Franklin:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap" rel="stylesheet">
      et le <meta name="theme-color" …> en content="#000000".
   ========================================================================= */

:root {
  /* Encres & surfaces */
  --ink: #121212;          /* noir texte */
  --deep: #121212;         /* ex-vert : neutralisé en noir */
  --ink-soft: #333333;
  --muted: #666666;
  --muted-light: #8f8f8f;
  --line: #e2e2e2;         /* filet clair */
  --line-strong: #121212;  /* filet noir de section */
  --paper: #ffffff;        /* fond de page (ex-crème) */
  --sand: #f7f7f7;         /* fond doux */
  --accent: #121212;       /* ex-or : neutralisé en noir */
  --link: #326891;         /* bleu de lien NYT, discret */

  --shell: 1200px;

  /* Cheltenham → Playfair Display / Georgia */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  /* Corps de lecture */
  --reading: Georgia, "Times New Roman", serif;
  /* Franklin → Libre Franklin */
  --body: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.shell { width: min(var(--shell), calc(100% - 44px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 50;
  background: #000; color: #fff; padding: 10px 14px; font-weight: 700;
}
.skip-link:focus { top: 12px; }
a { color: inherit; }
img { max-width: 100%; }

/* =========================================================================
   BANDEAU HAUT
   ========================================================================= */
.topline {
  background: #fff;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--body);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
.topline-inner {
  height: 34px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topline a { font-size: 0.66rem; text-decoration: none; color: var(--ink); }
.topline a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   EN-TÊTE — logo centré façon manchette
   ========================================================================= */
.site-header { background: #fff; border-bottom: 1px solid var(--line-strong); }

/* Trois colonnes symétriques : (recherche/vide) · marque centrée · (menu) */
.brandbar {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 14px 0 12px;
}

/* La marque occupe la colonne centrale, parfaitement centrée */
.brand {
  grid-column: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.4vw, 3.8rem);
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: none;              /* plus de majuscules condensées */
  color: var(--ink);
  width: max-content;
}
.brand b { color: var(--ink); font-weight: 800; }
.brand-overline {
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  line-height: 1.3;
  margin-bottom: 9px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}
/* La signature descriptive passe sous le logo, centrée, discrète */
.brand-claim {
  grid-column: 2;
  grid-row: 2;
  margin: 8px auto 0;
  max-width: 520px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Colonne de droite : bouton menu (mobile). En desktop il est masqué,
   on garde la colonne pour l'équilibre du centrage. */
.menu-button {
  grid-column: 3;
  justify-self: end;
  display: none;
  background: transparent; border: 1px solid var(--line);
  padding: 8px 9px; cursor: pointer;
}
.menu-button span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; }

/* =========================================================================
   NAVIGATION DES RUBRIQUES — centrée, sobre
   ========================================================================= */
.main-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.main-nav > div {
  display: flex;
  align-items: center;
  justify-content: center;          /* rubriques centrées façon NYT */
  gap: 4px;
  min-height: 46px;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav > div::-webkit-scrollbar { display: none; }
.main-nav a {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink-soft);
  padding: 13px 14px 12px;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover,
.main-nav a.is-current {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Bouton recherche : calé à gauche pour équilibrer le hamburger à droite */
.search-button {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  border: 0;
  background: transparent;
  font: 600 0.74rem var(--body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  padding: 8px 0;
}
.search-button:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   PANNEAU DE RECHERCHE — clair, pleine largeur, sans débordement
   (le JS bascule l'attribut [hidden])
   ========================================================================= */
.search-panel {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
}
.search-panel[hidden] { display: none; }
.search-panel-inner { position: relative; padding: 22px 0 26px; }
.search-panel label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.search-panel input {
  display: block;
  margin-top: 12px;
  width: min(720px, calc(100% - 60px));  /* laisse la place au bouton × */
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 13px 14px;
  font: 1rem var(--body);
  background: #fff;
  color: var(--ink);
}
.search-panel input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.search-panel button {
  position: absolute;
  right: 0; top: 32px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.search-results { margin-top: 16px; max-width: 760px; }
.search-result {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}
.search-result:first-child { border-top: 2px solid var(--ink); }
.search-result strong {
  font-family: var(--display); font-weight: 700; font-size: 1.1rem; line-height: 1.2;
}
.search-result:hover strong { text-decoration: underline; text-underline-offset: 2px; }
.search-result small {
  display: block; color: var(--muted); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px;
}
.search-results p { color: var(--muted); font-size: 0.9rem; }

/* =========================================================================
   HÉRO D'ACCUEIL — chapeau éditorial, pas une bannière colorée
   ========================================================================= */
.home-hero {
  padding: 44px 0 34px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: end;
}
.eyebrow {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.home-hero h1,
.category-hero h1,
.simple-page h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  text-transform: none;
  margin: 0;
  max-width: 820px;
  color: var(--ink);
}
.home-hero h1 em,
.category-hero h1 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1em;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-text {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 610px;
  margin: 22px 0;
  color: var(--ink-soft);
}
.button-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; text-decoration: none;
  font-family: var(--body);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 12px 16px; border: 1px solid var(--ink);
}
.button-link:hover { background: #333; border-color: #333; }
.hero-note {
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hero-note-label {
  font: 700 0.68rem var(--body);
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px;
  color: var(--muted);
}
.hero-note a { font-weight: 600; color: var(--ink); }

/* =========================================================================
   SECTIONS « À LA UNE » / LISTAGE
   ========================================================================= */
.latest,
.article-list,
.category-list { padding: 40px 0 56px; }

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  border-top: 2px solid var(--ink);       /* filet noir en tête de section */
  border-bottom: 0;
  padding-top: 11px;
}
.section-heading h2,
.article-continue h2,
.prose-page h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  text-transform: none;
  margin: 4px 0 0;
  color: var(--ink);
}
.section-heading > span {
  font-family: var(--body);
  font-size: 0.74rem; color: var(--ink); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.section-heading > span a,
.section-heading a { color: var(--ink); text-decoration: none; }
.section-heading a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Carte générique --- */
.story-card {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  background: #fff;
}
.story-image { display: block; background: var(--sand); overflow: hidden; margin-bottom: 13px; }
.story-image img {
  display: block; width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.35s ease;
}
.story-image:hover img { transform: scale(1.03); }
.story-copy { padding: 0; }
.story-category {
  font-family: var(--body);
  font-size: 0.66rem; line-height: 1.1;
  color: var(--ink); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px;
}
.story-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem; line-height: 1.2;
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0;
  color: var(--ink);
}
.story-card h3 a { text-decoration: none; color: var(--ink); }
.story-card h3 a:hover { text-decoration: underline; text-underline-offset: 2px; }
.story-excerpt {
  font-family: var(--reading);
  font-size: 0.95rem; line-height: 1.5;
  color: var(--ink-soft); margin: 10px 0 10px;
}
.story-meta {
  display: flex; gap: 10px;
  font-family: var(--body);
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.story-meta span:before { content: '·'; margin-right: 10px; color: var(--line-strong); }
.text-link {
  font: 600 0.72rem var(--body);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); margin-top: auto;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.text-link span { color: var(--ink); font-size: 1em; }

/* --- Manchette « À la une » : image + texte côte à côte, grand titre --- */
.featured-wrap .story-card {
  display: grid;
  grid-template-columns: minmax(240px, 46%) 1fr;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  min-height: auto;
}
.featured-wrap .story-image { margin-bottom: 0; }
.story-card--featured .story-image img { height: 100%; min-height: 300px; object-fit: cover; }
.story-card--featured .story-copy { padding: 0; }
.story-card--featured h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  line-height: 1.12;
}
.story-card--featured .story-excerpt { font-size: 1.02rem; }

/* =========================================================================
   RUBRIQUES (topics) — grille sobre à filets fins
   ========================================================================= */
.topics {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 38px 0;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.topic-link {
  min-height: 150px;
  padding: 18px 16px;
  display: flex; flex-direction: column;
  background: #fff;
  border: 0;
  text-decoration: none;
  position: relative;
}
.topic-link:hover { background: var(--sand); }
.topic-link span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem; line-height: 1.1;
  text-transform: none;
  color: var(--ink);
}
.topic-link small { color: var(--muted); font-size: 0.76rem; line-height: 1.4; margin-top: 10px; }
.topic-link b {
  position: absolute; right: 14px; bottom: 11px;
  color: var(--ink); font-size: 1rem;
}

/* =========================================================================
   LISTAGE « Toutes les analyses » — première carte en vedette pleine largeur
   ========================================================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}
/* Première analyse : pleine largeur, image + texte côte à côte */
.article-list .articles-grid > .story-card:first-child,
.category-list .articles-grid > .story-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 46%) 1fr;
  gap: 26px;
  align-items: center;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.article-list .articles-grid > .story-card:first-child .story-image,
.category-list .articles-grid > .story-card:first-child .story-image { margin-bottom: 0; }
.article-list .articles-grid > .story-card:first-child .story-image img,
.category-list .articles-grid > .story-card:first-child .story-image img {
  height: 100%; min-height: 280px;
}
.article-list .articles-grid > .story-card:first-child h3,
.category-list .articles-grid > .story-card:first-child h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem); line-height: 1.14;
}
.article-list .articles-grid > .story-card:first-child .story-excerpt,
.category-list .articles-grid > .story-card:first-child .story-excerpt { font-size: 1.02rem; }

/* =========================================================================
   PAGE RUBRIQUE
   ========================================================================= */
.category-hero {
  padding: 44px 0 40px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 7px;
  font-family: var(--body);
  font-size: 0.72rem; color: var(--muted); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--ink); font-weight: 600; }
.category-hero h1 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); max-width: 820px; }
.category-hero > div > p:last-child {
  max-width: 680px; font-size: 1.08rem; line-height: 1.5;
  color: var(--muted); margin: 18px 0 0;
}

/* =========================================================================
   PAGE ARTICLE
   ========================================================================= */
.article-head { padding: 30px 0 24px; }
.article-header { max-width: 820px; margin-inline: auto; text-align: center; }
.article-kicker {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--body);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin: 0 0 14px;
}
.article-kicker span { color: var(--muted); font-size: 0.64rem; }
.article-header h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-transform: none;
  margin: 0;
  color: var(--ink);
}
.article-deck {
  font-family: var(--body);
  font-size: 1.15rem; line-height: 1.5;
  color: var(--ink-soft); max-width: 720px; margin: 18px auto 16px;
}
.article-meta {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--body);
  font-size: 0.74rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.share-button {
  border: 0; background: none; padding: 0;
  color: var(--ink); font: 600 0.76rem var(--body);
  text-transform: uppercase; cursor: pointer;
}
.share-button:hover { text-decoration: underline; }

.article-cover {
  width: min(1000px, calc(100% - 44px));
  height: clamp(200px, 30vw, 340px);
  margin: 22px auto 34px;
  background: var(--sand);
  border-block: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.article-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-cover figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; margin: 0;
  padding: 6px 10px; background: rgba(255, 255, 255, 0.92);
  color: var(--muted); font-family: var(--body); font-size: 0.68rem; line-height: 1.25;
}

.article-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 720px);
  justify-content: center;
  gap: 46px;
  padding: 0 0 54px;
}
.article-aside {
  height: max-content;
  border-top: 2px solid var(--ink);
  padding-top: 10px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.74rem; line-height: 1.4;
}
.article-aside b {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 1.1rem; line-height: 1.1;
  color: var(--ink); text-transform: none; letter-spacing: 0;
}
.article-aside p { margin: 8px 0 0; }

/* Corps de lecture en serif, généreux */
.article-body {
  font-family: var(--reading);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.article-body > p:first-child { font-size: 1.22rem; line-height: 1.6; color: var(--ink); }
.article-body p { margin: 0 0 20px; }
.article-body h2,
.article-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem; line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin: 40px 0 12px;
}
.article-body h3 { font-size: 1.18rem; margin-top: 30px; }
.article-body h4 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.15rem; line-height: 1.2; text-transform: none;
  margin: 30px 0 10px; color: var(--ink);
}
.article-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--muted-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body a:hover { text-decoration-color: var(--ink); }
.article-body ul,
.article-body ol { padding-left: 24px; margin: 0 0 20px; }
.article-body li { padding-left: 3px; margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--ink);
  padding: 8px 0 8px 20px; margin: 26px 0;
  font-family: var(--display); font-style: italic;
  font-size: 1.3rem; line-height: 1.4; color: var(--ink);
}
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.article-body table {
  display: block; overflow: auto; width: 100%;
  border-collapse: collapse; margin: 24px 0;
  font-family: var(--body);
}
.article-body th,
.article-body td {
  border: 1px solid var(--line); padding: 9px; text-align: left;
  font-size: 0.85rem; vertical-align: top;
}
.article-body th { background: var(--sand); font-weight: 600; }
.article-body .article-figure {
  width: 100%; max-width: 720px; margin: 28px auto;
  border: 0; background: #fff; padding: 0;
}
.article-body .article-figure img {
  display: block; width: 100%; max-height: 460px; object-fit: contain; background: #fff;
}
.article-body .article-figure figcaption {
  font-family: var(--body);
  font-size: 0.73rem; line-height: 1.4; color: var(--muted);
  padding: 9px 3px 2px; border-bottom: 1px solid var(--line);
}

/* Suite / articles liés */
.article-continue {
  border-top: 2px solid var(--ink);
  background: #fff;
  padding: 38px 0;
}
.article-continue > div { display: grid; grid-template-columns: 260px 1fr; gap: 46px; }
.article-continue ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.article-continue li { border-bottom: 1px solid var(--line); }
.article-continue li a {
  display: flex; justify-content: space-between; gap: 16px; padding: 12px 0;
  text-decoration: none;
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; line-height: 1.18; text-transform: none;
  color: var(--ink);
}
.article-continue li a:hover { text-decoration: underline; text-underline-offset: 2px; }
.article-continue li a span { color: var(--ink); }

/* =========================================================================
   PAGES SIMPLES / PROSE
   ========================================================================= */
.simple-page { padding: 70px 0 100px; background: #fff; min-height: 45vh; }
.narrow { max-width: 760px; }
.prose-page { padding: 54px 0 80px; max-width: 760px; margin-inline: auto; }
.prose-page h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.07;
  text-transform: none; color: var(--ink); margin: 0 0 28px;
}
.prose-page h2 { margin: 40px 0 12px; }
.prose-page p { font-family: var(--reading); font-size: 1.1rem; line-height: 1.65; margin: 0 0 18px; }

/* =========================================================================
   NEWSLETTER — sur fond clair, sobre
   ========================================================================= */
.newsletter {
  background: var(--sand);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 480px);
  gap: 60px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.14; letter-spacing: -0.008em;
  text-transform: none; margin: 0; color: var(--ink);
}
.newsletter h2 em { font-style: italic; font-weight: 500; color: var(--ink); }
.newsletter-grid > div > p:last-child {
  font-size: 0.9rem; margin: 0.7rem 0 0; color: var(--muted);
}
.newsletter-row { display: flex; border: 1px solid var(--ink); background: #fff; }
.newsletter input {
  min-width: 0; width: 100%; border: 0; padding: 13px 14px;
  font: 1rem var(--body); background: #fff; color: var(--ink);
}
.newsletter input:focus { outline: 2px solid var(--ink); outline-offset: -2px; }
.newsletter button {
  border: 0; background: var(--ink); color: #fff; padding: 0 18px; white-space: nowrap;
  font: 600 0.82rem var(--body); text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer;
}
.newsletter button:hover { background: #333; }
.form-note { font-size: 0.72rem; color: var(--muted); margin: 0.7rem 0 0; }

/* =========================================================================
   PIED DE PAGE — noir & blanc NYT, plus aucun vert ni or
   ========================================================================= */
.site-footer { background: #fff; border-top: 3px solid var(--ink); }
.footer-grid {
  padding: 42px 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr 1fr;
  gap: 44px;
}
.footer-brand {
  font-family: var(--display); font-weight: 800;
  font-size: 1.9rem; text-transform: none; color: var(--ink); text-decoration: none;
  display: inline-block;
}
.footer-brand b { color: var(--ink); }
.footer-intro p { font-size: 0.84rem; color: var(--muted); max-width: 340px; margin: 13px 0; line-height: 1.5; }
.footer-label {
  font-family: var(--body);
  font-size: 0.66rem; font-weight: 700; color: var(--ink);
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 12px;
  padding-bottom: 7px; border-bottom: 1px solid var(--line);
}
.footer-grid a {
  display: block; text-decoration: none;
  font-family: var(--body); font-size: 0.84rem; color: var(--ink-soft); margin: 0 0 8px;
}
.footer-grid a:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
  display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--body); color: var(--muted); font-size: 0.7rem;
}
.footer-bottom a { color: var(--ink); font-weight: 600; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 930px) {
  .brandbar { grid-template-columns: 1fr auto 1fr; min-height: 84px; }
  .main-nav > div { gap: 2px; justify-content: flex-start; overflow-x: auto; }
  .topics-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-list .articles-grid > .story-card:first-child,
  .category-list .articles-grid > .story-card:first-child { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 22px; max-width: 720px; margin-inline: auto; }
  .article-aside { display: flex; gap: 15px; align-items: baseline; }
  .article-aside p { margin: 0; }
  .article-continue > div { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.2fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, var(--shell)); }
  .topline-inner span { display: none; }
  .topline-inner { justify-content: flex-end; }

  /* En-tête mobile : logo centré, hamburger à droite, recherche masquée */
  .brandbar { min-height: 70px; grid-template-columns: 38px 1fr 38px; gap: 12px; padding: 12px 0; }
  .brand { grid-column: 2; font-size: 2.2rem; }
  .brand-claim { display: none; }
  .search-button { display: none; }
  .menu-button { display: block; }

  .main-nav { display: none; }
  .main-nav.is-open { display: block; }
  .main-nav > div {
    width: 100%; flex-direction: column; align-items: flex-start;
    padding: 12px 0; gap: 4px; justify-content: flex-start;
  }
  .main-nav a { font-size: 0.9rem; padding: 9px 0; border-bottom: 0; }

  .search-panel input { width: 100%; }
  .search-panel button { top: auto; bottom: 30px; }

  .home-hero { padding: 32px 0 28px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .home-hero h1, .category-hero h1, .simple-page h1 { font-size: 1.95rem; }

  .featured-wrap .story-card { display: block; }
  .story-card--featured .story-image { margin-bottom: 13px; }
  .story-card--featured .story-image img { height: 190px; min-height: 0; }
  .story-card--featured h3 { font-size: 1.5rem; }
  .story-image img { height: 190px; }

  .articles-grid { grid-template-columns: 1fr; gap: 30px; }
  .topics-grid { grid-template-columns: 1fr 1fr; }

  .section-heading { flex-direction: column; align-items: flex-start; gap: 6px; }

  .article-head { padding-top: 24px; }
  .article-header h1 { font-size: 1.75rem; }
  .article-deck { font-size: 1.02rem; }
  .article-cover { width: calc(100% - 28px); height: 220px; margin-bottom: 26px; }
  .article-layout { padding-bottom: 40px; }
  .article-aside { display: block; }
  .article-aside p { margin: 7px 0 0; }
  .article-body { font-size: 1.08rem; line-height: 1.68; }
  .article-body > p:first-child { font-size: 1.14rem; }
  .article-body h2 { font-size: 1.28rem; }
  .article-body .article-figure img { max-height: 280px; }
  .article-continue { padding: 32px 0; }

  .newsletter-grid { grid-template-columns: 1fr; gap: 26px; }
  .newsletter-row { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (max-width: 420px) {
  .brand { font-size: 2rem; }
  .home-hero h1, .article-header h1 { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
}

/* === INSIGHT221 ARTICLE PUBLISHER START === */
.i221-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  margin: 1.25rem auto 2.5rem;
  padding: clamp(1rem, 2vw, 1.8rem) 0 2rem;
  border-top: 4px solid #111;
  border-bottom: 1px solid #cfcfcf;
}
.i221-featured__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ececec;
}
.i221-featured__label {
  margin: 0 0 .55rem;
  font: 600 .72rem/1.2 Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9b2f2f;
}
.i221-featured h1,
.i221-featured h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.i221-featured__summary {
  margin: 1rem 0;
  color: #444;
  font-size: .98rem;
  line-height: 1.55;
}
.i221-featured__link {
  color: inherit;
  text-decoration: none;
}
.i221-featured__link:hover h1,
.i221-featured__link:hover h2 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .15em;
}
.article-page {
  width: min(100% - 2rem, 820px);
  margin: 2rem auto 5rem;
}
.article-page .article-header {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 1.25rem;
}
.article-page .article-header h1 {
  max-width: none !important;
  margin: .3rem 0 1rem;
}
.article-page .article-deck {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #4a4a4a;
}
.article-page .article-body p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 0 0 1.35rem;
}
.article-page .article-body h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.22;
  margin: 2.2rem 0 .85rem;
}
.article-figure {
  margin: 2rem 0;
}
.article-figure img,
.article-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.article-figure figcaption,
.article-cover figcaption {
  margin-top: .55rem;
  color: #666;
  font: .78rem/1.45 Arial, sans-serif;
}
.article-source {
  font-size: .84rem !important;
  line-height: 1.55 !important;
  color: #4f4f4f;
}
@media (max-width: 760px) {
  .i221-featured {
    grid-template-columns: 1fr;
  }
}
/* === INSIGHT221 ARTICLE PUBLISHER END === */
