/* ================================================================
   AFRIQUE UNIVERS — DESIGN SYSTEM
   v5 · Mobile-First · 2026
================================================================ */
:root {
  --red:     #d66d35;
  --red-l:   #FFF0F0;
  --red-m:   #FECACA;
  --navy:    #04112F;
  --navy2:   #071940;
  --blue:    #1251D3;
  --bluev:   #1A6BFF;
  --blues:   #EEF4FF;
  --gold:    #D4920A;
  --gold-l:  #FFF8E7;
  --white:   #FFFFFF;
  --off:     #F7F8FC;
  --bg:      #FAFAFA;
  --text:    #0A0F1E;
  --muted:   #64748B;
  --muted2:  #94A3B8;
  --border:  #E2E8F0;
  --border2: #CBD5E1;
  --serif:   'Bodoni Moda', Georgia, serif;
  --sans:    'Figtree', sans-serif;
  --italic:  'Playfair Display', serif;
  --r4: 4px; --r6: 6px; --r8: 8px; --r12: 12px;
  --sh1: 0 1px 4px rgba(4,17,47,.07);
  --sh2: 0 4px 18px rgba(4,17,47,.11), 0 2px 6px rgba(4,17,47,.05);
  --sh3: 0 12px 40px rgba(4,17,47,.16);
  --sh4: 0 24px 64px rgba(4,17,47,.22);
  --nav-h: 72px;
  --mob-nav-h: 56px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { display: block; max-width: 100%; width: 100%; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
input, textarea { font-family: var(--sans); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ── PROGRESS BAR ── */
#prog {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  z-index: 9999; width: 0;
  transition: width .1s;
  border-radius: 0 2px 2px 0;
}

/* ================================================================
   TICKER
================================================================ */
.ticker {
  background: var(--navy);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.t-lbl {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.t-lbl i { animation: blink 1.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.t-scroll { overflow: hidden; flex: 1; height: 100%; display: flex; align-items: center; }
.t-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickr 60s linear infinite;
}
.t-track:hover { animation-play-state: paused; }
.t-item {
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  font-weight: 500;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
@keyframes tickr { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   HEADER TOP — Social | Logo | Subscribe
================================================================ */
.htop {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow .3s;
}
.htop.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.htop-inner {
  min-height: var(--nav-h);
  padding: 10px 20px;
}

/* Logo col */
/*.htop-logo-col { padding: 8px 20px 8px 24px; }*/
.htop-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.htop-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Bannière col */
.htop-banner-col { padding: 8px 24px 8px 12px; }

/* Centre — Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.logo-mark em { font-style: normal; color: var(--red); }
.logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 3px;
}

/* Droite — Actions */
.htop-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
/* Bannière pub header */
.htop-banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
}
.htop-banner-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted2);
}
.htop-banner-placeholder {
  width: 100%;
  max-width: 728px;
  height: 90px;
  background: var(--off);
  border: 1.5px dashed var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htop-banner-placeholder span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: .03em;
}

/* ════════════════════════════════════
   RÉSEAUX SOCIAUX FLOTTANTS — GAUCHE
════════════════════════════════════ */
.float-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fs-btn {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: width .28s cubic-bezier(.4,0,.2,1), box-shadow .22s;
  position: relative;
  white-space: nowrap;
}
.fs-btn:hover {
  width: 140px;
  box-shadow: 4px 0 18px rgba(0,0,0,.22);
  text-decoration: none;
}
.fs-btn i {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.fs-btn span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding-right: 14px;
  letter-spacing: .02em;
  opacity: 0;
  transition: opacity .18s .08s;
}
.fs-btn:hover span { opacity: 1; }
.fs-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-radius: 0 6px 6px 0; }
.fs-fb { background: #1877F2; }
.fs-yt { background: #FF0000; }
.fs-tw { background: #000; }
.fs-ln { background: #0A66C2; }
.fs-wh { background: #25D366; border-radius: 0 0 0 0; }
/* Arrondir dernier élément */
.fs-btn:last-child { border-radius: 0 0 6px 0; }
.fs-btn:first-child { border-radius: 0 6px 0 0; }
.btn-notif {
  position: relative;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 15px;
  transition: color .2s;
}
.btn-notif:hover { color: var(--red); }
.n-dot {
  position: absolute;
  top: 5px; right: 5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid #fff;
}
.btn-cnx {
  font-size: 12.5px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 7px 14px;
  border: 1.5px solid #ccc;
  border-radius: 0;
  transition: all .2s;
  white-space: nowrap;
}
.btn-cnx:hover { border-color: #1a1a1a; background: var(--off); }
.btn-sub {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #1a1a1a;
  padding: 9px 22px;
  border-radius: 0;
  transition: background .2s;
  letter-spacing: .2px;
  white-space: nowrap;
}
.btn-sub:hover { background: var(--red); color: #fff; }

/* Hamburger */
.hambg {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r4);
  transition: background .2s;
  position: relative;
}
.hambg:hover { background: var(--off); }
.hambg span {
  display: block;
  width: 22px; height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
/* Hamburger → X animation */
.hambg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hambg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hambg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HEADER NAV — Blanche centrée
================================================================ */
.hnav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 950;
  overflow: visible;
}
.hnav-inner {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #1251d3;
}
.hnav-inner::-webkit-scrollbar { display: none; }
.nav-list { display: flex; align-items: center; flex-shrink: 0; }
.nav-list > a,
.nav-list > .dropdown { display: flex; align-items: center; }
.nav-list > a {
  position: relative;
  padding: 0 15px;
  height: 46px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: color .22s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  letter-spacing: .04em;
}
/* Trait animé sous chaque lien */
.nav-list > a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 20px);
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav-list > a:hover {
  color: var(--navy);
  text-decoration: none;
  background: #d66d35;
}
.nav-list > a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-list > a.active {
  color: #fff;
  font-weight: 700;
  background: #d66d35;
}
.nav-list > a.active::after { transform: translateX(-50%) scaleX(1); }

/* Dropdown toggle */
.nav-list .dropdown-toggle {
  position: relative;
  padding: 0 15px; height: 46px;
  font-size: 12.5px; font-weight: 700; color: #555;
  display: flex; align-items: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  letter-spacing: .04em;
  transition: color .22s ease;
}
.nav-list .dropdown-toggle::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 20px);
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-list .dropdown-toggle:hover { color: var(--navy); background:#d66d35 }
.nav-list .dropdown-toggle:hover::before { transform: translateX(-50%) scaleX(1); }
.nav-list .dropdown-toggle::after { border-top-color: #999; margin-left: 5px; }

/* Dropdown menu */
.nav-list .dropdown-menu {
  background: #fff;
  border: none;
  border-top: 2px solid var(--red);
  border-radius: 0 0 var(--r4) var(--r4);
  padding: 6px;
  min-width: 190px;
  margin-top: 0;
  box-shadow: 0 12px 32px rgba(4,17,47,.13), 0 2px 8px rgba(4,17,47,.06);
  z-index: 9900 !important;
  position: absolute;
}
.nav-list .dropdown-item {
  position: relative;
  color: #555;
  font-size: 12.5px; font-weight: 700;
  padding: 9px 14px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 9px;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
  letter-spacing: .04em;
  overflow: hidden;
}
.nav-list .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--red);
  transition: width .18s ease;
  border-radius: 6px 0 0 6px;
}
.nav-list .dropdown-item i {
  color: var(--red); width: 14px;
  text-align: center; font-size: 11px;
  transition: color .18s ease;
  position: relative; z-index: 1;
}
.nav-list .dropdown-item span { position: relative; z-index: 1; }
.nav-list .dropdown-item:hover {
  background: var(--navy);
  color: #fff;
  padding-left: 18px;
}
.nav-list .dropdown-item:hover i { color: rgba(255,255,255,.7); }
.nav-list .dropdown-divider { border-color: var(--border); margin: 4px 6px; }
/* Direct badge */
.nav-live {
  display: flex !important; align-items: center; gap: 5px;
  margin-left: 8px; padding: 5px 12px !important;
  background: #FEE2E2 !important; color: #DC2626 !important;
  border-radius: 3px !important; font-size: 11px !important; font-weight: 700 !important;
  border: none !important; align-self: center !important;
  height: auto !important; border-bottom: none !important; letter-spacing: .3px;
  transition: background .2s ease, color .2s ease !important;
}
.nav-live:hover {
  background: #DC2626 !important;
  color: #fff !important;
}
.nav-live::after { display: none !important; }
.ldot {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  animation: ldot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ldot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

/* ================================================================
   MOBILE DRAWER — Full screen overlay
================================================================ */
.mob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.mob.open { display: flex; }
.mob-bg {
  position: absolute;
  inset: 0;
  background: rgba(4,17,47,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bgFade .28s ease;
}
@keyframes bgFade { from { opacity: 0; } to { opacity: 1; } }
.mob-dr {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: drIn .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--sh4);
}
@keyframes drIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

/* Drawer Header */
.mob-head {
  background: var(--navy);
  padding: 18px 18px 16px;
  flex-shrink: 0;
}
.mob-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mob-logo {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .5px;
}
.mob-logo em { font-style: normal; color: var(--gold); }
.mob-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.mob-close:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Drawer Search */
.mob-srch {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r6);
  padding: 9px 12px;
}
.mob-srch i { color: rgba(255,255,255,.5); font-size: 13px; }
.mob-srch input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  font-family: var(--sans);
}
.mob-srch input::placeholder { color: rgba(255,255,255,.4); }

/* Drawer Body */
.mob-body { flex: 1; overflow-y: auto; padding: 12px 0; }
.mob-body::-webkit-scrollbar { width: 3px; }
.mob-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Drawer Nav Links */
.mob-section-lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 10px 18px 6px;
}
.mob-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  border-left: 3px solid transparent;
  transition: all .18s;
  cursor: pointer;
}
.mob-nav a:hover, .mob-nav a.active {
  background: var(--red-l);
  color: var(--red);
  border-left-color: var(--red);
}
.mob-nav a .mn-ico {
  width: 28px; height: 28px;
  border-radius: var(--r4);
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--red);
  flex-shrink: 0;
  transition: all .18s;
}
.mob-nav a:hover .mn-ico, .mob-nav a.active .mn-ico { background: var(--red); color: #fff; }
.mob-nav a .mn-lbl { flex: 1; }
.mob-nav a .mn-count {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted2);
  background: var(--off);
  padding: 2px 7px;
  border-radius: 20px;
}
.mob-nav-divider { height: 1px; background: var(--border); margin: 8px 18px; }

/* Drawer Footer */
.mob-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-btns { display: flex; gap: 8px; margin-bottom: 14px; }
.mob-btn-cnx {
  flex: 1;
  padding: 10px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r4);
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  transition: all .2s;
}
.mob-btn-cnx:hover { border-color: #1a1a1a; background: var(--off); }
.mob-btn-sub {
  flex: 1;
  padding: 10px;
  background: var(--red);
  border-radius: var(--r4);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  transition: opacity .2s;
}
.mob-btn-sub:hover { opacity: .88; color: #fff; }
.mob-soc { display: flex; align-items: center; justify-content: center; gap: 14px; }
.mob-soc a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #555;
  transition: all .2s;
}
.mob-soc a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ================================================================
   SEARCH OVERLAY
================================================================ */
.srch-ov {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(4,17,47,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.srch-ov.open { display: flex; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.srch-box {
  background: #fff;
  border-radius: var(--r8);
  padding: 24px;
  width: 100%;
  max-width: 580px;
  margin: 0 16px;
  box-shadow: var(--sh4);
}
.srch-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--red);
  border-radius: var(--r4);
  padding: 11px 15px;
  margin-bottom: 14px;
}
.srch-row i { color: var(--red); font-size: 15px; }
.srch-row input {
  border: none; outline: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  flex: 1;
}
.srch-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.s-tag {
  font-size: 11.5px; font-weight: 600;
  color: var(--red);
  background: var(--red-l);
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.s-tag:hover { background: var(--red); color: #fff; }
.srch-cls {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}
.srch-cls:hover { background: rgba(255,255,255,.25); }

/* ================================================================
   MOBILE BOTTOM NAV BAR
================================================================ */
.mob-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 850;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mob-bottom-nav {
  display: flex;
  align-items: stretch;
  height: 56px;
}
.mob-bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted2);
  cursor: pointer;
  transition: color .2s;
  border: none;
  background: none;
  padding: 0;
  text-decoration: none;
}
.mob-bnav-item i { font-size: 18px; transition: transform .2s; }
.mob-bnav-item:hover, .mob-bnav-item.active { color: var(--red); }
.mob-bnav-item.active i { transform: scale(1.15); }
/* Centre — bouton accent */
.mob-bnav-item.main-btn {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 20px;
  align-self: center;
  flex: 0 0 44px;
  margin: 0 8px;
  box-shadow: 0 4px 12px rgba(204,31,31,.35);
}
.mob-bnav-item.main-btn:hover { background: #a81919; color: #fff; }

/* ================================================================
   HERO SECTION
================================================================ */
.hero-sect {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 290px;
  min-height: 480px;
}

/* SLIDER */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.slides {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  min-height: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  overflow: hidden;
}
.slide-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease;
}
.slide:hover .slide-bg-img { transform: scale(1.04); }
.slide-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(4,17,47,.94) 0%,
    rgba(4,17,47,.5) 45%,
    transparent 100%
  );
}
.slide-cnt {
  position: relative;
  z-index: 2;
  padding: 22px 26px 24px;
  animation: scIn .55s ease both;
  margin-bottom: 60px;
}
@keyframes scIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.slide-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.slide-time { font-size: 11px; color: rgba(255,255,255,.36); }
.slide-t {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px; font-weight: 700;
  font-style: normal;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.3px;
  margin-bottom: 9px;
  max-width: 560px;
}
.slide-ex {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 14px;
}
.slide-ft {
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
}
.sl-ava {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sl-auth { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.65); }
.sl-time-read { font-size: 10.5px; color: rgba(255,255,255,.32); }
.btn-slread {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--navy);
  font-size: 12px; font-weight: 800;
  padding: 8px 18px;
  border-radius: 24px;
  transition: all .22s;
  flex-shrink: 0;
}
.btn-slread:hover { background: var(--red); color: #fff; }
/* Dots */
.sl-dots {
  position: absolute;
  bottom: 18px; left: 26px;
  display: flex; gap: 6px;
  z-index: 10;
}
.sl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none; padding: 0;
  cursor: pointer;
  transition: all .3s;
}
.sl-dot.on { width: 22px; border-radius: 4px; background: #fff; }
/* Controls */
.sl-ctr { position: absolute; bottom: 14px; right: 20px; display: flex; gap: 7px; z-index: 10; }
.sl-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.sl-btn:hover { background: rgba(255,255,255,.28); }
.sl-counter {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(4,17,47,.5);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.7);
  font-size: 10px; font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 10;
}

