/* ══════════════════════════════════════════════════════
   SENCE — MÉDIA FRANÇAIS
   Palette : Noir / Blanc + couleur par rubrique
   Typo   : Inter
   Esprit : Digital Bold — le texte EST le visuel
   ══════════════════════════════════════════════════════ */

:root {
  --black:   #080808;
  --white:   #F8F7F2;
  --grey:    #8A8A84;
  --border:  rgba(248,247,242,0.09);

  /* Couleurs rubriques */
  --geo:     #1A5CFF;   /* POUVOIRS — bleu électrique */
  --conf:    #FF2B00;   /* CONFLITS — rouge vif       */
  --soc:     #00C96A;   /* SOCIÉTÉ  — vert            */
  --cult:    #9B00E8;   /* CULTURE  — violet          */
  --sport:   #00D45A;   /* legacy alias               */

  --font-display: 'Barlow Condensed', 'Impact';
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:  60px;
  --pad:    clamp(18px, 4vw, 48px);
  --max:    1440px;
}

/* ─── RESET ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--white); color: var(--black); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--white); }

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .3s;
}

.nav {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left  { display: flex; gap: 28px; }
.nav-right { display: flex; gap: 28px; justify-content: flex-end; align-items: center; }

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,247,242,.45);
  transition: color .15s;
}
.nav-link:hover { color: var(--white); }

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  justify-self: center;
}
.logo img { height: 32px; width: auto; display: block; }

.nav-contact {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 6px 18px;
  transition: opacity .15s;
}
.nav-contact:hover { opacity: .8; }

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  justify-self: end;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 199;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(32px, 10vw, 64px);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .15s;
  color: var(--white);
}
.mobile-link[data-cat="geo"]   { color: var(--white); }
.mobile-link[data-cat="geo"]:hover   { color: var(--geo); }
.mobile-link[data-cat="soc"]   { color: var(--white); }
.mobile-link[data-cat="soc"]:hover   { color: var(--soc); }
.mobile-link[data-cat="cult"]  { color: var(--white); }
.mobile-link[data-cat="cult"]:hover  { color: var(--cult); }
.mobile-link[data-cat="sport"] { color: var(--white); }
.mobile-link[data-cat="sport"]:hover { color: var(--sport); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 48px) var(--pad) 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Subtle grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--geo);
  border: 1px solid var(--geo);
  padding: 4px 12px;
  border-radius: 3px;
}

.hero-sep { color: var(--border); font-size: 18px; }

.hero-meta {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 150px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  max-width: min(1500px, 86vw);
  position: relative;
  margin-bottom: 48px;
  overflow-wrap: break-word;
}

/* Titre d'article moyen/long — réduit la taille pour rester lisible, sans s'écraser sur grand écran */
.hero-title--md { font-size: clamp(32px, 6vw, 112px); }
.hero-title--sm { font-size: clamp(26px, 4.6vw, 86px); line-height: 1.08; }

/* accent ligne de couleur sur le premier mot (contenu statique de secours) */
.hero-title .accent-word { color: var(--geo); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.hero-desc {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 2;
}

/* .hero-cta utilise maintenant .btn-sence — voir bas de fichier */

/* scroll indicator */
.scroll-hint {
  position: absolute;
  right: var(--pad);
  bottom: 56px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--grey);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.5); }
}

/* ══════════════════════════════════════
   TICKER
   ══════════════════════════════════════ */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }

