/* ============================================================
   SolarBrief.Africa — shared stylesheet
   Editorial design system (serif display + Inter body)
   ============================================================ */
:root {
  --navy: #1B2B4A;
  --navy-dark: #0F1D34;
  --amber: #F5A800;
  --amber-light: #FDB813;
  --orange: #E85200;
  --orange-dark: #CC3300;
  --bg: #F5F4EF;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E5E3DC;
  --card-bg: #FFFFFF;
  --green: #16A34A;
  --red: #DC2626;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif-read: 'Lora', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TICKER ── */
.ticker-bar { background: var(--navy-dark); color: var(--white); font-size: 12.5px; font-weight: 500; padding: 6px 0; overflow: hidden; white-space: nowrap; border-bottom: 2px solid var(--amber); }
.ticker-inner { display: inline-block; animation: ticker 55s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { margin: 0 26px; display: inline-flex; align-items: baseline; gap: 7px; }
.ticker-label { color: rgba(255,255,255,0.6); font-weight: 500; }
.ticker-val { color: var(--white); font-weight: 700; font-variant-numeric: tabular-nums; }
.ticker-up { color: #4ADE80; font-size: 11px; font-weight: 700; }
.ticker-down { color: #F87171; font-size: 11px; font-weight: 700; }
.ticker-flat { color: rgba(255,255,255,0.5); font-size: 11px; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── HEADER ── */
header.site-header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 60px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 34px; width: auto; display: block; }
.footer-logo-img { height: 40px; margin-bottom: 4px; }
/* legacy wordmark (kept for fallback) */
.logo-mark { width: 34px; height: 34px; background: var(--amber); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.logo-word { font-family: var(--serif); font-weight: 800; font-size: 21px; letter-spacing: 0.01em; color: var(--white); line-height: 1; }
.logo-word .tld { color: var(--amber); }
nav.site-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 2px; }
.nav-link { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.nav-live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; margin-right: 6px; vertical-align: middle; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: pulse 2s infinite; }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--amber); }
/* nav dropdown (zones) */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-link .caret { font-size: 8px; margin-left: 5px; opacity: 0.7; }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 230px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 14px 36px rgba(0,0,0,0.20); padding: 8px; display: none; z-index: 200; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 9px 12px; border-radius: 7px; font-size: 13.5px; font-weight: 500; color: var(--text); white-space: nowrap; }
.nav-dropdown a:hover { background: var(--bg); color: var(--orange); }
.nav-dropdown .dd-head { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 6px 12px 4px; }
.header-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.lang-toggle { display: flex; align-items: center; gap: 2px; background: rgba(255,255,255,0.1); border-radius: 20px; padding: 3px 4px; }
.lang-btn { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); padding: 3px 8px; border-radius: 14px; cursor: pointer; transition: all 0.2s; border: none; background: transparent; }
.lang-btn.active { background: var(--amber); color: var(--navy); }
.btn-account { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; padding: 7px 10px; border-radius: 6px; transition: all 0.2s; }
.btn-account:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.btn-subscribe { background: var(--amber); color: var(--navy); font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 6px; white-space: nowrap; transition: background 0.2s; border: none; cursor: pointer; display: inline-block; }
.btn-subscribe:hover { background: var(--amber-light); }