/* ── HERO DROITE ── */
.hero-right {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  z-index: 1;
}
.hr-une { flex: 1; padding: 14px 16px; overflow: hidden; }
.hr-lbl {
  font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--red);
}
.hr-lbl i { color: var(--red); font-size: 10px; }
.une-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all .18s;
}
.une-item:last-child { border-bottom: none; padding-bottom: 0; }
.une-item:hover { padding-left: 4px;text-decoration: inherit !important }
.une-thumb {
  width: 72px; height: 54px;
  border-radius: var(--r4);
  flex-shrink: 0;
  overflow: hidden;
}
.une-thumb img { width: 100%; height: 100%; object-fit: cover; }
.une-b { flex: 1; min-width: 0; }
.une-cat {
  font-size: 10px; font-weight: 800;
  letter-spacing: .6px; text-transform: uppercase;
  color: var(--red); margin-bottom: 3px;
}
.une-t {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700;
  line-height: 1.32; color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.une-item:hover .une-t { color: var(--red); }
.une-time { font-size: 10.5px; color: var(--muted2); margin-top: 3px; }
/* Pub bas */
.hr-pub { padding: 12px 16px; border-top: 1px solid var(--border); flex-shrink: 0; }
.pub-lbl {
  font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2); text-align: center;
  margin-bottom: 9px;
}
.pub-banner {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: var(--r6);
  padding: 18px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pub-banner::before {
  content: '';
  position: absolute;
  top: -28px; right: -28px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(212,146,10,.15);
}
.pub-ico { font-size: 24px; margin-bottom: 6px; position: relative; z-index: 1; }
.pub-head { font-family: var(--serif); font-size: 14px; font-weight: 900; color: #fff; margin-bottom: 4px; position: relative; z-index: 1; }
.pub-sub { font-size: 10px; color: rgba(255,255,255,.5); line-height: 1.5; margin-bottom: 10px; position: relative; z-index: 1; }
.pub-cta {
  display: inline-block;
  padding: 6px 15px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 800;
  border-radius: 20px;
  position: relative; z-index: 1;
}
.pub-note { font-size: 8px; color: rgba(255,255,255,.2); margin-top: 7px; position: relative; z-index: 1; }

/* TAG BADGES */
.tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: .6px; text-transform: uppercase;
  color: #fff; background: var(--blue);
  padding: 3px 8px; border-radius: 2px;
}
.tag.live {
  background: #E11D48;
  display: inline-flex; align-items: center; gap: 4px;
}
.tag.live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%; background: #fff;
  animation: ldot 1.2s infinite;
  flex-shrink: 0;
}
.tag.gold { background: var(--gold); }
.tag.dark { background: var(--navy); }
.tag.out { background: transparent; border: 1.5px solid rgba(255,255,255,.42); color: rgba(255,255,255,.82); }

/* ================================================================
   PAGE BODY — Articles + Sidebar
================================================================ */
.pbody { padding: 32px 0 80px; }
.playout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }

/* ── SECTION HEADER ── */
.shd { display: flex; align-items: center; margin-bottom: 22px; gap: 14px; }
.shd-t {
  font-family: var(--sans);
  font-size: 17px; font-weight: 800;
  color: #1a1a1a;
  white-space: nowrap;
  padding-left: 12px;
  border-left: 3px solid var(--red);
  flex-shrink: 0;
}
.shd-line { flex: 1; height: 1px; background: var(--red); opacity: .2; }
.shd-l {
  font-size: 13px; font-weight: 700;
  color: var(--red);
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; flex-shrink: 0;
  transition: gap .2s;
}
.shd-l:hover { gap: 8px; }

/* ── CATEGORY SECTION ── */
.cat-sec { margin-bottom: 44px; }