.tick-segment {
  display: flex;
  align-items: center;
  padding: 12px 0;
  white-space: nowrap;
}
.tick-segment span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 0 24px;
}
.tick-segment .tick-label { color: var(--white); }
.tick-segment .tick-geo   { color: var(--geo); }
.tick-segment .tick-soc   { color: var(--soc); }
.tick-segment .tick-cult  { color: var(--cult); }
.tick-segment .tick-sport { color: var(--sport); }
.tick-segment .tick-dot   { color: var(--border); font-size: 6px; padding: 0 8px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION UTILITY
   ══════════════════════════════════════ */
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 20px;
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.section-index {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}

.section-name {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}

.section-all {
  /* Styles de base hérités de .btn-sence */
  display: inline-flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   UNE — GRILLE ÉDITORIALE
   ══════════════════════════════════════ */
.une-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.une-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto;
  border-top: 1px solid var(--border);
}

.une-main {
  border-right: 1px solid var(--border);
  padding: 40px 40px 40px 0;
}

.une-side {
  display: flex;
  flex-direction: column;
}

.une-card {
  padding: 28px 0 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.une-card:last-child { border-bottom: none; }
.une-card:hover { background: rgba(248,247,242,.03); }

/* Main card */
.article-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(248,247,242,.06);
  margin-bottom: 12px;
}

.cat-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 16px;
  border-radius: 3px;
}
.cat-tag--geo   { color: var(--geo);   border: 1px solid var(--geo); }
.cat-tag--soc   { color: var(--soc);   border: 1px solid var(--soc); }
.cat-tag--conf  { color: var(--conf);  border: 1px solid var(--conf); }
.cat-tag--cult  { color: var(--cult);  border: 1px solid var(--cult); }
.cat-tag--sport { color: var(--sport); border: 1px solid var(--sport); }

.article-title-lg {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.article-title-md {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 20px;
  max-width: 480px;
}

.article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.article-byline {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}

.read-more {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .15s;
}
.read-more:hover { gap: 14px; }
.read-more--geo   { color: var(--geo); }
.read-more--soc   { color: var(--soc); }
.read-more--cult  { color: var(--cult); }
.read-more--sport { color: var(--sport); }

/* ══════════════════════════════════════
   GÉOPOLITIQUE
   ══════════════════════════════════════ */
.geo-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.geo-section .section-name { color: var(--geo); }

.geo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.geo-item {
  padding: 32px 32px 32px 32px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.geo-item:last-child { border-right: none; }
.geo-item:hover { background: rgba(26,92,255,.04); }
.geo-item:first-child { padding-left: 0; }

.geo-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(26,92,255,.12);
  line-height: 1;
  margin-bottom: 16px;
}

.geo-region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--geo);
  margin-bottom: 10px;
}

.geo-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.geo-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 20px;
}

/* Fond blanc pour la section Pouvoirs */
.geo-section {
  background: var(--white);
}
.geo-section .section-head {
  border-bottom-color: rgba(8,8,8,.1);
}
.geo-section .section-index {
  color: rgba(8,8,8,.4);
}
.geo-section .geo-list {
  border-top-color: rgba(8,8,8,.1);
}
.geo-section .geo-item {
  border-right-color: rgba(8,8,8,.1);
}
.geo-section .geo-title {
  color: var(--black);
}
.geo-section .geo-excerpt {
  color: rgba(8,8,8,.55);
}
.geo-section .article-byline {
  color: rgba(8,8,8,.45);
}
.geo-section {
  border-bottom-color: rgba(8,8,8,.1);
}

/* ══════════════════════════════════════
   SOCIÉTÉ — PLEINE LARGEUR TYPOGRAPHIQUE
   ══════════════════════════════════════ */
.soc-section {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.soc-section .section-name { color: var(--soc); }

.soc-hero {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.soc-big-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  line-height: .87;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 56px;
}
.soc-big-title em {
  font-style: italic;
  color: var(--soc);
  font-size: .85em;
}

.soc-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.soc-article {
  padding: 32px 40px 36px 32px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.soc-article:last-child { border-right: none; padding-right: 0; }
.soc-article:first-child { padding-left: 0; }
.soc-article:hover { background: rgba(255,43,0,.04); }

.soc-index {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,43,0,.12);
  margin-bottom: 12px;
  line-height: 1;
}

.soc-theme {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soc);
  margin-bottom: 10px;
  display: block;
}

.soc-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.soc-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════
   CULTURE
   ══════════════════════════════════════ */
.cult-section {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
}
.cult-section .section-name  { color: var(--cult); }
.cult-section .section-index { color: rgba(0,0,0,.35); }
.cult-section .section-all   { color: rgba(0,0,0,.35); }
.cult-section .section-all:hover { color: var(--black); }
.cult-section .section-head { border-bottom-color: rgba(0,0,0,.09); }