/* ── LAYOUT PRIMITIVES ── */
.section { padding: 44px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.section-title { font-family: var(--sans); font-size: 19px; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.section-title::before { content: ''; width: 4px; height: 20px; background: var(--amber); border-radius: 2px; display: inline-block; }
.see-all { font-size: 13px; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.see-all:hover { gap: 8px; }

/* page header band */
.page-head { background: linear-gradient(140deg, #0A1628 0%, #1B2B4A 45%, #0D2040 75%, #152238 100%); color: var(--white); padding: 40px 24px 44px; position: relative; overflow: hidden; }
.page-head::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 12% 40%, rgba(245,168,0,0.12) 0%, transparent 50%), radial-gradient(ellipse at 88% 30%, rgba(232,82,0,0.08) 0%, transparent 45%); }
.page-head-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-head .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.page-head h1 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.page-head h1 em { font-style: normal; color: var(--amber); }
.page-head .page-sub { color: rgba(255,255,255,0.7); font-size: 15px; margin-top: 12px; max-width: 620px; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--white); }

/* ── TAGS ── */
.tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.tag-pays { background: var(--navy); color: var(--white); }
.tag-industrie { background: var(--amber); color: var(--navy); }
.tag-type { background: #F0EDE5; color: var(--text-muted); }

/* ── CARD TITLES / META ── */
.card-title { font-family: var(--serif-read); font-size: 17px; font-weight: 700; line-height: 1.28; color: var(--text); margin-bottom: 10px; }
.card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.card-meta .author { font-weight: 600; color: var(--text); }
.card-meta .read-time { display: flex; align-items: center; gap: 4px; }

/* ── ARTICLE CARD (grid) ── */
.article-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: box-shadow 0.2s; cursor: pointer; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.article-card img { width: 100%; height: 170px; object-fit: cover; }
.article-card .card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.article-card .card-title { font-size: 16px; }
.article-card .card-meta { margin-top: auto; }

/* ── BUTTONS / FORMS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-light); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-dark:hover { background: var(--navy-dark); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.input, .select, .textarea { width: 100%; padding: 12px 14px; font-size: 14px; font-family: var(--sans); border: 1px solid var(--border); border-radius: 8px; background: var(--white); color: var(--text); outline: none; transition: border-color 0.15s; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--amber); }
.textarea { resize: vertical; min-height: 110px; }
.range { width: 100%; accent-color: var(--amber); }

/* ── CHIPS / FILTERS ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chip { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 20px; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.chip:hover { border-color: var(--navy); color: var(--text); }
.chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.search-box { position: relative; flex: 1; min-width: 220px; }
.search-box input { width: 100%; padding: 11px 14px 11px 40px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: var(--sans); outline: none; }
.search-box input:focus { border-color: var(--amber); }
.search-box::before { content: '🔍'; position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 14px; opacity: 0.6; }

/* ── DEAL BOARD ── */
.data-section { background: var(--navy-dark); color: var(--white); padding: 52px 24px; }
.data-section .section-title { color: var(--white); }
.data-section .section-title::before { background: var(--amber); }
.data-section .see-all { color: var(--amber); }
.live-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #4ADE80; margin-left: 10px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5);} 70%{ box-shadow: 0 0 0 8px rgba(74,222,128,0);} 100%{ box-shadow:0 0 0 0 rgba(74,222,128,0);} }
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.kpi-card { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.08); transition: background 0.2s; }
.kpi-card:hover { background: rgba(255,255,255,0.1); }
.kpi-icon { font-size: 18px; margin-bottom: 10px; }
.kpi-value { font-family: var(--serif); font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.kpi-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.kpi-change { font-size: 12px; font-weight: 600; color: #4ADE80; margin-bottom: 6px; }
.kpi-change.neg { color: #F87171; }
.kpi-desc { font-size: 11px; color: rgba(255,255,255,0.4); }
.deal-board { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 8px 8px 4px; }
.deal-board-head { display:flex; justify-content: space-between; align-items:center; padding: 12px 14px 8px; flex-wrap: wrap; gap: 8px; }
.deal-board-head .dbh-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.deal-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.deal-table th { text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); padding: 8px 14px; }
.deal-table td { padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.07); }
.deal-table tr:hover { background: rgba(255,255,255,0.03); }
.deal-table .d-project { font-weight: 600; color: var(--white); }
.deal-table .d-country { color: rgba(255,255,255,0.6); }
.deal-table .d-amount { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--amber); }
.d-status { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px; border-radius: 10px; white-space: nowrap; }
.d-status.signed { background: rgba(74,222,128,0.15); color: #4ADE80; }
.d-status.talks { background: rgba(245,168,0,0.15); color: var(--amber); }
.d-status.announced { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* bar chart (light or dark) */
.chart-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.bar-chart { display: flex; align-items: flex-end; gap: 14px; height: 180px; }
.bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; background: var(--amber); border-radius: 4px 4px 0 0; transition: opacity 0.2s; }
.bar:hover { opacity: 0.85; }
.bar-val { font-size: 11px; font-weight: 600; color: var(--amber); }
.bar-name { font-size: 11px; color: rgba(255,255,255,0.5); text-align: center; }

/* ── AGENDA ── */
.agenda-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.agenda-card { background: var(--navy); color: var(--white); border-radius: 12px; padding: 22px 22px 22px 24px; display: flex; gap: 18px; cursor: pointer; transition: background 0.2s; }
.agenda-card:hover { background: #243553; }
.agenda-date { background: var(--amber); color: var(--navy); border-radius: 8px; padding: 10px; text-align: center; min-width: 52px; height: fit-content; }
.agenda-date .day { font-family: var(--serif); font-size: 22px; font-weight: 800; line-height: 1; }
.agenda-date .month { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.agenda-type { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.agenda-title { font-family: var(--serif-read); font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.agenda-loc { font-size: 12px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 4px; }

/* ── REVUE DE PRESSE ── */
.revue-list { display: flex; flex-direction: column; }
.revue-item { display: flex; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--border); gap: 16px; cursor: pointer; }
.revue-item:last-child { border-bottom: none; }
.revue-item:hover .revue-title { color: var(--orange); }
.revue-flag { width: 24px; text-align: center; flex-shrink: 0; line-height: 1; }
.flagimg { display: inline-block; width: 24px; height: 18px; border-radius: 2px; object-fit: cover; vertical-align: middle; box-shadow: 0 0 0 1px rgba(0,0,0,0.10); }
.flagimg.flag-globe { box-shadow: none; font-size: 16px; }
.news-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.news-chip { font-family: var(--sans); font-size: 12.5px; font-weight: 700; color: var(--navy); background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; cursor: pointer; transition: all 0.15s; }
.news-chip:hover { border-color: var(--navy); }
.news-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.revue-empty { padding: 24px 0; color: var(--text-muted); font-size: 14px; text-align: center; }
.revue-section { font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); background: var(--bg); margin: 12px -20px 2px; padding: 8px 20px; border-top: 1px solid var(--border); }
.revue-section:first-child { margin-top: 0; border-top: none; }
.revue-count { color: var(--text-muted); font-weight: 700; }
.revue-source { font-size: 11px; font-weight: 700; color: var(--orange); min-width: 120px; background: #FDECE2; padding: 4px 8px; border-radius: 4px; text-align: center; }
.revue-title { font-family: var(--serif-read); font-size: 15px; font-weight: 500; flex: 1; }
.revue-date { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

/* ── ADS ── */
.ad-slot { background: repeating-linear-gradient(45deg, #ECEAE2, #ECEAE2 10px, #E5E3DC 10px, #E5E3DC 20px); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--text-muted); text-align: center; }
.ad-slot .ad-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.ad-slot .ad-format { font-size: 12px; margin-top: 4px; }
.ad-leaderboard { height: 110px; margin: 24px 0; }
.ad-rectangle { height: 250px; }
.ad-sidebar { height: 600px; }

/* ── SHARE BUTTONS ── */
.share-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.share-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); transition: transform 0.15s, opacity 0.15s; cursor: pointer; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-li { background: #0A66C2; } .share-wa { background: #25D366; } .share-x { background: #000; } .share-wc { background: #07C160; } .share-mail { background: var(--navy); }

/* ── EDITORIAL ARTICLE BODY ── */
.article-body { font-family: var(--serif-read); font-size: 18px; line-height: 1.75; color: #2a2a3a; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: var(--serif); font-size: 26px; font-weight: 800; margin: 34px 0 14px; line-height: 1.2; }
.article-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; margin: 26px 0 10px; }
.article-body blockquote { border-left: 4px solid var(--amber); padding: 6px 0 6px 22px; margin: 26px 0; font-style: italic; font-size: 21px; line-height: 1.5; color: var(--navy); }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body figure { margin: 26px 0; }
.article-body figure img { border-radius: 10px; }
.article-body figcaption { font-family: var(--sans); font-size: 12px; color: var(--text-muted); margin-top: 8px; text-align: center; }
.article-body a.inline-link { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

/* ── GENERIC CONTENT CARD / PANELS ── */
.panel { background: var(--card-bg); border-radius: 14px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.panel + .panel { margin-top: 20px; }
.muted { color: var(--text-muted); }
.prose { font-size: 16px; line-height: 1.75; }
.prose h2 { font-family: var(--serif); font-size: 24px; font-weight: 800; margin: 28px 0 12px; }
.prose h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; margin: 22px 0 8px; }
.prose p { margin-bottom: 16px; color: #33333f; }
.prose ul { margin: 0 0 16px 20px; } .prose li { margin-bottom: 8px; }
.lead-para { font-size: 18px; line-height: 1.7; color: var(--text); }

/* value / benefit list */
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }
.benefit-check { width: 22px; height: 22px; border-radius: 50%; background: var(--amber); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }

/* stat row */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-box { text-align: center; }
.stat-box .num { font-family: var(--serif); font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-box .lab { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* gate (restricted access) */
.gate-wrap { max-width: 460px; margin: 0 auto; text-align: center; }
.gate-icon { font-size: 40px; margin-bottom: 14px; }

/* ── FOOTER ── */
footer.site-footer { background: var(--navy-dark); color: var(--white); padding: 52px 24px 26px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 26px; }
.footer-brand .logo-word { font-size: 20px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 16px 0 20px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background 0.2s; cursor: pointer; }
.social-btn:hover { background: var(--amber); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: repeat(2,1fr); }
  .agenda-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  nav.site-nav { display: none; }
  .btn-account span.label { display: none; }
  .header-inner { gap: 12px; }
  .deal-board { overflow-x: auto; }
}
@media (max-width: 600px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .revue-source { min-width: 90px; }
}

/* ── MENU MOBILE (burger) ── */
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.mobile-menu { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.12); padding: 8px 18px 14px; }
.mobile-menu.open { display: block; }
.mobile-menu .mm-link { display: block; color: #fff; text-decoration: none; font-size: 15px; font-weight: 600; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .mm-link.active { color: var(--amber); }
.mobile-menu .mm-link.mm-cta { color: var(--navy); background: var(--amber); border-radius: 8px; text-align: center; margin-top: 12px; border-bottom: none; }
.mobile-menu .nav-live-dot { margin-right: 7px; }
@media (max-width: 700px) { .nav-burger { display: inline-flex; } .btn-subscribe { display: none; } }

/* ── LANG LAYERS ──
   Hide only the INACTIVE language; the active one keeps each element's
   natural display (block, inline, inline-block, flex…). No inline
   display:none must be used on [data-lang] elements. */
body:not(.lang-en) [data-lang="en"] { display: none !important; }
body.lang-en [data-lang="fr"] { display: none !important; }
body.lang-en .lang-btn-fr { background: transparent; color: rgba(255,255,255,0.6); }
body.lang-en .lang-btn-en { background: var(--amber); color: var(--navy); }