/* ── ARTICLE CAROUSEL ── */
.cc-wrap { position: relative; }
.cc-viewport { overflow: hidden; }
.cc-track {
  display: flex;
  gap: 22px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cc-card {
  flex: 0 0 calc(25% - 17px);
  min-width: 0;
  cursor: pointer;
  transition: transform .22s;
}
.cc-card:hover { transform: translateY(-3px); }
.cc-thumb { overflow: hidden; }
.cc-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.cc-card:hover .cc-thumb img { transform: scale(1.04); }
.cc-body { padding: 10px 0 0; }
.cc-cat {
  font-size: 11px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--red); margin-bottom: 5px;
}
.cc-title {
  font-family: var(--sans);
  font-size: 14.5px; font-weight: 700;
  line-height: 1.28; color: #1a1a1a;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .18s;
}
.cc-card:hover .cc-title { color: var(--red); }
.cc-date { font-size: 12px; font-weight: 400; color: #999; }

/* Carousel navigation buttons */
.cc-prev, .cc-next {
  position: absolute;
  top: calc(50% - 36px);
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: #1a1a1a;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .2s;
  box-shadow: var(--sh1);
}
.cc-prev { left: -18px; }
.cc-next { right: -18px; }
.cc-prev:hover, .cc-next:hover { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 12px rgba(204,31,31,.3); }
.cc-prev:disabled, .cc-next:disabled { opacity: .3; cursor: not-allowed; background: #fff; color: #ccc; pointer-events: none; }

/* ================================================================
   SIDEBAR
================================================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 130px;
}
.widget { background: #fff; border: 1px solid var(--border); border-radius: var(--r8); overflow: hidden; }
.wh {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.wh::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 16px;
  width: 32px; height: 2px;
  background: var(--red);
}
.wt { font-family: var(--sans); font-size: 14px; font-weight: 800; color: #1a1a1a; }
.wlink { font-size: 11px; font-weight: 700; color: var(--red); }
.wb { padding: 14px 16px; }

/* Trending */
.tr-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding .18s;
}
.tr-item:last-child { border-bottom: none; padding-bottom: 0; }
.tr-item:hover { padding-left: 4px; }
.tr-n {
  font-family: var(--serif);
  font-size: 22px; font-weight: 900;
  color: #e8eaf0; line-height: 1;
  min-width: 26px;
  letter-spacing: -1px; flex-shrink: 0;
}
.tr-item:nth-child(1) .tr-n, .tr-item:nth-child(2) .tr-n { color: var(--gold); }
.tr-t { font-family: var(--sans); font-size: 12.5px; font-weight: 700; line-height: 1.32; color: #1a1a1a; margin-bottom: 2px; }
.tr-item:hover .tr-t { color: var(--red); }
.tr-m { font-size: 10.5px; color: var(--muted2); }

/* Newsletter */
.nl-w {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  padding: 18px 16px;
  position: relative; overflow: hidden;
}
.nl-w::before {
  content: '';
  position: absolute; top: -22px; right: -22px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.nl-ico { font-size: 20px; margin-bottom: 6px; }
.nl-t { font-family: var(--sans); font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 3px; }
.nl-s { font-size: 11px; color: rgba(255,255,255,.48); line-height: 1.5; margin-bottom: 12px; }
.nl-inp {
  width: 100%;
  padding: 8px 11px;
  border-radius: var(--r4);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--sans); font-size: 12.5px;
  outline: none;
  transition: border .2s;
  margin-bottom: 7px;
}
.nl-inp::placeholder { color: rgba(255,255,255,.35); }
.nl-inp:focus { border-color: rgba(255,255,255,.38); }
.btn-nl {
  width: 100%; padding: 9px;
  background: #fff; color: var(--navy);
  font-family: var(--sans); font-size: 12.5px; font-weight: 800;
  border-radius: var(--r4);
  transition: all .2s;
}
.btn-nl:hover { background: var(--gold); color: #fff; }
.nl-note { font-size: 10px; color: rgba(255,255,255,.26); text-align: center; margin-top: 7px; }

/* Premium */
.prem-w {
  background: linear-gradient(145deg, var(--navy), #1A3A6E);
  padding: 18px 16px; text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(212,146,10,.2);
  border-radius: var(--r8);
}
.prem-w::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,146,10,.13), transparent 70%);
}
.pw-cr { font-size: 24px; margin-bottom: 6px; }
.pw-t { font-family: var(--sans); font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.pw-s { font-size: 11px; color: rgba(255,255,255,.44); line-height: 1.5; margin-bottom: 12px; }
.pw-feat { text-align: left; margin-bottom: 12px; }
.pw-f { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.pw-f i { color: var(--gold); font-size: 9px; }
.btn-pw {
  width: 100%; padding: 9px;
  background: linear-gradient(135deg, var(--gold), #F5A623);
  color: var(--navy);
  font-family: var(--sans); font-size: 12.5px; font-weight: 800;
  border-radius: var(--r4);
  transition: all .2s;
  border: none; cursor: pointer;
}
.btn-pw:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(212,146,10,.35); }
.pw-p { font-size: 9.5px; color: rgba(255,255,255,.27); margin-top: 6px; }

/* Poll */
.poll-q { font-family: var(--sans); font-size: 13px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 12px; }
.poll-opt { margin-bottom: 9px; cursor: pointer; transition: opacity .2s; }
.poll-opt.dim { opacity: .42; }
.poll-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.poll-bg { height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.poll-bar { height: 100%; background: var(--red); border-radius: 4px; width: 0; transition: width 1.1s cubic-bezier(.4,0,.2,1); }
.poll-bar.gold { background: var(--gold); }
.btn-vote { width: 100%; margin-top: 10px; padding: 8px; border: 1.5px solid var(--red); border-radius: var(--r4); color: var(--red); font-size: 12px; font-weight: 700; transition: all .2s; }
.btn-vote:hover { background: var(--red); color: #fff; }
.poll-tot { font-size: 10px; color: var(--muted2); text-align: center; margin-top: 7px; }

/* Social */
.soc-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); transition: padding .18s; }
.soc-row:last-child { border-bottom: none; padding-bottom: 0; }
.soc-row:hover { padding-left: 4px; }
.soc-l { display: flex; align-items: center; gap: 9px; }
.soc-ico { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; flex-shrink: 0; }
.fb { background: #1877F2; } .tw { background: #1DA1F2; }
.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.yt { background: #FF0000; } .tg { background: #0088CC; }
.soc-n { font-size: 12px; font-weight: 700; color: #1a1a1a; }
.soc-c { font-size: 10px; color: var(--muted); }
.btn-follow { font-size: 11px; font-weight: 700; color: var(--red); padding: 3px 10px; border: 1.5px solid var(--red-m); border-radius: 20px; transition: all .2s; }
.btn-follow:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Météo */
.meteo-main { display: flex; align-items: center; justify-content: space-between; padding: 11px; background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: var(--r4); margin-bottom: 9px; }
.m-city { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 1px; }
.m-temp { font-family: var(--serif); font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
.m-desc { font-size: 10px; color: rgba(255,255,255,.42); margin-top: 2px; }
.m-icon { font-size: 30px; }
.m-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 5px; margin-bottom: 9px; }
.m-stat { background: var(--off); border-radius: var(--r4); padding: 5px 8px; display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #1a1a1a; }
.m-stat i { color: var(--red); font-size: 9px; }
.m-cities { display: flex; flex-wrap: wrap; gap: 5px; }
.m-pill { display: flex; align-items: center; gap: 4px; padding: 3px 8px; background: var(--off); border: 1px solid var(--border); border-radius: 20px; font-size: 11px; font-weight: 600; }
.m-pill span { color: var(--muted2); }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tp { font-size: 11.5px; font-weight: 600; color: #555; background: var(--off); border: 1px solid var(--border); padding: 4px 10px; border-radius: 20px; cursor: pointer; transition: all .2s; }
.tp:hover { background: var(--red); color: #fff; border-color: var(--red); }
.tp.hot { background: var(--red-l); color: var(--red); border-color: var(--red-m); font-weight: 700; }
.tp.hot:hover { background: var(--red); color: #fff; }

/* Cat list */
.cat-li { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: padding .18s; }
.cat-li:last-child { border-bottom: none; }
.cat-li:hover { padding-left: 4px; }
.cat-ll { display: flex; align-items: center; gap: 9px; }
.cat-ico { width: 26px; height: 26px; border-radius: var(--r4); background: var(--red-l); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 10px; transition: all .2s; flex-shrink: 0; }
.cat-li:hover .cat-ico { background: var(--red); color: #fff; }
.cat-n { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.cat-c { font-size: 10px; color: var(--muted2); }

/* Ad widget */
.ad-w { background: var(--red-l); border: 1.5px dashed var(--red-m); border-radius: var(--r8); padding: 18px; text-align: center; }
.ad-w i { font-size: 20px; color: var(--red); margin-bottom: 6px; display: block; }
.ad-wt { font-family: var(--sans); font-size: 13.5px; font-weight: 900; color: #1a1a1a; margin-bottom: 3px; }
.ad-ws { font-size: 11px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.btn-ad { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; background: var(--red); color: #fff; font-size: 11.5px; font-weight: 700; border-radius: 20px; }

/* Citation */
.quote-w { background: var(--navy); border-radius: var(--r8); padding: 18px 16px; position: relative; overflow: hidden; }
.quote-w::before { content: '\201C'; font-family: var(--serif); font-size: 80px; color: rgba(255,255,255,.05); position: absolute; top: -8px; left: 11px; line-height: 1; }
.qw-lbl { font-size: 8.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; display: flex; align-items: center; gap: 5px; }
.qw-lbl::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07); }
.qw-t { font-family: var(--italic); font-style: italic; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.8); margin-bottom: 12px; position: relative; z-index: 1; }
.qw-a { display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
.qw-av { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qw-n { font-size: 12px; font-weight: 700; color: #fff; }
.qw-r { font-size: 10px; color: rgba(255,255,255,.36); }

/* App */
.app-w { background: var(--off); border-radius: var(--r8); padding: 16px; text-align: center; }
.app-ico { font-size: 22px; margin-bottom: 6px; }
.app-t { font-family: var(--sans); font-size: 13.5px; font-weight: 900; color: #1a1a1a; margin-bottom: 3px; }
.app-s { font-size: 11px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.app-btns { display: flex; gap: 7px; justify-content: center; }
.app-btn { display: flex; align-items: center; gap: 5px; padding: 7px 11px; background: var(--navy); color: #fff; border-radius: var(--r4); font-size: 11px; font-weight: 700; }
.app-btn:hover { background: var(--red); color: #fff; }

/* ================================================================
   TOAST
================================================================ */
.toast-c { position: fixed; bottom: 80px; left: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 9px; }
.toast-i {
  background: var(--navy); color: #fff;
  border-radius: var(--r8);
  padding: 11px 14px;
  min-width: 240px; max-width: 300px;
  display: flex; align-items: flex-start; gap: 9px;
  box-shadow: var(--sh3);
  border-left: 3px solid var(--gold);
  animation: tIn .3s ease;
}
@keyframes tIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: translateX(0); } }
.toast-i.out { animation: tOut .22s ease forwards; }
@keyframes tOut { to { opacity: 0; transform: translateX(-14px); } }
.ti-ico { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.ti-msg { font-size: 12.5px; color: rgba(255,255,255,.85); flex: 1; line-height: 1.4; }
.ti-cls { font-size: 11px; color: rgba(255,255,255,.3); cursor: pointer; flex-shrink: 0; padding: 2px; }
.ti-cls:hover { color: rgba(255,255,255,.7); }

/* Back to top */
#btt {
  position: fixed; bottom: 24px; right: 24px;
  width: 38px; height: 38px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  box-shadow: var(--sh2);
  opacity: 0; transform: translateY(10px);
  pointer-events: none;
  transition: all .3s; cursor: pointer; z-index: 800;
}
#btt.on { opacity: 1; transform: translateY(0); pointer-events: all; }
#btt:hover { background: var(--red); }

/* Cookie bar */
.ck-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; z-index: 798;
  border-top: 1px solid rgba(255,255,255,.07);
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.ck-txt { font-size: 12.5px; color: rgba(255,255,255,.6); flex: 1; }
.ck-txt a { color: var(--gold); text-decoration: underline; }
.ck-btns { display: flex; gap: 8px; flex-shrink: 0; }
.btn-ckok { padding: 7px 16px; background: var(--red); color: #fff; font-size: 12.5px; font-weight: 700; border-radius: var(--r4); border: none; cursor: pointer; }
.btn-ckno { padding: 7px 11px; color: rgba(255,255,255,.36); font-size: 12.5px; font-weight: 600; }

/* Reveal animation */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; } .d3 { transition-delay: .18s; } .d4 { transition-delay: .24s; }

/* ================================================================
   FOOTER
================================================================ */
footer { background: #d66d35; color: rgba(255,255,255,.46); padding-top: 44px; }
.ft-top { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo { font-family: var(--sans); font-size: 22px; font-weight: 900; color: #fff; text-transform: uppercase; }
.ft-logo em { font-style: normal; color: var(--gold); }
.ft-rule { width: 34px; height: 2px; background: var(--gold); border-radius: 2px; margin: 6px 0 10px; }
.ft-desc { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.34); max-width: 230px; margin-bottom: 14px; }
.ft-soc { display: flex; gap: 7px; }
.ft-soc a { width: 28px; height: 28px; border-radius: var(--r4); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,.38); transition: all .2s; }
.ft-soc a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.ft-col h5 { font-size: 15px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #1251d3; margin-bottom: 12px; }
.ft-col ul li { margin-bottom: 6px; }
.ft-col ul a { font-size: 16px; color:#fff; transition: all .2s; display: block; }
.ft-col ul a:hover { color: rgba(255,255,255,.75); padding-left: 4px; }
.ft-bot { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.ft-copy { font-size: 14px; color: #000}
.ft-links { display: flex; gap: 14px; }
.ft-links a { font-size: 11px; color: rgba(255,255,255,.24); transition: color .2s; }
.ft-links a:hover { color: rgba(255,255,255,.6); }
.ft-made { font-size: 14px; color:#222 }
.ft-made span { color: var(--gold); }

/* ================================================================
   MODALS
================================================================ */
.modal-content { border: none; border-radius: var(--r12); overflow: hidden; box-shadow: var(--sh4); }
.modal-hd { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; }
.modal-ht { font-family: var(--sans); font-size: 17px; font-weight: 900; color: #fff; }
.modal-bd { padding: 22px 20px; }
.flbl { font-size: 12px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; display: block; }
.finp { width: 100%; padding: 9px 12px; border: 1.5px solid #ccc; border-radius: var(--r4); font-family: var(--sans); font-size: 13.5px; color: var(--text); outline: none; transition: border-color .2s; margin-bottom: 13px; }
.finp:focus { border-color: var(--red); }
.btn-mok { width: 100%; padding: 11px; background: var(--red); color: #fff; font-family: var(--sans); font-size: 13.5px; font-weight: 700; border-radius: var(--r4); transition: opacity .2s; border: none; cursor: pointer; }
.btn-mok:hover { opacity: .9; }
.modal-ft { padding: 13px 20px; border-top: 1px solid var(--border); text-align: center; font-size: 12.5px; color: var(--muted); }
.modal-ft a { color: var(--red); font-weight: 700; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 1050px)
================================================================ */
@media (max-width: 1050px) {
  .playout { grid-template-columns: 1fr 270px; gap: 24px; }
  .hero-grid { grid-template-columns: 1fr 240px; }
  .cc-card { flex: 0 0 calc(33.333% - 15px); }
  .cc-prev { left: -14px; }
  .cc-next { right: -14px; }
  .htop-soc .soc-linkedin,
  .htop-soc .soc-pinterest { display: none; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 768px)
================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  /* Header */
  .htop-inner { padding: 8px 12px; }
  .htop-logo-img { height: 42px; }
  .htop-banner-col { display: none !important; }
  .float-social { display: none; }
  .hambg { display: flex; }
  .htop-left { gap: 8px; }
  .htop-soc { gap: 10px; }
  .htop-soc a { font-size: 15px; }
  .htop-soc .soc-linkedin,
  .htop-soc .soc-pinterest { display: none; }
  .htop-srch { display: none; } /* search déplacé dans le drawer */
  .logo-mark { font-size: 20px; letter-spacing: .5px; }
  .logo-tag { display: none; }
  .btn-notif, .btn-cnx { display: none; }
  .btn-sub { display: none; }
  .hambg { display: flex; }
  .hnav { top: var(--nav-h); }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .slider-wrap { border-right: none; }
  .slide { min-height: 320px; }
  .slide-t { font-size: 19px; }
  .slide-ex { font-size: 12px; line-height: 1.5; }
  .slide-cnt { padding: 16px 18px 18px; }
  .btn-slread { padding: 7px 14px; font-size: 11px; }
  .sl-ava, .sl-auth, .sl-time-read { display: none; }
  .slide-ft { justify-content: flex-end; }

  /* Page body */
  .pbody { padding: 20px 0 70px; }
  .playout { grid-template-columns: 1fr; gap: 0; }
  .sidebar { position: static; gap: 16px; margin-top: 24px; }

  /* Carousels — scroll horizontal snap avec indicateurs visuels */
  .cc-wrap { padding: 0; overflow: visible; }
  .cc-viewport {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 0 12px;
    cursor: grab;
  }
  .cc-viewport:active { cursor: grabbing; }
  .cc-viewport::-webkit-scrollbar { display: none; }
  .cc-track {
    gap: 12px;
    transform: none !important;
    transition: none;
    padding: 4px 4px 4px;
    width: max-content;
  }
  /* Carte mobile : 1,3 cartes visibles → indique qu'on peut swiper */
  .cc-card {
    flex: 0 0 calc(72vw - 20px);
    scroll-snap-align: start;
    border-radius: var(--r8);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
  }
  /* Dernière carte : marge droite pour voir qu'il y a une suivante */
  .cc-card:last-child { margin-right: 16px; }
  .cc-prev, .cc-next { display: none; }

  /* Indicateur swipe sur la section catégorie */
  .cat-sec { position: relative; }
  .cc-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted2);
    padding: 6px 0 0;
    opacity: 1;
    transition: opacity .4s;
  }
  .cc-swipe-hint i { font-size: 13px; color: var(--red); animation: swipeAnim 1.4s ease-in-out infinite; }
  @keyframes swipeAnim {
    0%,100% { transform: translateX(0); }
    50%      { transform: translateX(5px); }
  }
  /* Dots indicateurs de position */
  .cc-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 8px 0 0;
  }
  .cc-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: all .25s;
    flex-shrink: 0;
  }
  .cc-dot.active {
    width: 18px;
    border-radius: 3px;
    background: var(--red);
  }

  /* Section header */
  .shd-t { font-size: 15px; }
  .cat-sec { margin-bottom: 32px; }

  /* Toast */
  .toast-c { bottom: 70px; left: 12px; right: 12px; }
  .toast-i { min-width: unset; max-width: unset; width: 100%; }

  /* Footer */
  .ft-bot { flex-direction: column; gap: 8px; text-align: center; }
  .ft-links { flex-wrap: wrap; justify-content: center; }
  .ft-col { margin-bottom: 22px; }

  /* Cookie bar */
  .ck-bar { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Bottom nav */
  .mob-bottom { display: block; }
  #btt { display: none; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
================================================================ */
@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .logo-mark { font-size: 18px; }
  .cc-card { flex: 0 0 calc(78vw - 20px); }
  .htop-soc a { display: none; }
  .htop-soc a:first-child, .htop-soc a:nth-child(2) { display: flex; }
  .slide { min-height: 280px; }
  .slide-t { font-size: 17px; }
  .slide-ex { display: none; }
  .mob-dr { width: 100%; max-width: 100%; }
}

/* ===== category.html ===== */
/* ── PAGE CATÉGORIE ── */

/* Hero catégorie */
.cat-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2560 50%, var(--blue) 100%);
  padding: 44px 0 36px;
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(212,146,10,.07);
}
.cat-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 20%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cat-hero-inner { position: relative; z-index: 1; }
.cat-breadcrumb {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 16px;
  font-size: 12px; font-weight: 600;
}
.cat-breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.cat-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.cat-breadcrumb i { font-size: 9px; color: rgba(255,255,255,.2); }
.cat-hero-icon {
  width: 52px; height: 52px;
  border-radius: var(--r8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.cat-hero-ttl {
  font-family: var(--serif);
  font-size: 38px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 8px;
  letter-spacing: -1px;
}
.cat-hero-desc {
  font-size: 14px; color: rgba(255,255,255,.5);
  max-width: 500px; line-height: 1.6;
  margin-bottom: 18px;
}
.cat-hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.ch-stat { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.45); }
.ch-stat strong { color: rgba(255,255,255,.85); font-weight: 700; }

/* Sub-cats tabs */
.subcat-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subcat-bar::-webkit-scrollbar { display: none; }
.subcat-inner {
  display: flex; align-items: center;
  height: 48px;
  gap: 0;
  white-space: nowrap;
  padding: 0 4px;
}
.sub-tab {
  padding: 0 18px; height: 48px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  display: flex; align-items: center;
  cursor: pointer;
  transition: all .2s;
  background: none; border-top: none; border-left: none; border-right: none;
  white-space: nowrap;
}
.sub-tab:hover { color: #1a1a1a; }
.sub-tab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 700; }
.sub-tab .sc-count { font-size: 10px; color: var(--muted2); margin-left: 5px; }

/* Layout catégorie */
.cat-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
  padding: 32px 0 64px;
}

/* Article vedette */
.feat-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r8);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow .2s;
}
.feat-article:hover { box-shadow: var(--sh2); }
.feat-article-img {
  height: 300px;
  object-fit: cover;
  display: block;
  width: 100%;
  transition: transform .5s;
}
.feat-article:hover .feat-article-img { transform: scale(1.03); }
.feat-article-img-wrap { overflow: hidden; }
.feat-article-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.feat-cat { font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.feat-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 900;
  color: #1a1a1a; line-height: 1.2;
  margin-bottom: 10px;
}
.feat-article:hover .feat-title { color: var(--red); }
.feat-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.feat-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.feat-author { display: flex; align-items: center; gap: 7px; }
.feat-av { width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 8px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-auth-name { font-size: 12px; font-weight: 600; color: #1a1a1a; }
.feat-time { font-size: 11.5px; color: var(--muted2); }
.feat-views { font-size: 11.5px; color: var(--muted2); display: flex; align-items: center; gap: 4px; }
.btn-read-art {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: var(--r4);
  margin-top: 14px; width: fit-content;
  transition: opacity .2s;
  text-decoration: none;
}
.btn-read-art:hover { opacity: .88; color: #fff; }

/* Filters bar */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; flex-wrap: wrap; gap: 12px;
}
.filter-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filt-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  color: var(--muted);
  background: var(--off);
  border: 1.5px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.filt-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-l); }
.filt-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.filter-right select {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r4);
  font-family: var(--sans); font-size: 12.5px;
  color: var(--text); outline: none;
  background: #fff; cursor: pointer;
}

/* Grille articles catégorie */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.cat-art-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r8);
  overflow: hidden;
  cursor: pointer;
  transition: all .22s;
}
.cat-art-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.cac-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .5s; }
.cat-art-card:hover .cac-img { transform: scale(1.04); }
.cac-img-wrap { overflow: hidden; }
.cac-body { padding: 14px; }
.cac-cat { font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.cac-title { font-size: 14.5px; font-weight: 800; line-height: 1.3; color: #1a1a1a; margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cat-art-card:hover .cac-title { color: var(--red); }
.cac-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--muted2); border-top: 1px solid var(--border); padding-top: 9px; margin-top: 9px; }
.cac-views { display: flex; align-items: center; gap: 4px; }

/* Liste articles (vue liste) */
.cat-list-item {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: padding .18s;
}
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item:hover { padding-left: 8px; }
.cli-thumb { width: 120px; height: 88px; flex-shrink: 0; border-radius: var(--r4); overflow: hidden; }
.cli-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-list-item:hover .cli-thumb img { transform: scale(1.06); }
.cli-body { flex: 1; min-width: 0; }
.cli-cat { font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.cli-title { font-size: 15px; font-weight: 800; line-height: 1.3; color: #1a1a1a; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-list-item:hover .cli-title { color: var(--red); }
.cli-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 7px; }
.cli-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--muted2); }

/* Pagination */
.pagination-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 32px; flex-wrap: wrap;
}
.pg-btn {
  width: 38px; height: 38px;
  border-radius: var(--r4);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  border: 1.5px solid var(--border);
  color: var(--muted); background: #fff;
}
.pg-btn:hover { border-color: var(--red); color: var(--red); }
.pg-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.pg-btn.nav { color: #1a1a1a; }

/* Vue toggle */
.view-toggle { display: flex; gap: 4px; }
.vt-btn {
  width: 32px; height: 32px;
  border-radius: var(--r4);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted2);
  cursor: pointer; border: 1.5px solid var(--border);
  transition: all .2s; background: #fff;
}
.vt-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Responsive catégorie */
@media (max-width: 900px) {
  .cat-page-layout { grid-template-columns: 1fr; gap: 24px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .feat-article { grid-template-columns: 1fr; }
  .feat-article-img { height: 220px; }
}
@media (max-width: 600px) {
  .cat-hero-ttl { font-size: 28px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cli-thumb { width: 90px; height: 68px; }
  .cli-excerpt { display: none; }
}

/* ===== article.html ===== */
/* ── PAGE ARTICLE — styles spécifiques ── */
.art-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.art-hero-img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
  opacity: .55;
  transition: opacity .4s;
}
.art-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,17,47,.97) 0%, rgba(4,17,47,.55) 55%, rgba(4,17,47,.2) 100%);
}
.art-hero-cnt {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 0 40px;
}
.art-breadcrumb {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 14px;
  font-size: 12px; font-weight: 600;
}
.art-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.art-breadcrumb a:hover { color: #fff; }
.art-breadcrumb i { font-size: 9px; color: rgba(255,255,255,.25); }
.art-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.art-h1 {
  font-family: var(--serif);
  font-size: 36px; font-weight: 900;
  color: #fff;
  line-height: 1.15; letter-spacing: -.5px;
  margin-bottom: 14px;
  max-width: 820px;
}
.art-excerpt {
  font-size: 16px; color: rgba(255,255,255,.62);
  line-height: 1.65; max-width: 700px;
  margin-bottom: 20px;
}
.art-meta-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.art-author-block { display: flex; align-items: center; gap: 10px; }
.art-ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.art-ava-name { font-size: 13px; font-weight: 700; color: #fff; }
.art-ava-role { font-size: 11px; color: rgba(255,255,255,.4); }
.art-meta-sep { width: 1px; height: 28px; background: rgba(255,255,255,.12); }
.art-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; }
.art-meta-item i { font-size: 11px; }
/* ── Barre de partage article ── */
/* ══ Barre de partage article — design premium ══ */
.art-share-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 898;
}
.art-share-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 16px;
}
.art-share-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.art-share-label {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1.5px solid var(--border);
  margin-right: 14px;
}
/* Bouton icône rond */
.btn-soc {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border) !important;
  background: #fff !important;
  cursor: pointer;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  margin-right: 7px;
  color: #555 !important;
  font-size: 14px;
  flex-shrink: 0;
  padding: 0 !important;
  line-height: 1;
}
/* Tooltip */
.btn-soc::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  letter-spacing: .04em;
  z-index: 10;
}
.btn-soc::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  border: 4px solid transparent;
  border-top-color: var(--navy);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 10;
}
.btn-soc:hover::after,
.btn-soc:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }
.btn-soc.soc-fb:hover  { background: #1877F2 !important; border-color: #1877F2 !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(24,119,242,.32); }
.btn-soc.soc-tw:hover  { background: #000 !important;    border-color: #000 !important;    color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.btn-soc.soc-wa:hover  { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,.32); }
.btn-soc.soc-li:hover  { background: #0077B5 !important; border-color: #0077B5 !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,119,181,.28); }
.btn-soc.soc-cp:hover  { background: var(--navy) !important; border-color: var(--navy) !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(4,17,47,.22); }
/* Séparateur vertical */
.share-sep {
  width: 1.5px;
  height: 22px;
  background: var(--border);
  margin: 0 12px 0 5px;
  flex-shrink: 0;
}
/* Actions droite */
.art-share-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-art-action {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 16px !important;
  border-radius: 100px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--off) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--muted) !important;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}
.btn-art-action i { font-size: 13px; transition: transform .2s; }
.btn-art-action:hover { border-color: #aaa !important; color: var(--text) !important; background: #f0f0f0 !important; }
.btn-art-action:hover i { transform: scale(1.15); }
.btn-art-action.liked  { background: #FEF2F2 !important; border-color: var(--red) !important; color: var(--red) !important; }
.btn-art-action.saved  { background: #EFF6FF !important; border-color: var(--blue) !important; color: var(--blue) !important; }
/* Compteur vues */
.share-views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  padding-left: 4px;
}
@media(max-width:640px) {
  .art-share-label, .share-views { display: none; }
  .btn-art-action span { display: none; }
  .btn-art-action { width: 38px !important; height: 38px !important; padding: 0 !important; border-radius: 50% !important; justify-content: center; }
}

/* Layout article */
.art-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding: 40px 0 64px;
}

/* Corps de l'article */
.art-body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
}
.art-body h2 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 900;
  color: #1a1a1a;
  margin: 36px 0 14px;
  line-height: 1.2;
}
.art-body h3 {
  font-family: var(--sans);
  font-size: 18px; font-weight: 800;
  color: #1a1a1a;
  margin: 28px 0 10px;
}
.art-body p { margin-bottom: 20px; }
.art-body p:first-of-type {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.7;
}
.art-body strong { font-weight: 700; color: #1a1a1a; }
.art-body a { color: var(--red); text-decoration: underline; }
.art-body blockquote {
  border-left: 3px solid var(--red);
  padding: 14px 22px;
  margin: 28px 0;
  background: var(--off);
  border-radius: 0 var(--r6) var(--r6) 0;
}
.art-body blockquote p {
  font-family: var(--italic);
  font-style: italic;
  font-size: 18px; color: #1a1a1a;
  margin: 0; line-height: 1.6;
}
.art-body blockquote cite {
  display: block; margin-top: 8px;
  font-size: 12px; font-weight: 700;
  color: var(--red); font-style: normal;
}
.art-body figure {
  margin: 28px 0;
  border-radius: var(--r8);
  overflow: hidden;
}
.art-body figure img {
  width: 100%; height: auto;
  display: block;
}
.art-body figcaption {
  font-size: 12px; color: var(--muted);
  padding: 8px 12px;
  background: var(--off);
  text-align: center;
}

/* Infobox */
.infobox {
  background: linear-gradient(135deg, var(--navy), #0D2560);
  border-radius: var(--r8);
  padding: 22px;
  margin: 28px 0;
  color: #fff;
}
.infobox-title {
  font-family: var(--sans);
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.infobox-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.infobox ul { margin: 0; padding: 0; }
.infobox li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13.5px; color: rgba(255,255,255,.78);
  list-style: none;
}
.infobox li:last-child { border-bottom: none; padding-bottom: 0; }
.infobox li i { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

/* Score widget (sport) */
.score-box {
  background: var(--navy);
  border-radius: var(--r8);
  padding: 20px;
  margin: 28px 0;
  text-align: center;
}
.score-lbl {
  font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.score-teams {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.score-team { flex: 1; text-align: center; max-width: 120px; }
.score-flag { font-size: 36px; margin-bottom: 6px; }
.score-tname { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; }
.score-num {
  font-family: var(--serif);
  font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1;
  letter-spacing: -2px;
  padding: 0 20px;
  display: flex; align-items: center; gap: 10px;
}
.score-sep { font-size: 28px; color: rgba(255,255,255,.2); }
.score-status {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px;
  background: #E11D48; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 11px; border-radius: 20px;
  letter-spacing: .3px;
}

/* Tags fin d'article */
.art-tags {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}
.art-tags-lbl { font-size: 12px; font-weight: 700; color: var(--muted); white-space: nowrap; }

/* Auteur bio */
.art-author-bio {
  background: var(--off);
  border-radius: var(--r8);
  padding: 22px;
  display: flex; gap: 16px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.ab-ava {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ab-name { font-size: 15px; font-weight: 800; color: #1a1a1a; margin-bottom: 2px; }
.ab-role { font-size: 11.5px; color: var(--red); font-weight: 600; margin-bottom: 6px; }
.ab-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.ab-links { display: flex; gap: 7px; }
.ab-link {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #555;
  transition: all .2s;
}
.ab-link:hover { background: var(--red); color: #fff; }

/* Articles similaires */
.related-title {
  font-family: var(--sans);
  font-size: 17px; font-weight: 800;
  color: #1a1a1a;
  padding-left: 12px;
  border-left: 3px solid var(--red);
  margin-bottom: 22px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.rel-card { cursor: pointer; transition: transform .2s; }
.rel-card:hover { transform: translateY(-3px); }
.rel-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.rel-body { padding: 10px 0 0; }
.rel-cat { font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.rel-title { font-size: 14.5px; font-weight: 800; line-height: 1.3; color: #1a1a1a; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rel-card:hover .rel-title { color: var(--red); }
.rel-date { font-size: 11.5px; color: #999; margin-top: 4px; }

/* Commentaires */
.comments-section { margin-bottom: 40px; }
.comments-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.comments-ttl { font-size: 17px; font-weight: 800; color: #1a1a1a; }
.comment-form {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  padding: 18px;
  margin-bottom: 24px;
}
.comment-form textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r4);
  font-family: var(--sans); font-size: 13.5px;
  color: var(--text); outline: none;
  resize: vertical; min-height: 80px;
  transition: border .2s;
  margin-bottom: 10px; display: block;
}
.comment-form textarea:focus { border-color: var(--red); }
.btn-comment {
  padding: 9px 20px;
  background: var(--red); color: #fff;
  font-size: 12.5px; font-weight: 700;
  border-radius: var(--r4); border: none;
  cursor: pointer; transition: opacity .2s;
}
.btn-comment:hover { opacity: .88; }
.comment-item {
  display: flex; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.comment-item:last-child { border-bottom: none; }
.cm-ava {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cm-name { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.cm-time { font-size: 11px; color: var(--muted2); }
.cm-text { font-size: 13.5px; color: #333; line-height: 1.6; margin-top: 4px; }
.cm-actions { display: flex; gap: 12px; margin-top: 6px; }
.cm-act { font-size: 11.5px; font-weight: 600; color: var(--muted); cursor: pointer; display: flex; align-items: center; gap: 4px; }
.cm-act:hover { color: var(--red); }

/* Sidebar article */
.art-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 130px; }

/* Partage sidebar */
.share-widget { background: #fff; border: 1px solid var(--border); border-radius: var(--r8); overflow: hidden; }
.sh-col { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; }
.btn-sh-full {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 14px;
  border-radius: var(--r4); border: none;
  font-size: 12.5px; font-weight: 700;
  color: #fff; cursor: pointer;
  transition: all .2s; width: 100%;
}
.btn-sh-full:hover { opacity: .88; }
.btn-sh-full.fb  { background: #1877F2; }
.btn-sh-full.tw  { background: #1DA1F2; }
.btn-sh-full.wa  { background: #25D366; }
.btn-sh-full.ln  { background: #0077B5; }
.btn-sh-full.cp  { background: var(--off); color: #1a1a1a; border: 1.5px solid var(--border); }
.btn-sh-full i { width: 16px; text-align: center; }
.sh-divider { height: 1px; background: var(--border); margin: 6px 0; }
.sh-counter { display: flex; align-items: center; justify-content: space-between; padding: 0 16px 12px; }
.sh-cnt-item { text-align: center; }
.sh-cnt-n { font-size: 16px; font-weight: 800; color: #1a1a1a; line-height: 1; }
.sh-cnt-l { font-size: 10px; color: var(--muted2); }

/* Responsive article */
@media (max-width: 900px) {
  .art-layout { grid-template-columns: 1fr; gap: 32px; }
  .art-side { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .art-h1 { font-size: 26px; }
  .art-hero-img { height: 360px; }
}
@media (max-width: 600px) {
  .art-hero-img { height: 260px; }
  .art-h1 { font-size: 21px; }
  .art-body { font-size: 15.5px; }
  .art-body p:first-of-type { font-size: 16px; }
  .score-num { font-size: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .art-share-row .btn-share span { display: none; }
  .art-share-row .btn-share { padding: 7px 10px; }
  .art-meta-sep { display: none; }
}

/* ===== author.html ===== */
.author-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0D2560 60%, #1251D3 100%);
  padding: 52px 0 0;
  position: relative; overflow: hidden;
}
.author-hero::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:380px; height:380px; border-radius:50%;
  background: radial-gradient(circle, rgba(212,146,10,.1), transparent 70%);
}
.author-profile {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; gap: 28px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}
.author-avatar-wrap { position: relative; flex-shrink: 0; }
.author-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #F5A623);
  border: 4px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 36px; font-weight: 900;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  overflow: hidden;
}
.author-avatar img { width:100%; height:100%; object-fit:cover; }
.author-badge {
  position: absolute; bottom: 4px; right: 4px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 3px 7px; border-radius: 12px;
  border: 2px solid var(--navy);
  letter-spacing: .5px; text-transform: uppercase;
}
.author-info { flex: 1; }
.author-name {
  font-family: var(--serif); font-size: 34px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
.author-role { font-size: 14px; color: var(--gold); font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.author-role::before { content:''; width:20px; height:2px; background:var(--gold); border-radius:2px; }
.author-bio-short { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 520px; margin-bottom: 16px; }
.author-social { display: flex; gap: 8px; }
.aut-soc {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  transition: all .2s; cursor: pointer;
}
.aut-soc:hover { background: rgba(255,255,255,.22); color: #fff; }
.author-stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 0;
}
.aut-stat {
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.aut-stat:last-child { border-right: none; }
.aut-stat-n {
  font-family: var(--serif); font-size: 28px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 3px;
}
.aut-stat-l { font-size: 11px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; }

.author-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; padding: 36px 0 72px; align-items: start; }

.aut-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.aut-tab {
  padding: 11px 20px; font-size: 13.5px; font-weight: 700;
  color: var(--muted); border-bottom: 2px solid transparent;
  cursor: pointer; transition: all .2s; background: none; border-top: none; border-left: none; border-right: none;
  margin-bottom: -2px;
}
.aut-tab.active { color: var(--red); border-bottom-color: var(--red); }
.aut-tab:hover { color: #1a1a1a; }

.author-art-list { display: flex; flex-direction: column; gap: 0; }
.aut-art {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: padding .18s;
  text-decoration: none; color: inherit;
}
.aut-art:last-child { border-bottom: none; }
.aut-art:hover { padding-left: 8px; }
.aut-art-thumb { width: 110px; height: 80px; flex-shrink: 0; border-radius: var(--r4); overflow: hidden; }
.aut-art-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.aut-art:hover .aut-art-thumb img { transform: scale(1.06); }
.aut-art-body { flex: 1; }
.aut-art-cat { font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.aut-art-title { font-size: 15px; font-weight: 800; line-height: 1.3; color: #1a1a1a; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
.aut-art:hover .aut-art-title { color: var(--red); }
.aut-art-meta { display: flex; gap: 12px; font-size: 11px; color: var(--muted2); }

.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 28px; }
.exp-item { background: var(--off); border: 1px solid var(--border); border-radius: var(--r6); padding: 14px 12px; text-align: center; }
.exp-ico { font-size: 20px; margin-bottom: 6px; }
.exp-name { font-size: 12px; font-weight: 700; color: #1a1a1a; }

@media(max-width:900px){
  .author-layout { grid-template-columns:1fr; gap:24px; }
  .author-stats-bar { grid-template-columns:repeat(2,1fr); }
  .expertise-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px){
  .author-name { font-size:24px; }
  .author-avatar { width:80px; height:80px; font-size:26px; }
  .author-stats-bar { grid-template-columns:repeat(2,1fr); }
  .aut-art-thumb { width:80px; height:62px; }
}

/* ===== search.html ===== */
.search-hero { background:linear-gradient(135deg,var(--navy),#0D2560); padding:44px 0; }
.search-form-wrap { max-width:620px; margin:0 auto; text-align:center; }
.search-lbl { font-size:11px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:14px; }
.search-big-row {
  display:flex; align-items:center; gap:0;
  background:#fff; border-radius:var(--r4);
  overflow:hidden; box-shadow:var(--sh3);
}
.search-big-inp {
  flex:1; padding:16px 20px;
  border:none; outline:none;
  font-family:var(--sans); font-size:16px; color:var(--text);
}
.search-big-btn {
  padding:16px 24px;
  background:var(--red); color:#fff;
  border:none; cursor:pointer;
  font-size:15px; transition:opacity .2s;
}
.search-big-btn:hover { opacity:.88; }
.search-stats { margin-top:14px; font-size:13px; color:rgba(255,255,255,.45); }
.search-stats strong { color:rgba(255,255,255,.8); }

.search-layout { display:grid; grid-template-columns:1fr 300px; gap:36px; padding:32px 0 72px; align-items:start; }

.search-filters { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; flex-wrap:wrap; gap:12px; }
.sf-tabs { display:flex; gap:0; background:var(--off); border:1px solid var(--border); border-radius:var(--r4); overflow:hidden; }
.sf-tab {
  padding:8px 16px; font-size:12.5px; font-weight:600;
  color:var(--muted); cursor:pointer; transition:all .2s;
  border:none; background:none;
}
.sf-tab.active { background:#fff; color:var(--red); font-weight:700; box-shadow:var(--sh1); }
.sf-tab:hover:not(.active) { color:#1a1a1a; }

.search-result {
  display:flex; gap:16px;
  padding:20px 0; border-bottom:1px solid var(--border);
  cursor:pointer; transition:padding .18s;
  text-decoration:none; color:inherit;
}
.search-result:last-child { border-bottom:none; }
.search-result:hover { padding-left:8px; }
.sr-thumb { width:130px; height:96px; flex-shrink:0; border-radius:var(--r4); overflow:hidden; }
.sr-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.search-result:hover .sr-thumb img { transform:scale(1.06); }
.sr-body { flex:1; }
.sr-source { display:flex; align-items:center; gap:6px; margin-bottom:5px; }
.sr-cat { font-size:10px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;color:var(--red); }
.sr-dot { width:3px;height:3px;border-radius:50%;background:var(--muted2); }
.sr-type { font-size:10px;color:var(--muted2);font-weight:600; }
.sr-title { font-size:16px;font-weight:800;line-height:1.3;color:#1a1a1a;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.search-result:hover .sr-title { color:var(--red); }
.sr-excerpt { font-size:13px;color:var(--muted);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:8px; }
.sr-excerpt mark { background:rgba(204,31,31,.1);color:var(--red);font-weight:700;padding:0 2px;border-radius:2px; }
.sr-meta { display:flex; gap:12px; font-size:11px; color:var(--muted2); align-items:center; }

.no-results { text-align:center; padding:64px 20px; }
.no-results i { font-size:48px; color:var(--border); margin-bottom:16px; display:block; }
.no-results h3 { font-size:22px;font-weight:800;color:#1a1a1a;margin-bottom:8px; }
.no-results p { font-size:14px;color:var(--muted);max-width:360px;margin:0 auto 20px; }

.suggest-searches { margin-top:28px; }
.ss-lbl { font-size:12px;font-weight:700;color:var(--muted);margin-bottom:10px; }
.ss-tags { display:flex;flex-wrap:wrap;gap:7px; }

@media(max-width:900px){ .search-layout{grid-template-columns:1fr;} }
@media(max-width:600px){ .sr-thumb{width:90px;height:68px;} .sr-excerpt{display:none;} }

/* ===== about.html ===== */
.page-hero { background:linear-gradient(160deg,var(--navy),#0D2560 60%,#1251D3 100%); padding:60px 0; text-align:center; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; top:-80px; right:-80px; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle,rgba(212,146,10,.09),transparent 70%); }
.page-hero-lbl { font-size:10px;font-weight:800;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);margin-bottom:12px; }
.page-hero-ttl { font-family:var(--serif); font-size:42px;font-weight:900;color:#fff;line-height:1;margin-bottom:14px; }
.page-hero-desc { font-size:15px;color:rgba(255,255,255,.5);max-width:520px;margin:0 auto;line-height:1.65; }

/* About */
.about-section { padding:64px 0; }
.about-intro { display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;margin-bottom:72px; }
.about-intro-img { border-radius:var(--r8);overflow:hidden;box-shadow:var(--sh3); }
.about-intro-img img { width:100%;aspect-ratio:4/3;object-fit:cover;display:block; }
.ai-lbl { font-size:10px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:var(--red);margin-bottom:10px; }
.ai-ttl { font-family:var(--serif);font-size:30px;font-weight:900;color:#1a1a1a;line-height:1.15;margin-bottom:16px; }
.ai-body { font-size:15px;color:var(--muted);line-height:1.8;margin-bottom:20px; }
.ai-body strong { color:#1a1a1a; }

.stats-section { background:var(--navy);padding:56px 0;margin-bottom:72px; }
.stats-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:0;text-align:center; }
.stat-item { padding:28px 20px;border-right:1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right:none; }
.stat-n { font-family:var(--serif);font-size:40px;font-weight:900;color:#fff;line-height:1;margin-bottom:5px; }
.stat-n span { color:var(--gold); }
.stat-l { font-size:12px;color:rgba(255,255,255,.35);text-transform:uppercase;letter-spacing:1px; }

.section-title { font-family:var(--sans);font-size:28px;font-weight:900;color:#1a1a1a;text-align:center;margin-bottom:8px; }
.section-sub { font-size:14px;color:var(--muted);text-align:center;max-width:480px;margin:0 auto 40px; }

.team-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:72px; }
.team-card { text-align:center; cursor:pointer; }
.team-card:hover .tc-avatar { transform:scale(1.05); box-shadow:var(--sh2); }
.tc-avatar { width:88px;height:88px;border-radius:50%;margin:0 auto 12px;transition:all .3s;box-shadow:var(--sh1); overflow:hidden; }
.tc-avatar img { width:100%;height:100%;object-fit:cover; }
.tc-name { font-size:14px;font-weight:800;color:#1a1a1a;margin-bottom:3px; }
.tc-role { font-size:11.5px;color:var(--red);font-weight:600;margin-bottom:5px; }
.tc-desc { font-size:11.5px;color:var(--muted);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.tc-soc { display:flex;justify-content:center;gap:6px;margin-top:8px; }
.tc-s { width:24px;height:24px;border-radius:50%;background:var(--off);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:10px;color:#555;transition:all .2s; }
.tc-s:hover { background:var(--red);color:#fff;border-color:var(--red); }

.values-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:72px; }
.val-card { background:#fff;border:1px solid var(--border);border-radius:var(--r8);padding:26px;transition:all .2s; }
.val-card:hover { box-shadow:var(--sh2);transform:translateY(-3px); }
.val-ico { font-size:28px;margin-bottom:12px; }
.val-t { font-size:15px;font-weight:800;color:#1a1a1a;margin-bottom:6px; }
.val-d { font-size:13px;color:var(--muted);line-height:1.65; }

.timeline { position:relative;padding-left:28px; }
.timeline::before { content:'';position:absolute;left:8px;top:0;bottom:0;width:2px;background:var(--border); }
.tl-item { position:relative;margin-bottom:28px;padding-left:24px; }
.tl-dot { position:absolute;left:-28px;top:3px;width:16px;height:16px;border-radius:50%;background:var(--red);border:3px solid #fff;box-shadow:0 0 0 2px var(--red-m); }
.tl-year { font-size:11px;font-weight:800;color:var(--red);letter-spacing:.5px;margin-bottom:3px; }
.tl-t { font-size:14px;font-weight:700;color:#1a1a1a; }
.tl-d { font-size:12.5px;color:var(--muted);line-height:1.5; }

@media(max-width:900px){ .about-intro{grid-template-columns:1fr;gap:28px;} .team-grid{grid-template-columns:repeat(2,1fr);} .values-grid{grid-template-columns:1fr 1fr;} .stats-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .page-hero-ttl{font-size:28px;} .team-grid{grid-template-columns:repeat(2,1fr);} .values-grid{grid-template-columns:1fr;} }

/* ===== contact.html ===== */
.page-hero{background:linear-gradient(160deg,var(--navy),#0D2560 60%,#1251D3 100%);padding:60px 0;text-align:center;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;top:-80px;right:-80px;width:320px;height:320px;border-radius:50%;background:radial-gradient(circle,rgba(212,146,10,.09),transparent 70%);}
.page-hero-lbl{font-size:10px;font-weight:800;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);margin-bottom:12px;}
.page-hero-ttl{font-family:var(--serif);font-size:42px;font-weight:900;color:#fff;line-height:1;margin-bottom:14px;}
.page-hero-desc{font-size:15px;color:rgba(255,255,255,.5);max-width:520px;margin:0 auto;line-height:1.65;}

.contact-section{padding:64px 0 80px;}
.contact-layout{display:grid;grid-template-columns:1fr 420px;gap:56px;align-items:start;}

/* Form */
.contact-form-card{background:#fff;border:1px solid var(--border);border-radius:var(--r8);padding:36px;}
.cf-ttl{font-family:var(--sans);font-size:22px;font-weight:900;color:#1a1a1a;margin-bottom:6px;}
.cf-sub{font-size:13px;color:var(--muted);margin-bottom:28px;line-height:1.5;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
.form-group{margin-bottom:14px;}
.form-group label{display:block;font-size:12px;font-weight:700;color:#1a1a1a;margin-bottom:5px;}
.form-group input, .form-group select, .form-group textarea{width:100%;padding:11px 13px;border:1.5px solid var(--border);border-radius:var(--r4);font-family:var(--sans);font-size:13.5px;color:var(--text);outline:none;transition:border .2s;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--red);}
.form-group textarea{resize:vertical;min-height:130px;}
.form-group select{background:#fff;cursor:pointer;}
.btn-send{width:100%;padding:13px;background:var(--red);color:#fff;font-family:var(--sans);font-size:14px;font-weight:700;border-radius:var(--r4);border:none;cursor:pointer;transition:opacity .2s;display:flex;align-items:center;justify-content:center;gap:8px;}
.btn-send:hover{opacity:.88;}
.form-note{font-size:11px;color:var(--muted);text-align:center;margin-top:9px;}

/* Sidebar contact */
.contact-info{display:flex;flex-direction:column;gap:22px;}
.ci-card{background:#fff;border:1px solid var(--border);border-radius:var(--r8);overflow:hidden;}
.ci-card-head{background:linear-gradient(135deg,var(--navy),#0D2560);padding:16px 20px;display:flex;align-items:center;gap:10px;}
.ci-card-ttl{font-size:14px;font-weight:800;color:#fff;}
.ci-card-ico{width:32px;height:32px;border-radius:var(--r4);background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0;}
.ci-card-body{padding:16px 20px;}
.ci-row{display:flex;gap:12px;padding:9px 0;border-bottom:1px solid var(--border);}
.ci-row:last-child{border-bottom:none;padding-bottom:0;}
.ci-ico-wrap{width:30px;height:30px;border-radius:var(--r4);background:var(--red-l);display:flex;align-items:center;justify-content:center;font-size:11px;color:var(--red);flex-shrink:0;}
.ci-lbl{font-size:11px;font-weight:700;color:var(--muted2);margin-bottom:1px;}
.ci-val{font-size:13px;font-weight:600;color:#1a1a1a;}
.ci-val a{color:var(--red);}

.bureaux-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:16px 20px;}
.bureau-item{background:var(--off);border-radius:var(--r4);padding:12px;}
.bi-flag{font-size:18px;margin-bottom:5px;}
.bi-city{font-size:12.5px;font-weight:800;color:#1a1a1a;}
.bi-role{font-size:11px;color:var(--muted);}

@media(max-width:960px){.contact-layout{grid-template-columns:1fr;}.form-row{grid-template-columns:1fr;}}
@media(max-width:600px){.page-hero-ttl{font-size:28px;}.contact-form-card{padding:22px;}.bureaux-grid{grid-template-columns:1fr 1fr;}}

/* ===== premium.html ===== */
.prem-hero{background:linear-gradient(160deg,var(--navy) 0%,#1A3A6E 50%,#0D2560 100%);padding:72px 0 56px;text-align:center;position:relative;overflow:hidden;}
.prem-hero::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(212,146,10,.12),transparent 70%);}
.prem-hero::after{content:'';position:absolute;bottom:-60px;left:-60px;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle,rgba(18,81,211,.18),transparent 70%);}
.ph-crown{font-size:44px;margin-bottom:16px;}
.ph-lbl{font-size:10px;font-weight:800;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);margin-bottom:12px;}
.ph-ttl{font-family:var(--serif);font-size:46px;font-weight:900;color:#fff;line-height:1;margin-bottom:14px;}
.ph-desc{font-size:16px;color:rgba(255,255,255,.5);max-width:480px;margin:0 auto 28px;line-height:1.65;}
.ph-trial{display:inline-flex;align-items:center;gap:8px;background:var(--gold);color:var(--navy);font-size:13px;font-weight:800;padding:12px 28px;border-radius:24px;box-shadow:0 8px 24px rgba(212,146,10,.3);transition:all .2s;cursor:pointer;}
.ph-trial:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(212,146,10,.4);}
.ph-note{font-size:11.5px;color:rgba(255,255,255,.3);margin-top:10px;}

.prem-section{padding:72px 0 80px;background:var(--bg);}

/* Plans */
.plans-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:72px;}
.plan-card{background:#fff;border:2px solid var(--border);border-radius:var(--r8);padding:32px 26px;text-align:center;position:relative;transition:all .2s;}
.plan-card:hover{box-shadow:var(--sh2);transform:translateY(-3px);}
.plan-card.popular{border-color:var(--gold);box-shadow:0 8px 32px rgba(212,146,10,.14);}
.plan-badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--gold);color:var(--navy);font-size:10px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;padding:5px 14px;border-radius:20px;white-space:nowrap;}
.plan-ico{font-size:30px;margin-bottom:12px;}
.plan-name{font-size:15px;font-weight:800;color:#1a1a1a;margin-bottom:6px;}
.plan-price{font-family:var(--serif);font-size:40px;font-weight:900;color:#1a1a1a;line-height:1;margin-bottom:4px;}
.plan-price span{font-size:16px;font-weight:700;color:var(--muted);}
.plan-period{font-size:11.5px;color:var(--muted);margin-bottom:20px;}
.plan-divider{height:1px;background:var(--border);margin:20px 0;}
.plan-feats{text-align:left;margin-bottom:24px;}
.plan-feat{display:flex;align-items:flex-start;gap:9px;padding:6px 0;font-size:12.5px;color:#333;line-height:1.4;}
.plan-feat i{color:var(--gold);font-size:10px;margin-top:3px;flex-shrink:0;}
.plan-feat.no{color:var(--muted2);}
.plan-feat.no i{color:var(--border);}
.btn-plan{width:100%;padding:12px;border-radius:var(--r4);font-family:var(--sans);font-size:13px;font-weight:800;border:none;cursor:pointer;transition:all .2s;}
.btn-plan.primary{background:var(--navy);color:#fff;}
.btn-plan.primary:hover{background:var(--red);}
.btn-plan.gold{background:linear-gradient(135deg,var(--gold),#F5A623);color:var(--navy);}
.btn-plan.gold:hover{transform:translateY(-1px);box-shadow:0 6px 18px rgba(212,146,10,.35);}
.btn-plan.outline{background:#fff;color:#1a1a1a;border:1.5px solid var(--border);}
.btn-plan.outline:hover{border-color:#1a1a1a;}

/* Features */
.features-section{margin-bottom:72px;}
.feat-section-ttl{font-family:var(--sans);font-size:28px;font-weight:900;color:#1a1a1a;text-align:center;margin-bottom:8px;}
.feat-section-sub{font-size:14px;color:var(--muted);text-align:center;max-width:480px;margin:0 auto 40px;line-height:1.55;}
.feats-big-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.feat-big-card{background:#fff;border:1px solid var(--border);border-radius:var(--r8);padding:28px;transition:all .2s;}
.feat-big-card:hover{box-shadow:var(--sh2);transform:translateY(-3px);}
.fbc-ico{width:48px;height:48px;border-radius:var(--r8);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:14px;}
.fbc-ico.red{background:var(--red-l);}
.fbc-ico.gold{background:var(--gold-l);}
.fbc-ico.blue{background:var(--blues);}
.fbc-ico.navy{background:rgba(4,17,47,.06);}
.fbc-t{font-size:15px;font-weight:800;color:#1a1a1a;margin-bottom:6px;}
.fbc-d{font-size:13px;color:var(--muted);line-height:1.65;}

/* FAQ */
.faq-section{margin-bottom:72px;}
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:18px 0;cursor:pointer;font-size:14.5px;font-weight:700;color:#1a1a1a;gap:14px;}
.faq-q:hover{color:var(--red);}
.faq-ico{font-size:12px;color:var(--muted2);transition:transform .2s;flex-shrink:0;}
.faq-item.open .faq-ico{transform:rotate(180deg);}
.faq-a{font-size:13.5px;color:var(--muted);line-height:1.7;padding-bottom:16px;display:none;}
.faq-item.open .faq-a{display:block;}

/* Testimonials */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:48px;}
.testi-card{background:#fff;border:1px solid var(--border);border-radius:var(--r8);padding:22px;}
.testi-stars{color:var(--gold);font-size:12px;margin-bottom:10px;}
.testi-text{font-family:var(--italic);font-style:italic;font-size:14px;color:#333;line-height:1.65;margin-bottom:14px;}
.testi-author{display:flex;align-items:center;gap:9px;}
.testi-av{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800;color:#fff;flex-shrink:0;}
.testi-name{font-size:12.5px;font-weight:700;color:#1a1a1a;}
.testi-loc{font-size:11px;color:var(--muted);}

@media(max-width:900px){.plans-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto 72px;}.feats-big-grid{grid-template-columns:1fr 1fr;}.testi-grid{grid-template-columns:1fr;}}
@media(max-width:600px){.ph-ttl{font-size:30px;}.feats-big-grid{grid-template-columns:1fr;}}

/* ===== 404.html ===== */
html,body{height:100%;}
.err-page{min-height:100vh;display:flex;flex-direction:column;}
.err-main{flex:1;background:linear-gradient(160deg,var(--navy) 0%,#0D2560 60%,#1251D3 100%);display:flex;align-items:center;justify-content:center;text-align:center;position:relative;overflow:hidden;padding:40px 20px;}
.err-main::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(212,146,10,.1),transparent 70%);}
.err-main::after{content:'';position:absolute;bottom:-80px;left:-60px;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(18,81,211,.2),transparent 70%);}
.err-content{position:relative;z-index:1;max-width:560px;}
.err-globe{font-size:64px;margin-bottom:8px;animation:float 3s ease-in-out infinite;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
.err-code{font-family:var(--serif);font-size:120px;font-weight:900;color:rgba(255,255,255,.08);line-height:1;letter-spacing:-4px;margin-bottom:-30px;}
.err-ttl{font-family:var(--serif);font-size:32px;font-weight:900;color:#fff;line-height:1.15;margin-bottom:12px;}
.err-desc{font-size:15px;color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:32px;}
.err-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:44px;}
.btn-err-home{display:inline-flex;align-items:center;gap:7px;padding:12px 24px;background:var(--red);color:#fff;font-size:13.5px;font-weight:800;border-radius:var(--r4);transition:opacity .2s;}
.btn-err-home:hover{opacity:.88;color:#fff;}
.btn-err-srch{display:inline-flex;align-items:center;gap:7px;padding:12px 24px;background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.18);color:rgba(255,255,255,.75);font-size:13.5px;font-weight:700;border-radius:var(--r4);transition:all .2s;}
.btn-err-srch:hover{background:rgba(255,255,255,.2);color:#fff;}
.err-suggest-ttl{font-size:11px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:14px;}
.err-cats{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;}
.err-cat{display:inline-flex;align-items:center;gap:6px;padding:7px 14px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:20px;font-size:12px;font-weight:600;color:rgba(255,255,255,.6);transition:all .2s;cursor:pointer;text-decoration:none;}
.err-cat:hover{background:rgba(255,255,255,.16);color:#fff;}
.err-search-bar{display:flex;align-items:center;gap:0;background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.15);border-radius:var(--r4);overflow:hidden;margin-bottom:32px;backdrop-filter:blur(8px);}
.err-search-inp{flex:1;padding:13px 16px;background:none;border:none;outline:none;font-family:var(--sans);font-size:14px;color:#fff;}
.err-search-inp::placeholder{color:rgba(255,255,255,.35);}
.err-search-btn{padding:13px 18px;background:var(--red);color:#fff;border:none;cursor:pointer;font-size:14px;transition:opacity .2s;}
.err-search-btn:hover{opacity:.88;}
/* ================================================================
   MENU PRINCIPAL — MAJUSCULES
================================================================ */
.nav-list > a,
.nav-list .dropdown-toggle {
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 11.5px;
  color: #fff;
}

/* ================================================================
   HERO DROITE — À LA UNE DÉFILANT (remplace .hr-une statique)
================================================================ */
.hero-right {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-left: 1px solid var(--border);
}

.hr-lbl-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px 10px;
  border-bottom: 2px solid var(--red);
  flex-shrink: 0;
}
.hr-lbl-bar span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
}
.hr-lbl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: ldot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.une-scroll-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.une-scroll-outer::before,
.une-scroll-outer::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  z-index: 4;
  pointer-events: none;
}
.une-scroll-outer::before { top: 0;    background: linear-gradient(to bottom, #fff, transparent); }
.une-scroll-outer::after  { bottom: 0; background: linear-gradient(to top,   #fff, transparent); }
.une-scroll-track { will-change: transform; }

/* ================================================================
   BANNIÈRES PUBLICITAIRES LARGES
================================================================ */
.ad-banner-wide {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  background: linear-gradient(120deg, #04112F 0%, #0D2560 55%, #1251D3 100%);
}
.ad-banner-gold {
  background: linear-gradient(120deg, #5C3D00 0%, #8B5E08 50%, #D4920A 100%);
}
.adw-inner {
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}
.adw-badge {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.adw-content {
  display: flex;
  align-items: center;
  gap: 32px;
}
.adw-left  { flex: 1; min-width: 0; }
.adw-right { flex-shrink: 0; }
.adw-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.adw-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ad-banner-gold .adw-tag { color: rgba(255,255,255,.8); }
.adw-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.adw-sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.adw-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all .22s;
  text-decoration: none;
}
.adw-cta:hover { background: #f0f4ff; transform: translateY(-1px); color: var(--navy); }
.ad-banner-gold .adw-cta { background: var(--navy); color: #fff; }
.ad-banner-gold .adw-cta:hover { background: #fff; color: var(--navy); }
.adw-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.adw-stat {}
.adw-sv {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.adw-sl {
  font-size: 9.5px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
  letter-spacing: .4px;
}

/* ================================================================
   AGENDA — ÉVÉNEMENTS
================================================================ */
.events-sect { margin-bottom: 48px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.event-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(4,17,47,.12);
  border-color: transparent;
}
.event-img-wrap {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
}
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}
.event-card:hover .event-img-wrap img { transform: scale(1.05); }
.event-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,17,47,.65) 100%);
}
.event-cat {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-date-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 2;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.event-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.event-card:hover .event-title { color: var(--red); }
.event-loc {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}
.event-loc i { color: var(--red); font-size: 10px; }
.event-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 7px 16px;
  border-radius: 30px;
  transition: all .22s;
  text-decoration: none;
  align-self: flex-start;
}
.event-btn:hover { background: var(--navy); color: #fff; }

/* ================================================================
   VIDÉOTHÈQUE
================================================================ */
.video-sect { margin-bottom: 48px; }

.video-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(4,17,47,.14);
}
.vf-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-height: 260px;
}
.vf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}
.vf-thumb:hover img { transform: scale(1.04); }
.vf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,17,47,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.vf-thumb:hover .vf-overlay { background: rgba(4,17,47,.55); }
.vf-play {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  transition: transform .22s;
  box-shadow: 0 6px 28px rgba(0,0,0,.3);
}
.vf-thumb:hover .vf-play { transform: scale(1.1); }
.vf-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}
.vf-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vf-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.vf-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 10px;
}
.vf-meta {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vf-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 22px;
}
.vf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all .2s;
  align-self: flex-start;
  text-decoration: none;
}
.vf-btn:hover { background: #b01818; color: #fff; transform: translateY(-1px); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.video-card {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(4,17,47,.1);
  border-color: transparent;
}
.vc-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0f1e;
}
.vc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.video-card:hover .vc-thumb img { transform: scale(1.06); }
.vc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,17,47,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .22s;
}
.video-card:hover .vc-overlay { opacity: 1; }
.vc-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
}
.vc-duration {
  position: absolute;
  bottom: 6px; right: 6px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}
.vc-body { padding: 10px 10px 12px; }
.vc-cat {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.vc-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vc-meta {
  font-size: 10px;
  color: var(--muted2);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ================================================================
   GALERIE PHOTO
================================================================ */
.gallery-sect { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 8px;
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  background: var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,17,47,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .28s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { flex: 1; }
.gallery-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}
.gallery-loc {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 3px;
}
.gallery-zoom {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  align-self: flex-end;
}

/* ================================================================
   LIGHTBOX
================================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
  border: 1px solid rgba(255,255,255,.2);
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-inner { max-width: min(900px, 92vw); text-align: center; }
.lb-inner img { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: 6px; }
.lb-caption { margin-top: 14px; }
.lb-title { font-family: var(--serif); font-size: 17px; font-weight: 700; color: #fff; }
.lb-loc { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ================================================================
   BADGE PREMIUM SUR LES CARTES
================================================================ */
.cc-thumb { position: relative; }
.cc-prem-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(212,146,10,.92);
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 3px;
  z-index: 2;
  line-height: 1;
}

/* ================================================================
   RESPONSIVE NOUVELLES SECTIONS
================================================================ */
@media (max-width: 1050px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
  .adw-stats { gap: 14px; }
  .adw-sv { font-size: 22px; }
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
  .video-featured { grid-template-columns: 1fr; }
  .vf-thumb { min-height: 200px; }
  .vf-body { padding: 18px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; gap: 5px; }
  .adw-content { flex-direction: column; gap: 16px; }
  .adw-divider { display: none; }
  .adw-stats { flex-direction: row; justify-content: center; gap: 20px; }
  .adw-inner { padding: 18px 16px; }
  .adw-title { font-size: 19px; }
  .hnav { display: none !important; }
}

/* ================================================================
   CORRECTIONS CIBLÉES — SECTIONS NOUVELLES
================================================================ */

/* ── 1. BANNIÈRES PUB — stats horizontales côte à côte ── */
.adw-stats {
  flex-direction: row !important;
  gap: 28px !important;
  align-items: center;
  justify-content: flex-end;
}
.adw-stat {
  text-align: center;
  min-width: 72px;
}
.adw-sv {
  font-size: 28px !important;
  display: block;
}
.adw-sl {
  font-size: 10px !important;
  color: rgba(255,255,255,.45) !important;
  display: block;
  white-space: nowrap;
}
/* Séparateur vertical entre stats */
.adw-stat + .adw-stat {
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 28px;
}
/* Fond décoratif bannière */
.ad-banner-wide::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.ad-banner-wide::after {
  content: '';
  position: absolute;
  top: -20px; right: 160px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
/* Ligne dorée en haut */
.ad-banner-wide { border-top: 3px solid var(--gold); }
.ad-banner-gold { border-top: 3px solid rgba(255,255,255,.25); }

/* ── 2. AGENDA — image plus haute, texte mieux espacé ── */
.events-sect {
  margin-top: 8px;
  margin-bottom: 52px;
}
.events-grid {
  gap: 20px !important;
}
.event-img-wrap {
  aspect-ratio: 16/7 !important;
}
.event-body {
  padding: 18px 20px 20px !important;
  gap: 6px;
}
.event-title {
  font-size: 15.5px !important;
  margin-bottom: 10px !important;
}
.event-loc {
  font-size: 12.5px !important;
  color: var(--muted) !important;
  margin-bottom: 16px !important;
}
.event-btn {
  padding: 8px 18px !important;
  font-size: 12.5px !important;
}

/* ── 3. VIDÉOTHÈQUE — proportions corrigées ── */
.video-sect {
  margin-top: 8px;
  margin-bottom: 52px;
}
.video-featured {
  min-height: 300px;
}
.vf-thumb {
  min-height: 300px !important;
}
.vf-thumb img {
  height: 100% !important;
}
.vf-body {
  padding: 32px 28px !important;
}
.vf-title {
  font-size: 21px !important;
  margin-bottom: 12px !important;
}
.vf-desc {
  font-size: 13.5px !important;
  color: rgba(255,255,255,.55) !important;
}
/* Grille vidéos — hauteur fixe pour les cartes */
.video-grid {
  margin-top: 16px;
}
.vc-body {
  padding: 11px 12px 14px !important;
}
.vc-title {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  line-height: 1.38 !important;
}

/* ── 4. GALERIE PHOTO — hauteur de ligne augmentée ── */
.gallery-sect {
  margin-top: 8px;
  margin-bottom: 52px;
}
.gallery-grid {
  grid-auto-rows: 200px !important;
  gap: 10px !important;
}
.gallery-item-large {
  grid-column: span 2 !important;
  grid-row: span 2 !important;
}
.gallery-title {
  font-size: 12.5px !important;
  font-weight: 700 !important;
}
.gallery-loc {
  font-size: 11px !important;
}

/* ── 5. RESPONSIVE — corrections mobiles/tablettes ── */
@media (max-width: 1050px) {
  .adw-stats { gap: 20px !important; }
  .adw-stat + .adw-stat { padding-left: 20px; }
  .adw-sv { font-size: 22px !important; }
  .video-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .gallery-grid { grid-auto-rows: 165px !important; }
}

@media (max-width: 768px) {
  .adw-stats {
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    flex-wrap: wrap;
  }
  .adw-stat + .adw-stat { padding-left: 14px; }
  .adw-sv { font-size: 19px !important; }
  .video-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 130px !important;
    gap: 6px !important;
  }
  .gallery-item-large {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
  .video-featured { grid-template-columns: 1fr !important; }
  .vf-thumb { min-height: 220px !important; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-grid { grid-auto-rows: 100px !important; }
  .adw-content { flex-direction: column !important; gap: 14px !important; }
  .adw-divider { display: none !important; }
  .adw-right { width: 100%; }
  .adw-stats { justify-content: space-around !important; }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1156px !important;
    }
}