.cult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,.09);
}

.cult-item {
  padding: 32px 28px 32px 0;
  border-right: 1px solid rgba(0,0,0,.09);
  transition: background .2s;
}
.cult-item:last-child { border-right: none; }
.cult-item:hover { background: rgba(155,0,232,.04); }

.cult-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(155,0,232,.1);
  line-height: 1;
  margin-bottom: 12px;
}

.cult-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cult);
  margin-bottom: 10px;
}

.cult-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cult-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(0,0,0,.5);
  margin-bottom: 20px;
}

.cult-byline {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
}

.cult-read {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cult);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .15s;
}
.cult-read:hover { gap: 14px; }

/* ══════════════════════════════════════
   SPORT
   ══════════════════════════════════════ */
.sport-section {
  border-bottom: 1px solid var(--border);
}
.sport-section .section-name { color: var(--sport); }

/* Giant running marquee */
.sport-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRun 18s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.m-word {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 28px;
  color: rgba(248,247,242,.08);
}
.m-word:hover { color: var(--sport); }
.m-sep {
  font-size: 10px;
  color: var(--sport);
  align-self: center;
  padding: 0 4px;
}

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sport-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.sport-item {
  padding: 32px 36px 36px 32px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.sport-item:last-child { border-right: none; padding-right: 0; }
.sport-item:first-child { padding-left: 0; }
.sport-item:hover { background: rgba(0,212,90,.04); }

.sport-disc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sport);
  margin-bottom: 12px;
  display: block;
}

.sport-title-lg {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}

.sport-title-sm {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 12px;
}

.sport-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════
   CHIFFRE DE LA SEMAINE
   ══════════════════════════════════════ */
.stat-section {
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.stat-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-top: 1px solid var(--border);
}

.stat-big {
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  padding: 40px var(--pad) 40px 0;
  border-right: 1px solid var(--border);
  letter-spacing: -.02em;
}

.stat-detail {
  padding: 40px var(--pad);
}

.stat-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--geo);
  margin-bottom: 16px;
}

.stat-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 500px;
}

.stat-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--geo);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .15s;
}
.stat-link:hover { gap: 14px; }

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.newsletter {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
}

.nl-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nl-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--geo);
  margin-bottom: 16px;
}

.nl-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .9;
  color: var(--black);
  margin-bottom: 20px;
}

.nl-sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,.5);
}

.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-row  { display: flex; }

.nl-input {
  flex: 1;
  border: 1px solid rgba(0,0,0,.15);
  border-right: none;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .06em;
  background: transparent;
  color: var(--black);
  outline: none;
  transition: border-color .15s;
}
.nl-input::placeholder { color: rgba(0,0,0,.3); }
.nl-input:focus { border-color: var(--geo); }

.nl-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 15px 28px;
  background: var(--black);
  color: var(--white);
  white-space: nowrap;
  transition: background .2s;
}
.nl-btn:hover { background: var(--geo); }

.nl-legal {
  font-size: 11px;
  color: rgba(0,0,0,.3);
  line-height: 1.6;
}

