/* ═══════════════════════════════════════════════════════════════
   SOUVERAIN CMS — Design System Tricolore Français
   Couleurs : Bleu #002395 | Blanc | Rouge #ED2939
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bleu:    #002395;
  --rouge:   #ED2939;
  --blanc:   #ffffff;
  --dark:    #0d1117;
  --dark2:   #161b22;
  --dark3:   #1f2937;
  --text:    #e5e7eb;
  --text2:   #9ca3af;
  --border:  #2d3748;
  --primary: #002395;
  --accent:  #ED2939;
  --violet:  #7c3aed;
  --green:   #059669;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.35);
  --font:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-size: 16px;
}
/* ── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size); scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--dark); color: var(--text); font-family: var(--font); line-height: 1.65; overflow-x: hidden; width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
button { font-family: var(--font); cursor: pointer; }
/* ── ACCESSIBILITÉ — MODES ──────────────────────────────────────────── */
body.high-contrast {
  --dark: #000000; --dark2: #111111; --dark3: #1a1a1a;
  --text: #ffffff; --text2: #ffff00; --border: #ffffff;
  filter: contrast(1.3);
}
body.dyslexia-font { --font: 'OpenDyslexic', 'Comic Sans MS', cursive; }
/* ── UTILITAIRES ────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--bleu); color: white; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; transition: all .25s; border: none; }
.btn-primary:hover { background: #0033cc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,35,149,.4); text-decoration: none; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: transparent; color: var(--text); border: 2px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: all .25s; }
.btn-secondary:hover { border-color: var(--bleu); color: #60a5fa; text-decoration: none; }
.btn-full { width: 100%; justify-content: center; }
/* ── HEADER ─────────────────────────────────────────────────────────── */
.site-header { background: var(--dark2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; } 
.header-top { background: transparent; }
.tricolor-bar { display: flex; height: 4px; }
.tricolor-bar span:nth-child(1) { flex: 1; background: var(--bleu); }
.tricolor-bar span:nth-child(2) { flex: 1; background: var(--blanc); }
.tricolor-bar span:nth-child(3) { flex: 1; background: var(--rouge); }
.header-inner { display: flex; align-items: center; gap: 16px; padding: 10px 20px; position: relative; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { font-size: 1.6rem; }
.logo-name { font-size: 1.05rem; font-weight: 900; color: white; letter-spacing: -.5px; }
.logo-tagline { font-size: 0.65rem; color: var(--text2); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; overflow: hidden; }
.nav-link { padding: 6px 10px; border-radius: 6px; color: var(--text2); font-size: 0.82rem; font-weight: 500; white-space: nowrap; transition: all .2s; }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.08); color: white; text-decoration: none; }
.nav-handicap { color: #a78bfa !important; }
.nav-handicap:hover, .nav-handicap.active { background: rgba(124,58,237,.2) !important; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.search-form { display: flex; align-items: center; background: var(--dark3); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.search-form input { background: none; border: none; color: var(--text); padding: 7px 12px; font-size: 0.85rem; outline: none; width: 150px; }
.search-form button { background: var(--bleu); border: none; color: white; padding: 7px 11px; font-size: 0.95rem; }
.accessibility-btn { background: rgba(124,58,237,.2); border: 1px solid #7c3aed; color: #a78bfa; padding: 7px 10px; border-radius: 8px; font-size: 0.95rem; transition: all .2s; }
.accessibility-btn:hover { background: rgba(124,58,237,.4); }
.hamburger { display: none; background: none; border: 1px solid var(--border); color: var(--text); padding: 7px 11px; border-radius: 8px; font-size: 1.1rem; cursor: pointer; line-height: 1; }
/* ── PANEL ACCESSIBILITÉ ────────────────────────────────────────────── */
.accessibility-panel { position: fixed; top: 70px; right: 20px; z-index: 200; background: var(--dark2); border: 1px solid #7c3aed; border-radius: 16px; padding: 24px; width: 300px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.accessibility-panel[hidden] { display: none; }
.a11y-inner h3 { color: #a78bfa; margin-bottom: 16px; font-size: 1rem; }
.a11y-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.a11y-options button { background: var(--dark3); border: 1px solid var(--border); color: var(--text); padding: 10px 8px; border-radius: 8px; font-size: 0.85rem; transition: all .2s; }
.a11y-options button:hover { border-color: #7c3aed; background: rgba(124,58,237,.15); }
.a11y-close { width: 100%; background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; padding: 10px; border-radius: 8px; font-size: 0.9rem; }
/* ── HERO ───────────────────────────────────────────────────────────── */
.hero { background: var(--dark2); border-bottom: 1px solid var(--border); padding: 40px 0; }
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.hero-main { position: relative; }
.hero-img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }
.hero-content { margin-top: 20px; }
.hero-title { font-size: 2rem; font-weight: 900; line-height: 1.25; margin: 12px 0; }
.hero-title a:hover { color: #60a5fa; text-decoration: none; }
.hero-excerpt { color: var(--text2); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.hero-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text2); font-size: 0.85rem; margin-bottom: 20px; }
.btn-lire { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--bleu); color: white; border-radius: 8px; font-weight: 700; transition: all .25s; }
.btn-lire:hover { background: var(--rouge); text-decoration: none; transform: translateX(4px); }
.hero-side { display: flex; flex-direction: column; gap: 20px; }
.hero-side-item { display: flex; gap: 14px; padding: 16px; background: var(--dark3); border-radius: 12px; transition: transform .2s; }
.hero-side-item:hover { transform: translateX(4px); }
.hero-side-item img { width: 100px; height: 70px; object-fit: contain; background: #0d1117; border-radius: 8px; flex-shrink: 0; }
.hero-side-item h2 { font-size: 0.95rem; font-weight: 700; line-height: 1.4; margin: 4px 0 6px; }
.hero-side-item h2 a:hover { color: #60a5fa; text-decoration: none; }
.side-meta { font-size: 0.8rem; color: var(--text2); }
/* ── BANNIÈRE HANDICAP ──────────────────────────────────────────────── */
.handicap-banner { background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%); padding: 32px 0; }
.handi-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.handi-tag { display: inline-block; background: rgba(255,255,255,.2); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; letter-spacing: 1px; margin-bottom: 12px; }
.handi-inner h2 { font-size: 1.4rem; font-weight: 900; color: white; margin-bottom: 8px; }
.handi-inner p { color: rgba(255,255,255,.85); font-size: 0.95rem; max-width: 600px; }
.btn-handi { display: inline-flex; align-items: center; padding: 14px 28px; background: white; color: #6d28d9; border-radius: 12px; font-weight: 700; white-space: nowrap; transition: all .25s; flex-shrink: 0; }
.btn-handi:hover { background: #f3e8ff; transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
/* ── LAYOUT PRINCIPAL ───────────────────────────────────────────────── */
.main-content { padding: 48px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
/* ── ARTICLES GRID ──────────────────────────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-header h2 { font-size: 1.4rem; font-weight: 800; }
.results-count { color: var(--text2); font-size: 0.9rem; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
.article-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all .25s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(0,35,149,.5); }
.card-img-link { display: block; }
.card-img { width: 100%; height: 180px; object-fit: contain; background: #0d1117; display: block; }
.card-img-placeholder { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.card-body { padding: 20px; }
.cat-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; color: white; margin-bottom: 10px; }
.cat-badge-sm { display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; font-weight: 600; margin-bottom: 6px; }
.card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.card-title a:hover { color: #60a5fa; text-decoration: none; }
.card-excerpt { color: var(--text2); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.card-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text2); }
.a11y-badge { background: rgba(124,58,237,.2); color: #a78bfa; padding: 2px 8px; border-radius: 999px; font-size: 0.72rem; }
/* ── SIDEBAR ────────────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--dark2); border: 1px solid var(--border); border-radius: 16px; padding: 22px; margin-bottom: 20px; }
.widget-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text2); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cat-list { list-style: none; }
.cat-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; transition: all .2s; color: var(--text2); font-size: 0.9rem; }
.cat-item:hover, .cat-item.active { background: rgba(255,255,255,.06); color: white; text-decoration: none; }
.cat-emoji { font-size: 1.1rem; flex-shrink: 0; }
.cat-name { flex: 1; }
.cat-count { background: var(--dark3); padding: 2px 8px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.cat-arrow { color: var(--text2); }
.cat-handicap { color: #a78bfa !important; }
.cat-handicap:hover { background: rgba(124,58,237,.15) !important; }
.petition-mini { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.petition-mini:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.petition-mini a { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 8px; }
.petition-bar { height: 6px; background: var(--dark3); border-radius: 999px; overflow: hidden; margin-bottom: 4px; }
.petition-fill { height: 100%; background: linear-gradient(90deg, var(--bleu), var(--rouge)); border-radius: 999px; }
.petition-mini small { color: var(--text2); font-size: 0.78rem; }
.widget-cta { background: linear-gradient(135deg, #002395 0%, #0033cc 100%); border-color: rgba(255,255,255,.1); }
.widget-cta h3 { color: white; font-size: 1rem; margin-bottom: 8px; }
.widget-cta p { color: rgba(255,255,255,.8); font-size: 0.88rem; margin-bottom: 16px; }
.widget-cta .btn-primary { background: white; color: var(--bleu); }
/* ── BREADCRUMB ─────────────────────────────────────────────────────── */
.breadcrumb { background: var(--dark3); border-bottom: 1px solid var(--border); padding: 10px 20px; font-size: 0.85rem; color: var(--text2); }
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: #60a5fa; }
/* ── ARTICLE COMPLET ────────────────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.article-header { margin-bottom: 28px; }
.article-title { font-size: 2.2rem; font-weight: 900; line-height: 1.25; margin: 14px 0 16px; }
.article-lead { font-size: 1.15rem; color: var(--text2); line-height: 1.7; border-left: 4px solid var(--bleu); padding-left: 20px; margin-bottom: 24px; }
.article-meta-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.meta-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-initials { width: 44px; height: 44px; border-radius: 50%; background: var(--bleu); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.author-name { display: block; font-weight: 700; font-size: 0.95rem; }
.article-date { font-size: 0.82rem; color: var(--text2); }
.meta-stats { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.83rem; color: var(--text2); }
.a11y-score { padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.a11y-score-good { background: rgba(5,150,105,.2); color: #34d399; }
.a11y-score-medium { background: rgba(217,119,6,.2); color: #fbbf24; }
.a11y-score-low { background: rgba(220,38,38,.2); color: #f87171; }
.article-figure { margin-bottom: 32px; }
.article-img { width: 100%; border-radius: 16px; max-height: 500px; object-fit: contain; background: #0d1117; }
.article-figure figcaption { text-align: center; color: var(--text2); font-size: 0.83rem; margin-top: 8px; font-style: italic; }
.article-content { font-size: 1.08rem; line-height: 1.8; color: #d1d5db; }
.article-content h2 { font-size: 1.5rem; font-weight: 800; color: white; margin: 36px 0 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-content h3 { font-size: 1.2rem; font-weight: 700; color: white; margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 28px; margin-bottom: 18px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote { border-left: 4px solid var(--bleu); padding: 16px 24px; background: rgba(0,35,149,.1); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: #93c5fd; }
.article-content a { color: #60a5fa; text-decoration: underline; }
.article-content img { border-radius: 12px; margin: 20px 0; }
.article-content strong { color: white; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.tag { background: var(--dark3); border: 1px solid var(--border); color: var(--text2); padding: 4px 14px; border-radius: 999px; font-size: 0.82rem; transition: all .2s; }
.tag:hover { border-color: var(--bleu); color: #60a5fa; text-decoration: none; }
.share-section { margin-top: 32px; padding: 24px; background: var(--dark3); border-radius: 16px; }
.share-title { font-weight: 700; margin-bottom: 14px; }
.share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn { padding: 10px 18px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; transition: all .2s; border: none; cursor: pointer; }
.share-twitter  { background: #000; color: white; }
.share-facebook { background: #1877f2; color: white; }
.share-telegram { background: #0088cc; color: white; }
.share-copy     { background: var(--dark2); color: var(--text); border: 1px solid var(--border); }
.share-btn:hover { opacity: .85; transform: translateY(-2px); }
.author-bio-box { display: flex; gap: 16px; margin-top: 32px; padding: 20px; background: var(--dark3); border-radius: 16px; border: 1px solid var(--border); }
.author-bio-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio-box strong { display: block; margin-bottom: 6px; color: white; }
.author-bio-box p { font-size: 0.9rem; color: var(--text2); }
.related-item { display: flex; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; margin-bottom: 0; }
.related-item img { width: 70px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.related-item a { font-size: 0.87rem; font-weight: 600; line-height: 1.4; display: block; }
.related-item small { color: var(--text2); font-size: 0.78rem; }
/* ── PAGE HANDICAP ──────────────────────────────────────────────────── */
.handicap-hero { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%); padding: 80px 0; text-align: center; }
.hh-tag { display: inline-block; background: rgba(255,255,255,.15); color: #ddd6fe; font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; letter-spacing: 2px; margin-bottom: 20px; }
.hh-content h1 { font-size: 3rem; font-weight: 900; color: white; line-height: 1.2; margin-bottom: 20px; }
.hh-lead { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 700px; margin: 0 auto 40px; }
.hh-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hh-stat { text-align: center; }
.hh-stat-num { display: block; font-size: 2.5rem; font-weight: 900; color: #c4b5fd; }
.hh-stat-label { display: block; font-size: 0.82rem; color: rgba(255,255,255,.7); max-width: 140px; }
.handi-revolutions { padding: 80px 0; }
.section-title { font-size: 1.8rem; font-weight: 900; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text2); margin-bottom: 48px; font-size: 1.05rem; }
.revolutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.revolution-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all .25s; }
.revolution-card:hover { border-color: #7c3aed; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,58,237,.2); }
.rev-icon { font-size: 2.5rem; margin-bottom: 14px; }
.revolution-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; color: white; }
.revolution-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }
.rev-market { background: rgba(5,150,105,.1); border: 1px solid rgba(5,150,105,.3); color: #34d399; padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 10px; }
.rev-france { background: rgba(0,35,149,.1); border-left: 3px solid var(--bleu); padding: 8px 14px; font-size: 0.83rem; color: #93c5fd; border-radius: 0 8px 8px 0; }
.handi-propositions { padding: 80px 0; background: var(--dark2); }
.propositions-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.proposition { display: flex; gap: 24px; align-items: flex-start; padding: 28px; background: var(--dark3); border-radius: 16px; border: 1px solid var(--border); transition: all .25s; }
.proposition:hover { border-color: var(--bleu); }
.prop-num { font-size: 3rem; font-weight: 900; color: var(--bleu); opacity: .4; flex-shrink: 0; line-height: 1; }
.prop-content h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: white; }
.prop-content p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.prop-impact { background: rgba(237,41,57,.08); border-left: 3px solid var(--rouge); padding: 8px 14px; font-size: 0.85rem; color: #fca5a5; border-radius: 0 8px 8px 0; }
.handi-articles { padding: 80px 0; }
.handicap-cta { background: linear-gradient(135deg, #002395 0%, #ED2939 100%); padding: 80px 0; text-align: center; }
.hcta-inner h2 { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 14px; }
.hcta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 32px; }
.hcta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hcta-btns .btn-primary { background: white; color: var(--bleu); }
.hcta-btns .btn-secondary { border-color: rgba(255,255,255,.4); color: white; }
/* ── PAGINATION ─────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 10px 16px; border-radius: 8px; font-size: 0.9rem; border: 1px solid var(--border); color: var(--text2); transition: all .2s; }
.pagination a:hover { border-color: var(--bleu); color: #60a5fa; text-decoration: none; }
.pagination .current { background: var(--bleu); color: white; border-color: var(--bleu); }
/* ── EMPTY STATE ────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 4rem; margin-bottom: 20px; }
.empty-state h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--text2); margin-bottom: 24px; }
/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .footer-logo { font-size: 1.2rem; font-weight: 900; color: white; margin-bottom: 10px; }
.footer-brand p { color: var(--text2); font-size: 0.9rem; margin-bottom: 12px; }
.footer-flags { font-size: 0.82rem; color: var(--text2); }
.footer-links h4 { color: white; font-weight: 700; margin-bottom: 14px; font-size: 0.9rem; }
.footer-links a { display: block; color: var(--text2); font-size: 0.88rem; margin-bottom: 8px; transition: color .2s; }
.footer-links a:hover { color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; color: var(--text2); font-size: 0.85rem; }
.btn-a11y-footer { background: rgba(124,58,237,.2); border: 1px solid #7c3aed; color: #a78bfa; padding: 8px 16px; border-radius: 8px; font-size: 0.83rem; margin-top: 10px; transition: all .2s; }
.btn-a11y-footer:hover { background: rgba(124,58,237,.4); }
/* ── SOUVERAINE VOIX™ — Accessibilité Audio ─────────────────────────── */
/* Highlight de l'élément en cours de lecture */
.sv-reading {
  outline: 2px solid #a78bfa !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
  background: rgba(124,58,237,.10) !important;
  transition: outline .15s, background .15s !important;
}
/* HUD Waveform — fixé en bas à droite */
#sv-hud {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,17,23,.95);
  border: 1px solid #7c3aed;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(124,58,237,.35);
  max-width: 340px;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
#sv-hud.sv-hud-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sv-hud-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sv-hud-icon { font-size: 1.1rem; }
.sv-hud-bars { display: flex; align-items: flex-end; gap: 2px; height: 28px; }
.sv-hud-bar {
  display: block;
  width: 4px;
  height: 3px;
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
  border-radius: 2px;
  transition: height .05s ease;
}
.sv-hud-txt {
  flex: 1;
  font-size: 0.78rem;
  color: #c4b5fd;
  line-height: 1.35;
  word-break: break-word;
}
.sv-hud-stop {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.sv-hud-stop:hover { background: rgba(239,68,68,.35); }
/* Boutons actifs dans le panel a11y */
.sv-btn-on {
  background: rgba(124,58,237,.35) !important;
  border-color: #7c3aed !important;
  color: #c4b5fd !important;
  box-shadow: 0 0 0 2px rgba(124,58,237,.25) !important;
}
/* Curseur de vitesse */
.sv-speed {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(124,58,237,.2);
}
.sv-speed-label { display: block; font-size: 0.78rem; color: #a78bfa; margin-bottom: 6px; font-weight: 600; }
.sv-speed-ctrl { display: flex; align-items: center; gap: 10px; }
.sv-speed-ctrl input[type=range] { flex: 1; accent-color: #7c3aed; cursor: pointer; }
#sv-speed-val { font-size: 0.78rem; color: #c4b5fd; min-width: 28px; text-align: right; font-weight: 700; }
/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark2);
    border-bottom: 2px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
  }
  .main-nav.open .nav-link {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    width: 100%;
  }
  .main-nav.open .nav-link:last-child { border-bottom: none; }
  .search-form input { width: 110px; }
  .logo-tagline { display: none; }
  .handi-inner { flex-direction: column; text-align: center; }
  .hh-content h1 { font-size: 2rem; }
  .hh-stats { gap: 24px; }
  .revolutions-grid { grid-template-columns: 1fr; }
  .proposition { flex-direction: column; gap: 8px; }
  .prop-num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-grid .footer-links { justify-content: center; }
  .site-footer .footer-bottom { text-align: center; }
  .site-footer address { text-align: center; }
  .article-title { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .header-inner { gap: 8px; padding: 8px 10px; }
  .search-form input { width: 80px; padding: 6px 8px; font-size: 0.78rem; }
  .search-form button { padding: 6px 9px; font-size: 0.85rem; }
  .accessibility-btn { padding: 6px 8px; font-size: 0.85rem; }
  .hamburger { padding: 6px 8px; font-size: 1rem; }
  .logo-name { font-size: 0.92rem; }
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.6rem; }
  .article-title { font-size: 1.35rem; }
  .hh-content h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
  .footer-grid { gap: 20px; }
  .btn-primary, .btn-secondary { padding: 10px 18px; font-size: 0.88rem; }
  .sidebar { display: none; }
}
@media (max-width: 400px) {
  .search-form { display: none; }
  .header-inner { gap: 6px; padding: 8px; }
  .logo-name { font-size: 0.85rem; }
}