.nl-success {
  display: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--geo);
}
.nl-success.show { display: block; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-section {
  border-bottom: 1px solid var(--border);
}

.ct-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.ct-big {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .87;
  letter-spacing: -.01em;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}

.ct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.ct-block {
  padding: 36px 32px 36px 32px;
  border-right: 1px solid var(--border);
}
.ct-block:last-child { border-right: none; padding-right: 0; }
.ct-block:first-child { padding-left: 0; }

.ct-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.ct-value {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .15s;
}
.ct-value:hover { color: var(--geo); }

.ct-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-social {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s, background .15s;
}
.ct-social:hover { border-color: var(--white); background: var(--white); color: var(--black); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 56px var(--pad) 40px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.ft-logo {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ft-logo img { height: 28px; width: auto; display: block; }

.ft-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.ft-col { display: flex; flex-direction: column; gap: 8px; }

.ft-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.ft-col a {
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(248,247,242,.4);
  transition: color .15s;
}
.ft-col a:hover { color: var(--white); }

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad) 20px;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Giant wordmark */
.ft-wordmark {
  font-family: var(--font-display);
  font-size: clamp(96px, 20vw, 280px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: rgba(248,247,242,.025);
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
  user-select: none;
  pointer-events: none;
}

/* ══════════════════════════════════════
   IMAGES ARTICLES
   ══════════════════════════════════════ */
.article-img {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.article-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,120,120,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,120,120,.28) 1px, transparent 1px),
    linear-gradient(var(--img-tint, rgba(26,26,24,.22)), var(--img-tint, rgba(26,26,24,.22)));
  background-size: 80px 80px, 80px 80px, cover;
  background-repeat: repeat, repeat, no-repeat;
  pointer-events: none;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.une-main:hover .article-img img { transform: scale(1.03); }

.cult-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.cult-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,120,120,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,120,120,.28) 1px, transparent 1px),
    linear-gradient(var(--img-tint, rgba(155,0,232,.22)), var(--img-tint, rgba(155,0,232,.22)));
  background-size: 80px 80px, 80px 80px, cover;
  background-repeat: repeat, repeat, no-repeat;
  pointer-events: none;
}
.cult-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.cult-item:hover .cult-img img { transform: scale(1.04); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .cult-grid { grid-template-columns: 1fr 1fr; }
  .ct-grid   { grid-template-columns: 1fr 1fr; }
  .ct-block  { padding: 28px 24px 28px 0; }
}

@media (max-width: 900px) {
  .une-grid     { grid-template-columns: 1fr; }
  .une-main     { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .une-card     { padding: 24px 0; }
  .geo-list     { grid-template-columns: 1fr; }
  .geo-item     { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; }
  .soc-articles { grid-template-columns: 1fr; }
  .soc-article  { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; }
  .sport-grid   { grid-template-columns: 1fr; }
  .sport-item   { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; }
  .nl-inner     { grid-template-columns: 1fr; gap: 40px; }
  .ft-top       { flex-direction: column; gap: 32px; }
  .ft-nav       { gap: 32px; }
  .stat-inner   { grid-template-columns: 1fr; }
  .stat-big     { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .stat-detail  { padding: 32px 0; }
}

@media (max-width: 680px) {
  .nav-left, .nav-right { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .logo { justify-self: start; }
  .menu-toggle { display: flex; }
  .cult-grid  { grid-template-columns: 1fr; }
  .ct-grid    { grid-template-columns: 1fr; }
  .ft-bottom  { flex-direction: column; gap: 6px; text-align: center; }
  .hero-title { font-size: clamp(34px, 11vw, 64px); }
  .hero-title--md { font-size: clamp(26px, 8vw, 46px); }
  .hero-title--sm { font-size: clamp(20px, 6vw, 34px); }
  .soc-big-title { font-size: clamp(64px, 16vw, 120px); }
  .nl-row { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(0,0,0,.15); border-bottom: none; }
  .section-head { grid-template-columns: auto 1fr; }
  .section-all  { display: none; }
}

/* ══════════════════════════════════════
   ANIMATIONS SCROLL
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   BOUTON SENCE — dual-tone (image ref)
   Structure : <a class="btn-sence btn-sence--xxx">
                 <span class="btn-label">Texte</span>
                 <span class="btn-icon">→</span>
               </a>
   ══════════════════════════════════════ */
.btn-sence {
  display: inline-flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  background: var(--white);
  border: none;
  transition: background .22s, color .22s;
  --_accent: var(--geo);
}
.btn-sence--pouvoirs { --_accent: var(--geo);  }
.btn-sence--conflits { --_accent: var(--conf); }
.btn-sence--societe  { --_accent: var(--soc);  }
.btn-sence--culture  { --_accent: var(--cult); }

.btn-sence .btn-label {
  padding: 12px 20px;
  color: var(--black);
  font-size: 13px;
  align-self: center;
  transition: color .22s;
}

.btn-sence .btn-icon {
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--_accent);
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  transition: background .22s;
}

.btn-sence:hover {
  background: var(--_accent);
}
.btn-sence:hover .btn-label { color: var(--black); }
.btn-sence:hover .btn-icon  { background: rgba(0,0,0,.14); }

/* Variante large (hero) */
.btn-sence--lg .btn-label { padding: 16px 28px; font-size: 15px; }
.btn-sence--lg .btn-icon  { min-width: 56px; font-size: 22px; }

/* Sur fond clair */
.btn-sence--on-light {
  background: var(--black);
}
.btn-sence--on-light .btn-label { color: var(--white); }
.btn-sence--on-light:hover { background: var(--_accent); }
.btn-sence--on-light:hover .btn-label { color: var(--black); }

/* ══════════════════════════════════════
   BOUTON RECHERCHE NAV
   ══════════════════════════════════════ */
.nav-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(248,247,242,.42);
  transition: color .15s;
  flex-shrink: 0;
}
.nav-search-btn:hover { color: var(--white); }

.mobile-search-link {
  color: rgba(248,247,242,.5) !important;
  font-size: clamp(28px, 7vw, 52px) !important;
  text-align: left;
  width: 100%;
}

/* ══════════════════════════════════════
   MODAL RECHERCHE SÉMANTIQUE
   ══════════════════════════════════════ */
.sence-search-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 16px 40px;
}
.sence-search-modal.open { display: flex; }

.ssm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: ssmFade .16s ease;
}
@keyframes ssmFade { from { opacity: 0; } to { opacity: 1; } }

.ssm-panel {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: #141413;
  border: 1px solid rgba(248,247,242,.1);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  animation: ssmSlide .22s cubic-bezier(.22,1,.36,1);
}
@keyframes ssmSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

.ssm-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(248,247,242,.07);
  flex-shrink: 0;
}
.ssm-icon { color: rgba(248,247,242,.28); flex-shrink: 0; }

.ssm-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
}
.ssm-input::placeholder { color: rgba(248,247,242,.22); }
.ssm-input::-webkit-search-cancel-button { display: none; }

.ssm-kbd {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(248,247,242,.28);
  border: 1px solid rgba(248,247,242,.14);
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

.ssm-body {
  overflow-y: auto;
  padding: 20px 20px 24px;
  flex: 1;
}

.ssm-hint {
  font-size: 12px;
  color: rgba(248,247,242,.35);
  line-height: 1.65;
  margin-bottom: 20px;
  border-left: 2px solid rgba(248,247,242,.1);
  padding-left: 12px;
}

.ssm-chips-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(248,247,242,.25);
  display: block;
  margin-bottom: 10px;
}

.ssm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.ssm-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,247,242,.65);
  border: 1px solid rgba(248,247,242,.14);
  padding: 4px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .12s, color .12s, background .12s;
}
.ssm-chip:hover { border-color: rgba(248,247,242,.45); color: var(--white); }
.ssm-chip--sm { font-size: 11px; padding: 3px 10px; }

.ssm-related {
  margin-bottom: 18px;
}
.ssm-related-label {
  font-size: 11px;
  color: rgba(248,247,242,.32);
  display: block;
  margin-bottom: 8px;
}

.ssm-count {
  font-size: 11px;
  color: rgba(248,247,242,.35);
  margin-bottom: 12px;
  letter-spacing: .06em;
}
.ssm-count strong { color: var(--white); font-weight: 700; }
.ssm-count em { font-style: normal; color: rgba(248,247,242,.6); }

.ssm-list { display: flex; flex-direction: column; }

.ssm-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(248,247,242,.06);
  transition: opacity .12s;
}
.ssm-item:last-child { border-bottom: none; }
.ssm-item:hover { opacity: .7; }

.ssm-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.ssm-item-cat {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ssm-item-type,
.ssm-item-rt {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248,247,242,.28);
}

.ssm-item-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 5px;
}

.ssm-item-excerpt {
  font-size: 12px;
  color: rgba(248,247,242,.38);
  line-height: 1.6;
}

.ssm-empty {
  padding: 20px 0;
  font-size: 14px;
  color: rgba(248,247,242,.45);
  line-height: 1.7;
}
.ssm-empty strong { color: var(--white); }
.ssm-empty-sub { font-size: 12px; color: rgba(248,247,242,.28); margin-top: 6px; }

@media (max-width: 680px) {
  .sence-search-modal { padding: 0; align-items: flex-start; }
  .ssm-panel { max-height: 100vh; border-radius: 0; border-left: none; border-right: none; border-top: none; }
}

/* ── Éléments UI → Inter (nav, boutons, labels, chips) ─── */
.nav-link,
.nav-contact,
.tick-segment span,
.section-index,
.read-more,
.cult-read,
.stat-link,
.nl-btn,
.ct-social,
.btn-sence,
.ssm-chips-label,
.ssm-item-cat { font-family: var(--font-body); }

/* ══════════════════════════════════════
   EMBEDS — YouTube / X (Twitter)
   Partagé entre .art-body (article) et .dos-intro-body (dossier)
   ══════════════════════════════════════ */
.art-embed { margin: 36px 0; }

.art-embed--yt {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* ratio 16:9 */
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}
.art-embed--yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Fallback avant hydratation par widgets.js (ou si bloqué) */
.art-body .art-embed--x,
.dos-intro-body .art-embed--x {
  border-left: 3px solid #1D9BF0;
  background: rgba(29,155,240,.06);
  padding: 18px 22px;
  margin: 36px 0;
  max-width: 550px;
}
.art-body .art-embed--x > :not(cite),
.dos-intro-body .art-embed--x > :not(cite) {
  font-style: normal;
  font-size: 14px;
}
.art-body .art-embed--x a,
.dos-intro-body .art-embed--x a { color: #1D9BF0; }

/* ══════════════════════════════════════
   PAGE DOSSIER
   ══════════════════════════════════════ */

/* Hero */
.dos-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 48px) var(--pad) 48px;
  background:
    linear-gradient(rgba(120,120,120,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,120,120,.2) 1px, transparent 1px),
    linear-gradient(rgba(8,8,8,.45), rgba(8,8,8,.55)),
    linear-gradient(var(--page-color, #1A5CFF), var(--page-color, #1A5CFF));
  background-size: 80px 80px, 80px 80px, cover, cover;
  position: relative;
}

.dos-hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.dos-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(248,247,242,.55);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dos-hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.dos-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: .93;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 900px;
}

.dos-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(248,247,242,.72);
  max-width: 640px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.dos-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.dos-hero-count,
.dos-hero-sections {
  font-size: 12px;
  font-weight: 600;
  color: rgba(248,247,242,.55);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Sections nav */
.dos-sections-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.dos-sections-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.dos-sections-nav-inner::-webkit-scrollbar { display: none; }

.dos-section-tab {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(248,247,242,.45);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.dos-section-tab:hover { color: var(--white); }
.dos-section-tab.active {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Intro */
.dos-intro {
  padding: 64px var(--pad);
  border-bottom: 1px solid var(--border);
}
.dos-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}
.dos-intro-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(248,247,242,.88);
}

/* Articles sections */
.dos-articles {
  padding: 48px var(--pad) 80px;
}
.dos-articles-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.dos-section-block { scroll-margin-top: calc(var(--nav-h) + 54px); }

.dos-section-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.dos-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
}
.dos-section-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(248,247,242,.4);
  text-transform: uppercase;
}

/* Cards grid */
.dos-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Article card */
.dos-card {
  display: flex;
  flex-direction: column;
  background: rgba(248,247,242,.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color .2s, background .2s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.dos-card:hover {
  background: rgba(248,247,242,.07);
  border-color: rgba(248,247,242,.18);
}

.dos-card--img .dos-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.dos-card--img .dos-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dos-card:hover .dos-card-img img { transform: scale(1.03); }
.dos-card--img .dos-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,.7));
}

.dos-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dos-card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,247,242,.45);
}

.dos-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--white);
  flex: 1;
}

.dos-card-excerpt {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(248,247,242,.55);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dos-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(248,247,242,.35);
}

.dos-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.dos-empty {
  color: rgba(248,247,242,.4);
  font-style: italic;
  text-align: center;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 600px) {
  .dos-cards-grid { grid-template-columns: 1fr; }
  .dos-hero-title { font-size: 2.4rem; }
}
