/*
Theme Name:  Otis CongoPresse
Theme URI:   https://congopresse.info
Author:      Otis
Author URI:  https://congopresse.info
Description: Thème d'actualités complet pour congopresse.info — layout héroïque, grilles section par section, navigation sticky, mobile-first.
Version:     5.1.0
Requires at least: 6.0
Requires PHP: 7.4
License:     GPL-2.0-or-later
Text Domain: congopresse
*/
/* ============================================================
   CONGOPRESSE.INFO — HOMEPAGE STYLESHEET
   Desktop-first, pixel-precise replica
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #00AEEF; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TOKENS ---- */
:root {
  --red:        #00AEEF;
  --red-dark:   #0090C8;
  --red-light:  #e0f5fd;
  --black:      #1a1a1a;
  --gray-900:   #2c2c2c;
  --gray-700:   #555;
  --gray-500:   #888;
  --gray-300:   #c8c8c8;
  --gray-200:   #e8e8e8;
  --gray-100:   #f5f5f5;
  --white:      #ffffff;
  --nav-h:      42px;
  --header-h:   60px;
  --total-h:    calc(var(--header-h) + var(--nav-h));
  --container:  1240px;
  --gap:        20px;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BREAKING BAR
   ============================================================ */
.breaking-bar {
  background: var(--red);
  color: #fff;
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}

.breaking-label {
  flex-shrink: 0;
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 0;
}
.breaking-track-wrapper {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.breaking-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  animation: tickerScroll 18s linear infinite;
  will-change: transform;
}
.breaking-track span::before { content: '▸ '; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: all .25s ease;
}
.hamburger:hover span { background: var(--red); }

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.header-date {
  font-size: 12px;
  color: var(--gray-500);
  font-style: italic;
}

/* Logo */
.header-center { display: flex; align-items: center; justify-content: center; }
.site-logo, .footer-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  line-height: 1;
  user-select: none;
}
.logo-le {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
}
.logo-soir {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-logo:hover .logo-le,
.site-logo:hover .logo-soir { color: var(--red-dark); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: flex-end;
}
.btn-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.btn-icon:hover { background: var(--red-light); color: var(--red-dark); }
.btn-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  padding: 6px 14px;
  border: 1.5px solid var(--red);
  border-radius: 3px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-login:hover { background: var(--red); color: #fff; }
.btn-subscribe {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  padding: 7px 16px;
  border-radius: 3px;
  letter-spacing: .3px;
  transition: background .2s;
}
.btn-subscribe:hover { background: var(--red-dark); color: #fff; }

/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  height: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
}
.nav-list {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex: 1;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 100%;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  border-bottom: none;
  transition: color .2s, background .2s, border-radius .2s;
  position: relative;
}
.nav-link:hover {
  color: var(--red);
}
.nav-link.active {
  background: var(--red);
  color: #fff;
  border-radius: 20px;
  border-bottom-color: transparent;
  padding: 0 16px;
}
.nav-arrow {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: var(--red);
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
  border: none;
  transition: color .2s, opacity .2s;
}
.nav-arrow:hover { color: var(--red-dark); }
.nav-arrow-right {
  right: 0;
  background: linear-gradient(to left, #fff 55%, transparent);
  padding-left: 8px;
}
.nav-arrow-left {
  left: 0;
  background: linear-gradient(to right, #fff 55%, transparent);
  padding-right: 8px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 300;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.nav-drawer.open { left: 0; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 3px;
}
.drawer-close {
  font-size: 20px;
  color: var(--gray-700);
  cursor: pointer;
  padding: 4px;
}
.drawer-list li { border-bottom: 1px solid var(--gray-100); }
.drawer-list a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background .2s, color .2s;
}
.drawer-list a:hover { background: var(--gray-100); color: var(--red); }

/* ============================================================
   GLOBAL ARTICLE ELEMENTS
   ============================================================ */
.article-category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.sport-cat { color: #0055a5; }
.article-time, .article-readtime, .article-author {
  font-size: 12px;
  color: var(--gray-500);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.article-meta strong { color: var(--gray-900); }
.article-readtime::before { content: '·'; margin-right: 6px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.content-section { padding: 28px 0; }
.content-section--light { background: var(--gray-100); }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: .2px;
}
.section-title a { color: inherit; }
.section-title a:hover { color: var(--red); }
.section-title--white { color: #fff; }
.section-title--red-line { border-bottom-color: var(--red); }
.section-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.section-more--white { color: #fff; }
.section-more:hover { text-decoration: underline; }

/* ============================================================
   À LA UNE SECTION
   ============================================================ */
.section-une {
  padding: 24px 0 0;
  background: #fff;
}
.une-grid {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 24px;
  align-items: start;
}

/* ============================================================
   LEFT SIDEBAR — LE FIL INFO
   ============================================================ */
.une-sidebar-left { padding-top: 8px; }

/* Weather + stock widgets */
.widgets-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.widget {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.widget-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  margin: 0 12px;
  flex-shrink: 0;
}
.widget-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-500);
}
.widget-location {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--gray-500);
}
.widget-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.widget-value--up {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #1a7f37;
  font-size: 14px;
}
.widget-value--down {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #c0392b;
  font-size: 14px;
}

/* Le fil info header + tabs */
.fil-header { margin-bottom: 10px; }
.fil-title {
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.fil-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}
.fil-tab {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--black);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.fil-tab--active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.fil-tab:not(.fil-tab--active):hover {
  border-color: var(--red);
  color: var(--red);
}

/* Timeline */
.live-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 36px 12px 1fr;
  gap: 0 4px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.timeline-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.timeline-dot {
  font-size: 14px;
  color: var(--red);
  line-height: 1;
  margin-top: 1px;
}
.timeline-link {
  font-size: 13px;
  line-height: 1.45;
  color: var(--black);
  font-weight: 400;
}
.timeline-link:hover { color: var(--red); }

/* "Voir tout" rounded button */
.fil-more-btn {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 20px;
  padding: 7px 16px;
  transition: background .2s, color .2s;
}
.fil-more-btn:hover { background: var(--red); color: #fff; }

/* ============================================================
   HERO CENTER — title above, crops into image
   ============================================================ */
.une-hero { display: flex; flex-direction: column; }

/* Title block is fully TRANSPARENT — no block background.
   White lives only on each text line via box-decoration-break.
   The image rises up behind the block and is visible:
     - through the transparent padding zone at the bottom
     - on the sides of shorter lines (centered text) */
.hero-title-block {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-bottom: 100px;   /* image shows through last ~2 lines */
  margin-bottom: -100px;   /* image rises up behind the title */
  text-align: center;
}
.hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.6;        /* extra height so white bg wraps each line visibly */
  letter-spacing: -.4px;
  text-align: center;
  text-decoration: none;
}
/* Per-line white highlight — key technique */
.hero-title a {
  display: inline;
  background: #ffffff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 6px;          /* horizontal padding on each line */
  color: var(--black);
  text-decoration: none;
}
.hero-title a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }

/* Image: z-index 1 so it sits behind the title block */
.hero-img-link {
  display: block;
  position: relative;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  aspect-ratio: 720/430;
  overflow: hidden;
  background: var(--gray-200);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hero-img-link:hover .hero-img { transform: scale(1.03); }

.hero-content {
  padding: 12px 0 0;
  position: relative;
  z-index: 2;
}
.hero-excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.hero-related {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  padding: 6px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hero-related-arrow { color: var(--red); font-weight: 700; flex-shrink: 0; }
.hero-related-link {
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
}
.hero-related-link:hover { color: var(--red); }

/* ============================================================
   RIGHT SIDEBAR — congopresse.info article style
   ============================================================ */
.une-sidebar-right { display: flex; flex-direction: column; }
.ad-sidebar-top { margin-bottom: 20px; }
.sidebar-articles { display: flex; flex-direction: column; }

.sa-cp {
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
}
.sa-cp:first-child { border-top: none; }

/* "■ Catégorie | Titre complet en gras" — all one heading */
.sa-cp-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.sa-cp-title a { color: var(--black); }
.sa-cp-title a:hover { color: var(--red); }

/* ■ colored square */
.sa-cat-square {
  display: inline-block;
  width: 11px;
  height: 11px;
  background: #e5a020;        /* orange/amber accent */
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

/* Category name in orange */
.sa-cat-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #e5a020;
  font-style: italic;
}

/* Pipe separator */
.sa-cat-pipe {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--gray-400, #aaa);
  font-weight: 400;
}

/* Body: image floated LEFT, text wraps around it */
.sa-cp-body {
  overflow: hidden;           /* clearfix */
  margin-bottom: 6px;
}
.sa-cp-img {
  float: left;
  width: 130px;
  height: auto;
  margin: 2px 12px 8px 0;
  display: block;
  object-fit: cover;
}
.sa-cp-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
}

/* Clearfix after float */
.sa-cp-body::after {
  content: '';
  display: table;
  clear: both;
}

/* "Par Author" line below */
.sa-cp-author {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 4px;
  clear: both;
}
.sa-author-link {
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}
.sa-author-link:hover { color: var(--red); }

/* ============================================================
   AD BLOCKS
   ============================================================ */
.ad-label {
  display: block;
  font-size: 9px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 4px;
}
.ad-block { text-align: center; }
.ad-placeholder img { display: inline-block; width: auto; height: auto; max-width: 100%; }
.ad-strip {
  background: var(--gray-100);
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.ad-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ad-leaderboard {
  width: auto;
  max-width: 970px;
  height: 90px;
  object-fit: cover;
  display: inline-block;
}
.ad-skyscraper {
  width: 300px;
  height: 600px;
  object-fit: cover;
  display: inline-block;
}

/* ============================================================
   MAGAZINE MOSAIC GRID — congopresse.info 4-column layout
   ============================================================ */
.mag-section { padding: 24px 0; }

.mag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto auto;
  gap: 16px 20px;
}

/* ── Col 1, row 1-2: product ad block ── */
.mag-ad-products {
  grid-column: 1;
  grid-row: 1 / 3;
  border-right: 1px solid var(--gray-200);
  padding-right: 16px;
}
.mag-sponsored-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.mag-products-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mag-product {
  position: relative;
  overflow: hidden;
}
.mag-product img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.mag-discount {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
}

/* ── Standard card (col 2-4, rows 1-2, and rows 3-5) ── */
.mag-card { min-width: 0; }
.mag-card-img {
  width: 100%;
  aspect-ratio: 280/180;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.mag-card-img--tall { aspect-ratio: 280/220; }
.mag-card a:first-child { display: block; overflow: hidden; }
.mag-card a:first-child:hover .mag-card-img { transform: scale(1.04); }
.mag-card-body { padding-top: 8px; }
.mag-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 4px 0 5px;
  color: var(--black);
}
.mag-card-title a { color: var(--black); }
.mag-card-title a:hover { color: var(--red); }
.mag-card-title--bottom { font-size: 13px; }

/* Video badge overlay */
.mag-card-video-wrap { position: relative; }
.mag-video-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
}

/* Inline category prefix "■ Cat | " */
.mag-cat-inline { display: inline; }
.mag-cat-inline .sa-cat-square { width: 9px; height: 9px; }
.mag-cat-inline .sa-cat-name { font-size: 13px; }

/* Sponsored tag */
.mag-sponsored-tag {
  display: block;
  font-size: 9.5px;
  color: var(--gray-500);
  letter-spacing: .5px;
  margin-bottom: 3px;
  font-style: italic;
}

/* Promo block (col 4 row 2) */
.mag-promo-block {
  background: var(--black);
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 160px;
}
.mag-promo-logo {
  font-family: 'Merriweather', serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
}
.mag-promo-logo strong { font-size: 16px; }
.mag-promo-text { font-size: 12px; color: #ccc; line-height: 1.5; }
.mag-promo-text strong { color: #fff; }
.mag-promo-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background .2s;
}
.mag-promo-btn:hover { background: var(--red-dark); color: #fff; }

/* ── Grand Format: col 1-2, rows 3-4 ── */
.mag-grand {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.mag-grand-img {
  width: 100%;
  aspect-ratio: 580/300;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}
.mag-grand-body {}
.mag-grand-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
}
.mag-grand-title a { color: var(--black); }
.mag-grand-title a:hover { color: var(--red); }
.mag-grand-title .sa-cat-name { font-size: 14px; }
.mag-grand-title .sa-cat-square { width: 10px; height: 10px; }
.mag-grand-excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.mag-grand-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  padding-left: 0;
}
.mag-grand-links li a {
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.4;
}
.mag-grand-links li a:hover { color: var(--red); }

/* ── Rows 3-4: col 3-4 ── */
/* These use the default .mag-card style and auto-place */

/* ── Row 5 col 2: empty ── */
.mag-empty { }

/* Author small */
.article-author-sm {
  font-size: 11.5px;
  color: var(--gray-500);
}
.article-author-sm strong { color: var(--black); font-size: 12px; }

/* Separator between row groups */
.mag-card,
.mag-promo-block {
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}
.mag-ad-products { border-top: none; padding-top: 0; }
.mag-grand { padding-top: 16px; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
  .mag-ad-products { grid-column: 1; grid-row: auto; border-right: none; }
  .mag-grand { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 600px) {
  .mag-grid { grid-template-columns: 1fr; }
  .mag-grand { grid-column: 1; }
}

/* ============================================================
   TRIPTYCH SECTION — congopresse.info 3-column layout
   (left stack | center hero | right stack + centered title)
   ============================================================ */
.triptych-section {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}

/* Centered title with horizontal rules */
.triptych-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.triptych-rule {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}
.triptych-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  color: var(--red);
  text-align: center;
  flex-shrink: 0;
}
.triptych-title a { color: var(--red); }
.triptych-title a:hover { color: var(--red-dark); }

/* 3-column grid */
.triptych-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Side columns: 2 articles stacked */
.triptych-col--side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.triptych-item-img {
  width: 100%;
  aspect-ratio: 280/190;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.triptych-item a:first-child { display: block; overflow: hidden; }
.triptych-item a:first-child:hover .triptych-item-img { transform: scale(1.04); }
.triptych-item-body { padding-top: 8px; }
.triptych-item-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 5px;
}
.triptych-item-title a { color: var(--black); }
.triptych-item-title a:hover { color: var(--red); }
.triptych-item-title .sa-cat-name { font-size: 12px; }
.triptych-item-title .sa-cat-square { width: 9px; height: 9px; }
.triptych-author {
  font-size: 12px;
  color: var(--gray-500);
}
.triptych-author strong { color: var(--black); }

/* Center hero */
.triptych-hero-img {
  width: 100%;
  aspect-ratio: 560/380;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.triptych-hero a:first-child { display: block; overflow: hidden; }
.triptych-hero a:first-child:hover .triptych-hero-img { transform: scale(1.03); }
.triptych-hero-body { padding-top: 12px; }
.triptych-hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: center;
}
.triptych-hero-title a { color: var(--black); }
.triptych-hero-title a:hover { color: var(--red); }
.triptych-hero-excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-700);
  text-align: center;
}

/* "Voir plus d'articles" button */
.triptych-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.triptych-more-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 32px;
  border-radius: 24px;
  letter-spacing: .3px;
  transition: background .2s;
}
.triptych-more-btn:hover { background: var(--red-dark); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .triptych-grid { grid-template-columns: 1fr; }
  .triptych-col--side { flex-direction: row; }
  .triptych-item { flex: 1; }
}

/* ============================================================
   POLITIQUE SECTION
   Left hero (large image + big title below) + right 2×2 grid
   ============================================================ */
/* ============================================================
   MAGAZINE GRID SECTION (above Politique)
   Left tall column + right 3×2 grid
   ============================================================ */
.mag-grid-section {
  padding: 28px 0 0;
  border-top: 1px solid var(--gray-200);
}
.mag-grid-outer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.mag-grid-left {
  flex-shrink: 0;
  width: 320px;
}

/* ── LEFT COLUMN ── */
.mag-grid-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero */
.mag-left-hero { padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); margin-bottom: 16px; }
.mag-left-hero-img-wrap { display: block; overflow: hidden; margin-bottom: 12px; }
.mag-left-hero-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .35s; }
.mag-left-hero-img-wrap:hover .mag-left-hero-img { transform: scale(1.03); }
.mag-left-hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 8px;
}
.mag-left-hero-title a { color: inherit; }
.mag-left-hero-title a:hover { color: var(--red); }
.mag-left-hero-excerpt { font-size: 13px; color: var(--gray-700); line-height: 1.6; margin-bottom: 6px; }
.mag-left-hero-author { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; }
.mag-related-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mag-related-links li a {
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.4;
  transition: color .2s;
}
.mag-related-links li a:hover { color: var(--red); }

/* Overlay card */
.mag-left-overlay-card { margin-bottom: 14px; }
.mag-left-overlay-wrap { display: block; position: relative; overflow: hidden; border-radius: 2px; }
.mag-left-overlay-img { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; }
.mag-left-overlay-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 100%);
  padding: 20px 12px 12px;
  color: #fff;
}
.mag-left-overlay-sponsor { font-size: 10px; font-style: italic; color: #ccc; display: block; margin-bottom: 4px; }
.mag-left-overlay-title { font-size: 13.5px; font-weight: 700; line-height: 1.35; color: #fff; }

/* Small bottom card */
.mag-left-small { padding-top: 10px; margin-bottom: 14px; }
.mag-left-small-title { font-family: 'Merriweather', Georgia, serif; font-size: 13.5px; font-weight: 700; line-height: 1.4; }
.mag-left-small-title a { color: var(--black); }
.mag-left-small-title a:hover { color: var(--red); }

/* Left column ad placeholder */
.mag-left-ad {
  border: 2px dashed var(--gray-300);
  border-radius: 3px;
  background: var(--gray-100);
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

/* ── RIGHT 4×2 GRID ── */
.mag-grid-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
  align-items: start;
}
.mag-right-card {}
.mag-right-img-wrap { display: block; overflow: hidden; margin-bottom: 10px; }
.mag-right-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; }
.mag-right-img-wrap:hover .mag-right-img { transform: scale(1.04); }
.mag-right-body {}
.mag-right-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
}
.mag-right-title a { color: inherit; }
.mag-right-title a:hover { color: var(--red); }
.mag-right-author { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* Overlay card in right grid */
.mag-right-card--overlay .mag-right-overlay-wrap { display: block; position: relative; overflow: hidden; margin-bottom: 10px; }
.mag-right-card--overlay .mag-right-img { aspect-ratio: 16/9; }
.mag-right-overlay-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.72);
  padding: 10px 12px;
  color: #fff;
}
.mag-right-direct {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.mag-right-overlay-title-text { font-size: 13px; font-weight: 700; line-height: 1.35; display: block; color: #fff; }
.mag-related-links--sm li a { font-size: 12px; }

/* Newsletter promo card */
.mag-right-promo {
  background: #0d1a2e;
  color: #fff;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 3px;
  align-self: stretch;
}
.mag-right-promo-brand { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #aaa; text-transform: uppercase; }
.mag-right-promo-text { font-size: 15px; font-weight: 600; line-height: 1.5; color: #fff; }
.mag-right-promo-text strong { color: var(--red); font-weight: 700; }
.mag-right-promo-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background .2s;
  margin-top: 4px;
}
.mag-right-promo-btn:hover { background: var(--red-dark); color: #fff; }

/* Banner placeholder */
.mag-right-banner {
  border: 2px dashed var(--gray-300);
  border-radius: 3px;
  background: var(--gray-100);
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mag-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.mag-banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
}
.mag-banner-size {
  font-size: 13px;
  color: var(--gray-400, #bbb);
}

/* Right area: grid + wide banner stacked */
.mag-right-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

/* Wide horizontal banner (728×200 leaderboard) */
.inline-banner-wide {
  width: 100%;
  height: 200px;
  border: 2px dashed var(--gray-300);
  border-radius: 3px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Tall vertical banner (160×600 skyscraper) */
.mag-tall-banner {
  flex-shrink: 0;
  width: 160px;
  min-height: 600px;
  border: 2px dashed var(--gray-300);
  border-radius: 3px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .mag-grid-right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .mag-grid-outer { flex-direction: column; gap: 20px; }
  .mag-grid-left { width: 100%; }
  .mag-grid-right { grid-template-columns: repeat(2, 1fr); }
  .mag-tall-banner { display: none; }
  .inline-banner-wide { height: 60px; }
}
@media (max-width: 600px) {
  .mag-grid-right { grid-template-columns: 1fr; }
  .inline-banner-wide { display: none; }
}

/* Société inline banner */
.section-main-col .inline-banner-wide { margin-top: 20px; }

.pol-section {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}

/* Outer grid: hero takes ~half, right side two equal columns */
.pol-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 0 28px;
  align-items: start;
}

/* LEFT: hero article */
.pol-hero-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.pol-hero-img-wrap { display: block; overflow: hidden; }
.pol-hero-img-wrap:hover .pol-hero-img { transform: scale(1.03); }

.pol-hero-body { padding-top: 12px; }

.pol-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}
.pol-hero-label .sa-cat-square {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.pol-hero-label-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #e5a020;
}
.pol-hero-label-sep {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 2px;
}

.pol-hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 10px;
}
.pol-hero-title a { color: var(--black); }
.pol-hero-title a:hover { color: var(--red); }

.pol-hero-excerpt {
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 8px;
}
.pol-hero-author {
  font-size: 12px;
  color: var(--gray-500);
}
.pol-hero-author strong { color: var(--black); }

/* RIGHT columns: each has 2 stacked small cards */
.pol-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pol-card {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.pol-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.pol-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.pol-card-img-wrap { display: block; overflow: hidden; margin-bottom: 8px; }
.pol-card-img-wrap:hover .pol-card-img { transform: scale(1.04); }

.pol-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 5px;
  color: var(--black);
}
.pol-card-title a { color: var(--black); }
.pol-card-title a:hover { color: var(--red); }
.pol-card-title .sa-cat-square { width: 9px; height: 9px; }
.pol-card-title .sa-cat-name { font-size: 12px; }
.pol-card-title .sa-cat-pipe { color: var(--gray-500); }

.pol-card-author {
  font-size: 12px;
  color: var(--gray-500);
}
.pol-card-author strong { color: var(--black); }

/* ============================================================
   PARTENAIRES SECTION
   ============================================================ */
.partenaires-section {
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
}
.partenaires-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  text-align: center;
  margin-bottom: 20px;
}
.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.part-card-img-wrap { display: block; overflow: hidden; margin-bottom: 8px; }
.part-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.part-card-img-wrap:hover .part-card-img { transform: scale(1.03); }
.part-sponsor {
  display: block;
  font-size: 12px;
  color: #e5a020;
  font-weight: 700;
  margin-bottom: 5px;
}
.part-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}
.part-card-title a { color: var(--black); }
.part-card-title a:hover { color: var(--red); }

/* ============================================================
   ZOOM SECTION
   ============================================================ */
.zoom-section {
  background: #e8f4f5;
  padding: 36px 0;
  border-top: 1px solid #c5dfe0;
}
.zoom-logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  color: #c0392b;
  text-align: center;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.zoom-subtitle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.zoom-rule { flex: 1; height: 1px; background: var(--gray-300); }
.zoom-subtitle {
  font-size: 13px;
  font-style: italic;
  color: var(--gray-700);
  white-space: nowrap;
}
.zoom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.zoom-card-img-wrap { display: block; overflow: hidden; margin-bottom: 8px; }
.zoom-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.zoom-card-img-wrap:hover .zoom-card-img { transform: scale(1.04); }
.zoom-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}
.zoom-card-title a { color: var(--black); }
.zoom-card-title a:hover { color: var(--red); }

/* ============================================================
   ARTS / CULTURE MAGAZINE SECTION
   ============================================================ */
.arts-section {
  padding: 36px 0;
  border-top: 1px solid var(--gray-200);
}
.arts-header { text-align: center; margin-bottom: 4px; }
.arts-logo-symbol {
  width: 44px;
  height: 44px;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 6px;
}
.arts-subtitle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.arts-rule { flex: 1; height: 1px; background: var(--gray-300); }
.arts-subtitle {
  font-size: 13px;
  font-style: italic;
  color: var(--gray-700);
  white-space: nowrap;
}
.arts-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  align-items: start;
}
.arts-col { display: flex; flex-direction: column; gap: 20px; }
.arts-item-img-wrap { display: block; overflow: hidden; margin-bottom: 8px; }
.arts-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.arts-item-img-wrap:hover .arts-item-img { transform: scale(1.04); }
.arts-item-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  color: var(--black);
}
.arts-item-title a { color: var(--black); }
.arts-item-title a:hover { color: var(--red); }
.arts-item-title .sa-cat-square { width: 9px; height: 9px; }
.arts-item-title .sa-cat-name { font-size: 12px; }
.arts-item-author { font-size: 12px; color: var(--gray-500); }
.arts-item-author strong { color: var(--black); }
/* Center mosaic */
.arts-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 16px;
}
.arts-mosaic-main { grid-column: 1; grid-row: 1 / 3; }
.arts-mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}
.arts-mosaic-sub { overflow: hidden; }
.arts-mosaic-sub img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  display: block;
}
.arts-center-body { text-align: center; }
.arts-center-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.arts-center-label .sa-cat-square { width: 11px; height: 11px; }
.arts-center-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 10px;
}
.arts-center-title a { color: var(--black); }
.arts-center-title a:hover { color: var(--red); }
.arts-center-excerpt {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 8px;
}
.arts-center-author { font-size: 12px; color: var(--gray-500); }
.arts-center-author strong { color: var(--black); }

/* ============================================================
   SOSOIR + RÉFÉRENCES SECTION
   ============================================================ */
.sosoir-section {
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.sosoir-logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1;
  display: block;
}
.sosoir-grid, .refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}
.sosoir-card-img-wrap, .refs-card-img-wrap {
  display: block;
  overflow: hidden;
  margin-bottom: 8px;
}
.sosoir-card-img, .refs-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.sosoir-card-img-wrap:hover .sosoir-card-img,
.refs-card-img-wrap:hover .refs-card-img { transform: scale(1.04); }
.sosoir-card-title, .refs-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}
.sosoir-card-title a, .refs-card-title a { color: var(--black); }
.sosoir-card-title a:hover, .refs-card-title a:hover { color: var(--red); }
.sosoir-more, .refs-more {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  padding: 10px 0 20px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.sosoir-more:hover, .refs-more:hover { color: var(--red-dark); }
.refs-more { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.refs-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.refs-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  flex-shrink: 0;
}
.refs-label {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

/* ============================================================
   COMMUNIQUÉ SECTION
   ============================================================ */
.communique-section {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.communique-outer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.communique-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
  flex: 1;
}
.communique-ad {
  flex-shrink: 0;
  width: 160px;
  min-height: 600px;
  border: 2px dashed var(--gray-300);
  border-radius: 3px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
@media (max-width: 960px) {
  .communique-ad { display: none; }
}
.communique-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.communique-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.communique-brand-icon {
  font-size: 18px;
  line-height: 1;
}
.communique-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.2px;
}
.communique-img-wrap { display: block; overflow: hidden; border-radius: 2px; }
.communique-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.communique-img-wrap:hover .communique-img { transform: scale(1.04); }
.communique-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--black);
}
.communique-title a { color: inherit; }
.communique-title a:hover { color: var(--red); }
.communique-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  transition: color .2s;
}
.communique-more:hover { color: var(--red-dark); }

@media (max-width: 960px) {
  .communique-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .communique-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VENDEZ VOS PRODUITS ICI SECTION
   ============================================================ */
.vendez-section {
  background: #fdf0f0;
  padding: 36px 0 28px;
  border-top: 1px solid var(--gray-200);
}
.vendez-header {
  text-align: center;
  margin-bottom: 28px;
}
.vendez-logo-link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.vendez-logo-script {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.5px;
}
.vendez-logo-bold {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: #0d1a2e;
  letter-spacing: 1px;
}
.vendez-logo-link:hover .vendez-logo-script { color: var(--red-dark); }
.vendez-logo-link:hover .vendez-logo-bold { color: #00305a; }
.vendez-subtitle {
  font-size: 13px;
  font-style: italic;
  color: var(--gray-500);
  margin-top: 4px;
}
.vendez-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.vendez-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.vendez-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: opacity .2s;
  margin-bottom: 10px;
}
.vendez-card:hover .vendez-card-img { opacity: .88; }
.vendez-card-body {}
.vendez-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  margin-bottom: 3px;
}
.vendez-card-cat::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--red);
  flex-shrink: 0;
}
.vendez-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}
.vendez-card:hover .vendez-card-title { color: var(--red); }
.vendez-card-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 2px;
}
.vendez-footer {
  text-align: right;
  padding-top: 8px;
}
.vendez-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  transition: color .2s;
}
.vendez-more:hover { color: var(--red); }

@media (max-width: 960px) {
  .vendez-grid { grid-template-columns: repeat(2, 1fr); }
  .vendez-logo-script, .vendez-logo-bold { font-size: 24px; }
}
@media (max-width: 480px) {
  .vendez-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LÉNA SECTION
   ============================================================ */
.lena-section {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}
.lena-header {
  text-align: center;
  margin-bottom: 24px;
}
.lena-logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.lena-logo .accent { font-style: italic; }
.lena-subtitle {
  font-size: 13px;
  font-style: italic;
  color: var(--gray-700);
}

/* ============================================================
   ASYMMETRIC LAYOUT (Monde)
   ============================================================ */
.articles-asymmetric {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 24px;
  align-items: start;
}
.articles-asymmetric--reverse {
  grid-template-columns: 1fr 560px;
}
.art-large .art-img-link { display: block; overflow: hidden; }
.art-img {
  width: 100%;
  aspect-ratio: 520/310;
  object-fit: cover;
  transition: transform .4s ease;
}
.art-img-link:hover .art-img { transform: scale(1.03); }
.art-body { padding-top: 12px; }
.art-title {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.35;
  margin: 4px 0 8px;
}
.art-title a { color: var(--black); }
.art-title a:hover { color: var(--red); }
.art-title--large { font-size: 20px; font-weight: 900; }
.art-title--small { font-size: 14px; font-weight: 700; }
.art-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.art-stack { display: flex; flex-direction: column; gap: 0; }
.art-stacked {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.art-stacked:last-child { border-bottom: none; }
.art-stacked-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: space-between;
}
.art-stacked-body { flex: 1; }
.art-stacked-img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ============================================================
   3-COLUMN GRID
   ============================================================ */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-card-img {
  aspect-ratio: 340/200;
  object-fit: cover;
  width: 100%;
  transition: transform .4s ease;
}
.grid-card a:hover .grid-card-img { transform: scale(1.03); }
.grid-card a { display: block; overflow: hidden; }
.grid-card-body { padding: 10px 0 0; }
.grid-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  margin: 4px 0 7px;
}
.grid-card-title a { color: var(--black); }
.grid-card-title a:hover { color: var(--red); }
.grid-card-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: 6px;
}

/* 4-COLUMN GRID */
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-card--sm .grid-card-img {
  aspect-ratio: 260/160;
}
.grid-card--sm .grid-card-title { font-size: 14px; }

/* ============================================================
   SECTION WITH AD SIDEBAR
   ============================================================ */
.section-row-with-ad {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.section-main-col { min-width: 0; }
.section-ad-col { padding-top: 4px; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--gray-900);
  padding: 28px 0 32px;
}
.video-section .section-header { border-bottom-color: var(--red); }
.video-scroll-wrapper {
  position: relative;
  overflow: hidden;
}
.video-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.video-scroll::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 300px;
  cursor: pointer;
}
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 300/169;
  overflow: hidden;
  background: #000;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .3s, transform .4s;
}
.video-card:hover .video-thumb { opacity: 1; transform: scale(1.04); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .2s;
}
.video-card:hover .video-play-btn { background: rgba(0,174,239,.55); }
.video-play-btn svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.video-duration {
  position: absolute;
  bottom: 7px;
  right: 8px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
}
.video-info {
  padding: 10px 0 0;
}
.video-info .article-category { color: var(--red); }
.video-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 4px 0 5px;
}
.video-title a { color: #fff; }
.video-title a:hover { color: #a8e6fb; }
.video-info .article-time { color: #aaa; }
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  z-index: 2;
  transition: background .2s, color .2s;
  margin-top: -12px; /* offset for info below thumb */
}
.video-nav:hover { background: var(--red-dark); color: #fff; }
.video-nav-left  { left: -4px; }
.video-nav-right { right: -4px; }

/* ============================================================
   SÉLECTIONNÉ POUR VOUS
   ============================================================ */
.selectionne-section {
  background: var(--gray-100);
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.selectionne-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.selectionne-icon { flex-shrink: 0; }
.selectionne-text { flex: 1; }
.selectionne-text h3 {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 5px;
}
.selectionne-text p { font-size: 14px; color: var(--gray-700); }
.selectionne-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex-shrink: 0;
}
.btn-cta-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-cta-red:hover { background: var(--red-dark); color: #fff; }
.btn-cta-large { padding: 13px 28px; font-size: 15px; }
.btn-cta-outline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
}
.btn-cta-outline:hover { color: var(--red-dark); }

/* ============================================================
   OPINION SECTION
   ============================================================ */
.opinion-section {
  padding: 28px 0;
  background: #fff;
}
.opinion-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.opinion-featured-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 560/360;
}
.opinion-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.opinion-featured:hover .opinion-featured-img { transform: scale(1.04); }
.opinion-tag-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
}
.opinion-featured-body { padding-top: 14px; }
.opinion-author-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.opinion-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.opinion-avatar--sm {
  width: 44px;
  height: 44px;
}
.opinion-author-name { font-size: 14px; font-weight: 700; display: block; }
.opinion-author-role { font-size: 12px; color: var(--gray-500); display: block; }
.opinion-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
}
.opinion-title a { color: var(--black); }
.opinion-title a:hover { color: var(--red); }
.opinion-excerpt { font-size: 14px; line-height: 1.55; color: var(--gray-700); margin-bottom: 12px; }
.opinion-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .3px;
}
.opinion-read-more:hover { text-decoration: underline; }
.opinion-side { display: flex; flex-direction: column; gap: 0; }
.opinion-card {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.opinion-card:last-child { border-bottom: none; }
.opinion-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.opinion-card-body { flex: 1; }
.opinion-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.opinion-card-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}
.opinion-card-title a { color: var(--black); }
.opinion-card-title a:hover { color: var(--red); }
.opinion-author-name-sm { font-size: 11.5px; color: var(--gray-500); }

/* ============================================================
   PROMO / ABONNEMENT
   ============================================================ */
.promo-section {
  background: var(--black);
  padding: 40px 0;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.promo-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  border: 1px solid var(--red);
  padding: 2px 8px;
}
.promo-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.promo-desc { font-size: 15px; color: #bbb; line-height: 1.6; margin-bottom: 16px; }
.promo-desc strong { color: #fff; }
.promo-list { list-style: none; }
.promo-list li {
  font-size: 14px;
  color: #ccc;
  padding: 4px 0;
  padding-left: 4px;
}
.promo-cta-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.promo-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
}
.promo-price-amount {
  font-family: 'Merriweather', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.promo-price-period { font-size: 18px; color: #ccc; }
.promo-link-login { font-size: 12px; color: #888; text-decoration: underline; }
.promo-link-login:hover { color: #fff; }

/* ============================================================
   DISCOVERY / SCIENCES
   ============================================================ */
.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.discovery-img {
  width: 100%;
  aspect-ratio: 600/340;
  object-fit: cover;
  transition: transform .4s;
}
.discovery-card--large a { display: block; overflow: hidden; }
.discovery-card--large a:hover .discovery-img { transform: scale(1.03); }
.discovery-body { padding-top: 12px; }
.discovery-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  margin: 4px 0 8px;
}
.discovery-title a { color: var(--black); }
.discovery-title a:hover { color: var(--red); }
.discovery-excerpt { font-size: 14px; color: var(--gray-700); line-height: 1.55; margin-bottom: 8px; }
.discovery-side { display: flex; flex-direction: column; gap: 0; }
.discovery-mini {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.discovery-mini:last-child { border-bottom: none; }
.discovery-mini-img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}
.discovery-mini-body { flex: 1; }
.discovery-mini-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  margin: 3px 0 4px;
}
.discovery-mini-title a { color: var(--black); }
.discovery-mini-title a:hover { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FLOATING SIDE BUTTONS
   ============================================================ */
.side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
}
.side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 96px;
  padding: 20px 10px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: width .2s, box-shadow .2s;
  border-radius: 10px 0 0 10px;
  line-height: 1.2;
  text-align: center;
  box-shadow: -3px 3px 14px rgba(0,0,0,.25);
  background: #111;
  color: #fff;
}
.side-btn svg { flex-shrink: 0; }
.side-btn:hover {
  background: #222;
  color: #fff;
  width: 106px;
  box-shadow: -5px 4px 18px rgba(0,0,0,.35);
}
.side-btn--youtube {}
.side-btn--youtube:hover {}
.side-btn--interview {}
.side-btn--interview:hover {}
/* Hide floating side buttons on mobile/tablet — replaced by bottom nav */
@media (max-width: 1024px) {
  .side-btns { display: none; }
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -2px 10px rgba(0,0,0,.1);
  height: 60px;
  align-items: stretch;
}
.mobile-bottom-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color .2s, background .2s;
  padding: 6px 2px;
}
.mobile-bottom-btn:hover,
.mobile-bottom-btn--active {
  color: var(--red);
}
.mobile-bottom-btn--youtube {
  color: var(--red);
}
.mobile-bottom-btn--youtube:hover {
  color: var(--red-dark);
}

@media (max-width: 1024px) {
  .mobile-bottom-nav { display: flex; }
  /* Push page content above the bottom nav */
  body { padding-bottom: 60px; }
}

.site-footer { background: var(--black); color: #ccc; }
.footer-top { padding: 40px 0 30px; border-bottom: 1px solid #333; }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-logo .logo-le,
.footer-logo .logo-soir { color: #fff; }
.footer-logo:hover .logo-le,
.footer-logo:hover .logo-soir { color: var(--red); }
.footer-tagline {
  font-size: 13px;
  color: #888;
  font-style: italic;
  flex: 1;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--red-dark); color: #fff; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 13px;
  color: #aaa;
  transition: color .2s;
}
.footer-col li a:hover { color: #fff; }
.footer-nl-desc { font-size: 13px; color: #888; margin-bottom: 12px; line-height: 1.5; }
.footer-nl-form {
  display: flex;
  margin-bottom: 14px;
}
.footer-nl-input {
  flex: 1;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  border-radius: 2px 0 0 2px;
  outline: none;
}
.footer-nl-input::placeholder { color: #666; }
.footer-nl-input:focus { border-color: var(--red); }
.footer-nl-btn {
  padding: 8px 16px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background .2s;
}
.footer-nl-btn:hover { background: var(--red-dark); }
.footer-nl-list { display: flex; flex-direction: column; gap: 6px; }
.footer-nl-list a { font-size: 12.5px; color: #888; }
.footer-nl-list a:hover { color: #fff; }

.footer-bottom {
  background: #111;
  padding: 14px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: #666; }
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: #666;
  transition: color .2s;
}
.footer-legal-links a:hover { color: #ccc; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- TABLET (≤1100px) ---- */
@media (max-width: 1100px) {
  :root { --container: 100%; }

  .une-grid {
    grid-template-columns: 1fr;
  }
  .une-sidebar-left {
    display: none;
  }
  .une-sidebar-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ad-sidebar-top { display: none; }

  .articles-asymmetric,
  .articles-asymmetric--reverse {
    grid-template-columns: 1fr;
  }
  .art-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .art-stacked { padding: 0; border-bottom: none; }
  .art-stacked-inner { flex-direction: column; }
  .art-stacked-img { width: 100%; height: 120px; }

  .opinion-grid { grid-template-columns: 1fr; }
  .opinion-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .opinion-card { padding: 0; }

  .section-row-with-ad { grid-template-columns: 1fr; }
  .section-ad-col { display: none; }

  .discovery-grid { grid-template-columns: 1fr; }
  .discovery-side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .discovery-mini { flex-direction: column; }
  .discovery-mini-img { width: 100%; height: 120px; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }

  .promo-inner { flex-direction: column; text-align: center; }
  .promo-cta-block { width: 100%; }
  .selectionne-inner { flex-direction: column; text-align: center; }
  .selectionne-cta { align-items: center; }
}

/* ---- MOBILE (≤768px) ---- */
@media (max-width: 768px) {
  .header-date { display: none; }
  .header-left { min-width: 0; }
  .header-right { min-width: 0; }
  .logo-le, .logo-soir { font-size: 14px; letter-spacing: 1px; }
  .logo-le { font-size: 9px; letter-spacing: 4px; }

  .nav-drawer { display: block; }

  .grid-3col { grid-template-columns: 1fr; }
  .grid-4col { grid-template-columns: repeat(2, 1fr); }

  .une-sidebar-right {
    display: none;
  }
  .art-stack { grid-template-columns: 1fr; }
  .art-stacked-inner { flex-direction: row; }
  .art-stacked-img { width: 100px; height: 70px; }

  .opinion-side { grid-template-columns: 1fr; }

  .discovery-side { grid-template-columns: 1fr; }
  .discovery-mini { flex-direction: row; }
  .discovery-mini-img { width: 90px; height: 64px; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-logo-row { flex-direction: column; align-items: flex-start; }
  .footer-social { margin-left: 0; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { gap: 12px; }

  .video-card { flex: 0 0 260px; }
  .promo-title { font-size: 20px; }
  .promo-price-amount { font-size: 36px; }
  .hero-title { font-size: 20px; }
}

/* ---- SMALL MOBILE (≤480px) ---- */
@media (max-width: 480px) {
  .grid-4col { grid-template-columns: 1fr; }
  .header-right .btn-login { display: none; }
  .breaking-track { font-size: 11px; }
  .section-title { font-size: 16px; }
}

/* ============================================================
   FULL RESPONSIVE SYSTEM
   Breakpoints: 1200px | 960px | 768px | 480px
   ============================================================ */

/* ── 1200px: tighten containers ── */
@media (max-width: 1200px) {
  :root { --container: 100%; }
  .container { padding: 0 24px; }
  .pol-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .triptych-grid { grid-template-columns: 1fr 1.6fr 1fr; }
  .arts-grid { grid-template-columns: 1fr 1.6fr 1fr; }
  .hero-title { font-size: 32px; }
}

/* ── 960px: 2-column layouts ── */
@media (max-width: 960px) {
  /* Header */
  .header-date { display: none; }
  .header-right .btn-login { display: none; }

  /* Header: prevent min-width overflow */
  .header-left { min-width: 0; }
  .header-right { min-width: 0; }

  /* Hero */
  .hero-title { font-size: 26px; line-height: 1.5; }
  .hero-title-block { padding-bottom: 60px; margin-bottom: -60px; }
  .une-grid { gap: 16px; }
  .une-sidebar-left, .une-sidebar-right { display: none; }
  .une-grid { grid-template-columns: 1fr; }

  /* Triptych → stack */
  .triptych-grid { grid-template-columns: 1fr; gap: 20px; }
  .triptych-col--side { flex-direction: row; gap: 16px; }
  .triptych-item { flex: 1; }
  .triptych-hero-title { font-size: 18px; text-align: left; }
  .triptych-hero-excerpt { display: none; }

  /* Politique / pol-grid → stack */
  .pol-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pol-grid > article { grid-column: 1 / -1; }
  .pol-hero-title { font-size: 22px; }

  /* Arts grid */
  .arts-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .arts-col:last-child { display: none; }

  /* 3-col & 4-col grids */
  .grid-3col { grid-template-columns: 1fr 1fr; }
  .grid-4col { grid-template-columns: 1fr 1fr; }
  .partenaires-grid { grid-template-columns: 1fr 1fr; }
  .sosoir-grid, .refs-grid { grid-template-columns: 1fr 1fr; }
  .zoom-grid { grid-template-columns: 1fr 1fr; }

  /* Société sidebar */
  .section-row-with-ad { flex-direction: column; }
  .section-ad-col { display: none; }

  /* Opinion */
  .opinion-grid { grid-template-columns: 1fr; }
  .opinion-side { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ── 768px: mobile layout ── */
@media (max-width: 768px) {
  .nav-list { padding: 0 4px; }
  .nav-link { padding: 0 10px; font-size: 11px; }

  /* Header */
  .header-inner { padding: 0 12px; }
  .header-center .site-logo { font-size: 18px; letter-spacing: 1px; }
  .logo-le, .logo-soir { font-size: 18px; }

  /* Breaking bar */
  .breaking-bar { font-size: 11px; }
  .breaking-label { padding: 4px 10px; font-size: 10px; }

  /* Hero */
  .une-grid { grid-template-columns: 1fr; display: block; }
  .une-sidebar-left, .une-sidebar-right { display: none; }
  .hero-title { font-size: 22px; }
  .hero-title-block { padding-bottom: 40px; margin-bottom: -40px; }
  .hero-badge-row { gap: 8px; flex-wrap: wrap; }

  /* All multi-column grids → single column */
  .pol-grid { grid-template-columns: 1fr; }
  .pol-grid > article { grid-column: 1; }
  .triptych-grid { grid-template-columns: 1fr; }
  .triptych-col--side { flex-direction: column; }
  .arts-grid { grid-template-columns: 1fr; }
  .arts-col:last-child { display: flex; }
  .grid-3col { grid-template-columns: 1fr; }
  .grid-4col { grid-template-columns: 1fr 1fr; }
  .partenaires-grid { grid-template-columns: 1fr 1fr; }
  .sosoir-grid, .refs-grid { grid-template-columns: 1fr 1fr; }
  .zoom-grid { grid-template-columns: 1fr 1fr; }

  /* Section headers */
  .triptych-title { font-size: 16px; }
  .triptych-header { margin-bottom: 16px; }
  .pol-section, .triptych-section, .arts-section,
  .zoom-section, .sosoir-section, .lena-section,
  .partenaires-section, .content-section { padding: 20px 0; }

  /* Pol hero */
  .pol-hero-title { font-size: 20px; }
  .pol-hero-excerpt { font-size: 13px; }

  /* Arts mosaic */
  .arts-mosaic { grid-template-columns: 1fr 1fr; }
  .arts-mosaic-main { grid-row: 1; }
  .arts-mosaic-main img { min-height: 160px; }
  .arts-mosaic-sub img { height: 80px; }
  .arts-center-title { font-size: 16px; }

  /* SoSoir */
  .sosoir-logo { font-size: 32px; }

  /* LéNA */
  .lena-logo { font-size: 32px; }

  /* Discovery */
  .discovery-grid { grid-template-columns: 1fr; }
  .discovery-side { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Opinion */
  .opinion-side { grid-template-columns: 1fr; }
  .opinion-card-inner { flex-direction: row; gap: 10px; }

  /* Video */
  .video-nav-btn { width: 36px; height: 36px; }
  .video-card { min-width: 260px; }

  /* Sélectionné */
  .selectionne-inner { flex-direction: column; text-align: center; gap: 12px; }
  .selectionne-cta { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }

  /* Zoom */
  .zoom-logo { font-size: 38px; }
  .zoom-subtitle { font-size: 11px; white-space: normal; text-align: center; }

  /* Sidebar il info */
  .section-row-with-ad { flex-direction: column; }
  .section-ad-col { display: none; }
}

/* ── 480px: compact mobile ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Header */
  .header-inner { height: 52px; }
  .logo-le, .logo-soir { font-size: 15px; letter-spacing: 0; }

  /* Hero */
  .hero-title { font-size: 18px; line-height: 1.6; }
  .hero-title-block { padding-bottom: 28px; margin-bottom: -28px; }

  /* Grids → full single column */
  .grid-4col { grid-template-columns: 1fr; }
  .partenaires-grid { grid-template-columns: 1fr; }
  .sosoir-grid, .refs-grid { grid-template-columns: 1fr; }
  .zoom-grid { grid-template-columns: 1fr; }

  /* Pol grid */
  .pol-hero-title { font-size: 18px; }
  .pol-col { flex-direction: column; }
  .pol-card-img { aspect-ratio: 16/9; }

  /* Triptych */
  .triptych-col--side { flex-direction: column; }
  .triptych-hero-title { font-size: 16px; }

  /* Arts */
  .arts-center-title { font-size: 15px; }
  .arts-mosaic { grid-template-columns: 1fr; }
  .arts-mosaic-main { grid-row: auto; }

  /* Section padding */
  .pol-section, .triptych-section, .arts-section,
  .zoom-section, .sosoir-section, .lena-section,
  .partenaires-section, .content-section { padding: 16px 0; }

  /* Triptych title */
  .triptych-title { font-size: 14px; }

  /* Video */
  .video-card { min-width: 220px; }
  .video-section { padding: 20px 0; }

  /* Footer newsletter */
  .footer-nl-form { flex-direction: column; gap: 8px; }
  .footer-nl-input { width: 100%; }
  .footer-nl-btn { width: 100%; text-align: center; }

  /* Opinion */
  .opinion-featured-body { padding: 12px 0 0; }
  .opinion-title { font-size: 16px; }

  /* Selectionne */
  .btn-cta-red, .btn-cta-outline { width: 100%; text-align: center; }
}

/* ============================================================
   SINGLE ARTICLE PAGE
   ============================================================ */

.single-main {
  padding: 24px 0 60px;
  background: #f7f7f7;
}

/* Breadcrumb */
.single-breadcrumb {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.single-breadcrumb a { color: #888; text-decoration: none; }
.single-breadcrumb a:hover { color: var(--red); }
.bc-sep { color: #bbb; }

/* Layout: article + sidebar */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { display: none; }
}

/* Article card */
.single-article {
  background: #fff;
  border-radius: 4px;
  padding: 36px 40px 40px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
@media (max-width: 600px) {
  .single-article { padding: 20px 16px 28px; }
}

/* Category label */
.single-cat-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.single-cat-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.single-cat-name:hover { text-decoration: underline; }

/* Title */
.single-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--black);
  margin: 0 0 16px;
}
@media (max-width: 600px) { .single-title { font-size: 22px; } }

/* Excerpt / subtitle */
.single-excerpt {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin: 0 0 24px;
  font-style: italic;
}

/* Author / meta bar */
.single-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}
.single-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.single-avatar-init {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.single-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.single-author-label { font-size: 13px; color: #555; }
.single-author-label strong { color: var(--black); }
.single-pub-date { font-size: 12px; color: #888; }
.single-meta-right { display: flex; align-items: center; gap: 12px; }
.single-readtime {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
}

/* Share bar */
.single-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.single-share-bar--bottom {
  margin-top: 32px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.share-label { font-size: 12px; color: #888; margin-right: 4px; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  color: #fff;
}
.share-btn:hover { opacity: .85; }
.share-btn--fb { background: #1877f2; }
.share-btn--tw { background: #000; }
.share-btn--wa { background: #25d366; }
.share-btn--copy { background: #666; }

/* Featured image */
.single-hero-figure { margin: 0 0 28px; }
.single-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
.single-hero-caption {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
  font-style: italic;
}

/* Article body content */
.single-content {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  line-height: 1.85;
  color: #222;
}
.single-content p { margin: 0 0 20px; }
.single-content p:first-of-type::first-letter {
  float: left;
  font-size: 68px;
  line-height: .75;
  font-weight: 900;
  margin: 4px 10px 0 0;
  color: var(--red);
  font-family: 'Merriweather', Georgia, serif;
}
.single-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--black);
}
.single-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
}
.single-content a { color: var(--red); }
.single-content blockquote {
  border-left: 3px solid var(--red);
  margin: 24px 0;
  padding: 12px 20px;
  background: #f0f9fe;
  font-style: italic;
  color: #444;
}
.single-content ul, .single-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.single-content li { margin-bottom: 8px; }
.single-content img { max-width: 100%; height: auto; border-radius: 3px; }

/* Tags */
.single-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tags-label { font-size: 12px; color: #888; }
.single-tag {
  font-size: 11px;
  background: #f0f0f0;
  color: #444;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s;
}
.single-tag:hover { background: var(--red); color: #fff; }

/* Author bio box */
.single-author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
  border-left: 3px solid var(--red);
}
.author-box-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box-init {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-box-info { display: flex; flex-direction: column; gap: 4px; }
.author-box-by { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .8px; }
.author-box-name { font-size: 16px; color: var(--black); }
.author-box-bio { font-size: 13px; color: #555; line-height: 1.6; margin: 4px 0 0; }

/* Comments */
.single-comments { margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }

/* Sidebar */
.single-sidebar { position: relative; }
.sidebar-sticky { position: sticky; top: 80px; }
.sidebar-widget {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.sidebar-mini-article {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-mini-article:last-child { border-bottom: none; }
.sidebar-mini-img-link { flex-shrink: 0; }
.sidebar-mini-img { width: 70px; height: 52px; object-fit: cover; border-radius: 3px; }
.sidebar-mini-body { display: flex; flex-direction: column; gap: 4px; }
.sidebar-mini-cat { font-size: 10px; color: var(--red); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.sidebar-mini-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin: 0; }
.sidebar-mini-title a { color: var(--black); text-decoration: none; }
.sidebar-mini-title a:hover { color: var(--red); }
.sidebar-mini-date { font-size: 11px; color: #aaa; }

/* Related articles */
.single-related { background: #f7f7f7; padding: 40px 0 60px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.related-card-img-link { display: block; overflow: hidden; }
.related-card-img { width: 100%; height: 150px; object-fit: cover; display: block; transition: transform .3s; }
.related-card:hover .related-card-img { transform: scale(1.04); }
.related-card-body { padding: 12px 14px 16px; }
.related-card-cat { font-size: 10px; color: var(--red); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.related-card-title { font-size: 14px; font-weight: 700; line-height: 1.4; margin: 0 0 8px; }
.related-card-title a { color: var(--black); text-decoration: none; }
.related-card-title a:hover { color: var(--red); }
.related-card-date { font-size: 11px; color: #aaa; }


/* ============================================================
   SINGLE PAGE — HERO BLOCK + 12-ARTICLE CATEGORY GRID
   ============================================================ */

.single-main { padding: 24px 0 0; background: #fff; }

/* Breadcrumb */
.single-breadcrumb {
  font-size: 12px; color: #888;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.single-breadcrumb a { color: #888; text-decoration: none; }
.single-breadcrumb a:hover { color: var(--red); }
.bc-sep { color: #bbb; }

/* Hero block */
.single-hero-block {
  max-width: 860px;
  margin: 0 auto 0;
  padding: 0 0 40px;
}

/* Category pill */
.single-cat-label { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.single-cat-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--red); text-decoration: none;
}
.single-cat-name:hover { text-decoration: underline; }

/* Title */
.single-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 32px; font-weight: 900; line-height: 1.3;
  color: var(--black); margin: 0 0 14px;
}
@media (max-width: 600px) { .single-title { font-size: 22px; } }

/* Excerpt */
.single-excerpt {
  font-size: 16px; line-height: 1.65; color: #555;
  border-left: 3px solid var(--red);
  padding-left: 14px; margin: 0 0 20px; font-style: italic;
}

/* Meta bar */
.single-meta-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 12px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}
.single-author-block { display: flex; align-items: center; gap: 10px; }
.single-avatar-init {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.single-author-info { display: flex; flex-direction: column; gap: 2px; }
.single-author-label { font-size: 13px; color: #555; }
.single-author-label strong { color: var(--black); }
.single-pub-date { font-size: 12px; color: #888; }
.single-meta-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.single-readtime {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: #888; margin-right: 6px;
}

/* Share buttons (inline, small) */
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; cursor: pointer; transition: opacity .2s; color: #fff;
}
.share-btn:hover { opacity: .82; }
.share-btn--fb { background: #1877f2; }
.share-btn--tw { background: #111; }
.share-btn--wa { background: #25d366; }

/* Featured image */
.single-hero-figure { margin: 0; }
.single-hero-img {
  width: 100%; height: auto; display: block;
  border-radius: 4px; max-height: 520px; object-fit: cover;
}
.single-hero-caption { font-size: 11px; color: #999; margin-top: 6px; font-style: italic; }

/* ── CATEGORY GRID SECTION ── */
.single-cat-grid-section {
  background: #f4f4f4;
  padding: 44px 0 60px;
}

.single-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 1024px) { .single-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .single-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .single-cat-grid { grid-template-columns: 1fr; } }

/* Card */
.scg-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .25s;
}
.scg-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.scg-img-link { display: block; overflow: hidden; }
.scg-img {
  width: 100%; height: 160px;
  object-fit: cover; display: block;
  transition: transform .35s;
}
.scg-card:hover .scg-img { transform: scale(1.05); }
.scg-body { padding: 12px 14px 16px; }
.scg-cat {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .9px; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.scg-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px; font-weight: 700; line-height: 1.45;
  margin: 0 0 10px; color: var(--black);
}
.scg-title a { color: inherit; text-decoration: none; }
.scg-title a:hover { color: var(--red); }
.scg-meta { display: flex; flex-direction: column; gap: 2px; }
.scg-author { font-size: 11px; color: #666; }
.scg-author strong { color: var(--black); }
.scg-date { font-size: 11px; color: #aaa; }

/* View all button */
.scg-view-all { text-align: center; margin-top: 32px; }
.scg-view-all-btn {
  display: inline-block;
  padding: 11px 28px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 13px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  border-radius: 2px; text-decoration: none;
  transition: background .2s, color .2s;
}
.scg-view-all-btn:hover { background: var(--red); color: #fff; }


/* ============================================================
   NYT-STYLE MULTI-CATEGORY SECTION (below single article)
   ============================================================ */

.nyt-section {
  background: #fff;
  padding: 40px 0 64px;
  border-top: 3px solid var(--black);
}

/* Section header */
.nyt-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.nyt-header-rule {
  flex: 1;
  height: 1px;
  background: #ccc;
}
.nyt-header-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

/* Grid: 5 columns, wraps automatically */
.nyt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* Each column separated by a vertical rule */
.nyt-col {
  padding: 0 18px 32px;
  border-right: 1px solid #e0e0e0;
}
.nyt-col:first-child { padding-left: 0; }
.nyt-col:last-child  { border-right: none; padding-right: 0; }

/* Category heading */
.nyt-col-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--black);
}
.nyt-col-title a { color: inherit; text-decoration: none; }
.nyt-col-title a:hover { color: var(--red); }

/* Hero image */
.nyt-hero-link { display: block; margin-bottom: 10px; overflow: hidden; }
.nyt-hero-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.nyt-hero-link:hover .nyt-hero-img { transform: scale(1.04); }

/* Article list */
.nyt-article-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.nyt-article-item {
  padding: 7px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.4;
}
.nyt-article-item:last-child { border-bottom: none; }
.nyt-article-item a {
  font-size: 13px;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--black);
  text-decoration: none;
  line-height: 1.45;
  display: block;
}
.nyt-article-item a:hover { color: var(--red); text-decoration: underline; }

/* Lead item (first post) — slightly bolder */
.nyt-article-item--lead a {
  font-weight: 700;
  font-size: 14px;
}

/* "Plus d'infos" link */
.nyt-more-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
  transition: opacity .2s;
}
.nyt-more-link:hover { opacity: .75; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nyt-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .nyt-grid { grid-template-columns: repeat(3, 1fr); }
  .nyt-col { padding: 0 14px 28px; }
}
@media (max-width: 600px) {
  .nyt-grid { grid-template-columns: repeat(2, 1fr); }
  .nyt-col { padding: 0 10px 22px; }
  .nyt-hero-img { height: 110px; }
}
@media (max-width: 380px) {
  .nyt-grid { grid-template-columns: 1fr; }
  .nyt-col { border-right: none; border-bottom: 1px solid #e0e0e0; padding: 0 0 20px; margin-bottom: 20px; }
}

/* Row separator every 5 columns */
.nyt-col:nth-child(5n+1) { padding-left: 0; }
.nyt-col:nth-child(5n)   { border-right: none; padding-right: 0; }

/* Top border for second row */
.nyt-col:nth-child(n+6) {
  padding-top: 28px;
  border-top: 1px solid #e0e0e0;
}


/* ============================================================
   SINGLE ARTICLE PAGE — FINAL LAYOUT
   ============================================================ */

/* ── Article wrapper ── */
.single-main {
  background: #fff;
  padding: 28px 0 48px;
}
.single-article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb */
.single-breadcrumb {
  font-size: 12px; color: #999;
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.single-breadcrumb a { color: #999; text-decoration: none; }
.single-breadcrumb a:hover { color: var(--red); }
.bc-sep { color: #ccc; }

/* Category label */
.single-cat-label {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.single-cat-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--red); text-decoration: none;
}
.single-cat-name:hover { text-decoration: underline; }

/* Title */
.single-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 34px; font-weight: 900; line-height: 1.3;
  color: var(--black); margin: 0 0 14px;
}
@media (max-width: 600px) { .single-title { font-size: 24px; } }

/* Excerpt */
.single-excerpt {
  font-size: 17px; line-height: 1.6; color: #555;
  border-left: 3px solid var(--red);
  padding-left: 14px; margin: 0 0 20px;
  font-style: italic;
}

/* Meta bar */
.single-meta-bar {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  margin-bottom: 26px;
}
.single-author-block { display: flex; align-items: center; gap: 10px; }
.single-avatar-init {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.single-author-info { display: flex; flex-direction: column; gap: 1px; }
.single-author-label { font-size: 13px; color: #555; }
.single-author-label strong { color: var(--black); }
.single-pub-date { font-size: 12px; color: #999; }
.single-meta-right { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.single-readtime {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: #999; margin-right: 6px;
}

/* Share buttons */
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity .2s; color: #fff;
}
.share-btn:hover { opacity: .8; }
.share-btn--fb { background: #1877f2; }
.share-btn--tw { background: #111; }
.share-btn--wa { background: #25d366; }

/* Featured image */
.single-hero-figure { margin: 0 0 30px; }
.single-hero-img {
  width: 100%; height: auto; display: block;
  border-radius: 4px; max-height: 500px; object-fit: cover;
}
.single-hero-caption {
  font-size: 12px; color: #aaa; margin-top: 7px; font-style: italic;
}

/* Article body */
.single-content {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px; line-height: 1.9; color: #1a1a1a;
}
.single-content p { margin: 0 0 22px; }
.single-content p:first-of-type::first-letter {
  float: left; font-size: 72px; line-height: .72;
  font-weight: 900; margin: 5px 10px 0 0;
  color: var(--red);
  font-family: 'Merriweather', Georgia, serif;
}
.single-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.single-content h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
.single-content a { color: var(--red); }
.single-content blockquote {
  border-left: 3px solid var(--red); margin: 28px 0;
  padding: 12px 20px; background: #f5fbfe;
  font-style: italic; color: #444;
}
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 22px; }
.single-content li { margin-bottom: 8px; }
.single-content img { max-width: 100%; height: auto; border-radius: 3px; margin: 8px 0; }
.single-content figure { margin: 24px 0; }
.single-content figcaption { font-size: 12px; color: #999; font-style: italic; margin-top: 5px; }

/* Tags */
.single-tags {
  margin-top: 32px; display: flex; flex-wrap: wrap;
  gap: 8px; align-items: center;
}
.tags-label { font-size: 12px; color: #999; }
.single-tag {
  font-size: 11px; background: #f0f0f0; color: #555;
  padding: 4px 11px; border-radius: 20px; text-decoration: none;
  transition: background .2s, color .2s;
}
.single-tag:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════════════
   12-CARD SAME-CATEGORY GRID
   ══════════════════════════════════════════════════ */

.single-grid-section {
  background: #f2f2f2;
  padding: 44px 0 64px;
  border-top: 3px solid #e0e0e0;
}

/* Section heading */
.single-grid-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.single-grid-rule { flex: 1; height: 1px; background: #ccc; }
.single-grid-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: #555; white-space: nowrap;
}
.single-grid-heading a { color: var(--red); text-decoration: none; }
.single-grid-heading a:hover { text-decoration: underline; }

/* 4-column grid */
.sg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px)  { .sg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .sg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .sg-grid { grid-template-columns: 1fr; } }

/* Card */
.sg-card {
  background: #fff;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.sg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Image wrapper — position:relative for badge */
.sg-img-link {
  display: block; overflow: hidden; position: relative;
}
.sg-img {
  width: 100%; height: 158px;
  object-fit: cover; display: block;
  transition: transform .35s;
}
.sg-card:hover .sg-img { transform: scale(1.06); }

/* Category badge over image */
.sg-cat-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700;
  letter-spacing: .9px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}

/* Card body */
.sg-body { padding: 11px 13px 15px; }
.sg-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px; font-weight: 700; line-height: 1.45;
  margin: 0 0 9px; color: var(--black);
}
.sg-title a { color: inherit; text-decoration: none; }
.sg-title a:hover { color: var(--red); }
.sg-meta { display: flex; justify-content: space-between; gap: 6px; flex-wrap: wrap; }
.sg-author { font-size: 11px; color: #666; font-weight: 600; }
.sg-date   { font-size: 11px; color: #bbb; }

/* "Plus d'infos" button */
.sg-footer { text-align: center; margin-top: 34px; }
.sg-more-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border-radius: 2px; text-decoration: none;
  transition: background .2s, color .2s;
}
.sg-more-btn:hover { background: var(--red); color: #fff; }


/* ============================================================
   UPDATES — CAROUSEL, HERO TITLE, SIDE BUTTONS, FOOTER MOBILE
   ============================================================ */

/* ── Hero Carousel ── */
.hero-carousel { position: relative; }

.hero-slide { display: none; }
.hero-slide--active { display: block; animation: heroFadeIn .5s ease; }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Category badge above title */
.hero-cat-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  text-decoration: none;
}
.hero-cat-badge:hover { opacity: .85; }

/* ── Picture-1111 style: bordered box title ── */
.hero-title-block {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-bottom: 100px;
  margin-bottom: -100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -.3px;
  text-align: center;
  display: inline-block;
  background: #fff;
  border: 4px solid var(--red);
  border-radius: 4px;
  padding: 14px 20px;
  max-width: 680px;
  box-shadow: 0 4px 20px rgba(0,174,239,.18);
}
.hero-title a { color: var(--black); text-decoration: none; display: block; }
.hero-title a:hover { color: var(--red); }

@media (max-width: 900px) { .hero-title { font-size: 26px; padding: 10px 14px; } }
@media (max-width: 600px) { .hero-title { font-size: 18px; padding: 8px 10px; } }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.hero-dot--active { background: var(--red); transform: scale(1.3); }

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 36px; height: 52px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  border-radius: 3px;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--red); }
.hero-arrow--prev { left: 0; border-radius: 0 3px 3px 0; }
.hero-arrow--next { right: 0; border-radius: 3px 0 0 3px; }
@media (max-width: 600px) {
  .hero-arrow { width: 28px; height: 40px; font-size: 22px; }
}

/* ── Side buttons: taller + narrower ── */
.side-btn {
  width: 54px !important;
  height: 110px !important;
  border-radius: 6px 0 0 6px !important;
  gap: 6px !important;
  font-size: 10px !important;
  writing-mode: horizontal-tb;
}
.side-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 9px;
  letter-spacing: .5px;
}
.side-btn:hover {
  width: 54px !important;
}
.side-btns { gap: 4px !important; }

/* ── Footer: 2-column links on mobile (A1 → A2) ── */
@media (max-width: 768px) {
  .footer-top { padding: 32px 0 20px; }
  .footer-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 16px;
  }
  .footer-col ul {
    columns: 2;
    column-gap: 12px;
  }
  .footer-col ul li { break-inside: avoid; }
  .footer-col:last-child ul { columns: 1; } /* newsletter col stays single */
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr !important; }
  .footer-col ul { columns: 2; }
}

/* ── Mobile homepage: fil info panel (B1 → B2) ── */
@media (max-width: 768px) {
  /* Show fil-info prominently on mobile */
  .une-sidebar-left {
    order: 2;
    width: 100%;
    background: #f8f9fc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
  }
  .widgets-row {
    display: flex;
    gap: 20px;
    padding: 10px 0 14px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 14px;
  }
  .widget { flex: 1; }
  .widget-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #999;
    margin-bottom: 2px;
  }
  .widget-value { font-size: 20px; font-weight: 700; color: var(--black); }
  .widget-value--up { color: #00a84f; font-size: 16px; }
  .fil-title { font-size: 16px; font-weight: 700; }
  .live-timeline { max-height: 280px; overflow-y: auto; }
  .timeline-item { padding: 8px 0; }
  .timeline-time { font-size: 13px; font-weight: 700; color: var(--red); min-width: 46px; }
  .timeline-link { font-size: 14px; line-height: 1.4; }
  .fil-more-btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
  }
}

/* ── "Plus d'infos" button consistent style ── */
.triptych-more-btn,
.sosoir-more,
.section-more,
.vendez-more,
.fil-more-btn {
  /* already styled — just ensure text is correct */
}


/* ============================================================
   FINAL FIXES — side buttons, back-to-top, carousel, nav
   ============================================================ */

/* ── Side buttons: Le Soir style ── */
.side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 999;
}
.side-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  width: 68px !important;
  height: 80px !important;
  border-radius: 8px 0 0 8px !important;
  background: #fff !important;
  color: #003b7a !important;
  box-shadow: -3px 0 12px rgba(0,0,0,.14) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: 1px solid #e8edf4 !important;
  border-right: none !important;
  transition: background .2s, color .2s !important;
}
.side-btn svg { color: #003b7a !important; flex-shrink: 0; }
.side-btn span { writing-mode: horizontal-tb !important; font-size: 10px !important; color: #003b7a !important; }
.side-btn:hover { background: #f0f6ff !important; color: #00AEEF !important; }
.side-btn:hover svg, .side-btn:hover span { color: #00AEEF !important; }
@media (max-width: 1024px) { .side-btns { display: none !important; } }

/* ── Carousel controls ── */
.hc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 4px;
}
.hc-arrow {
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.hc-arrow:hover { background: var(--red); }
.hc-dots { display: flex; gap: 6px; align-items: center; }
.hc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: #ccc; cursor: pointer;
  padding: 0; transition: background .25s, transform .25s;
}
.hc-dot-active { background: var(--red); transform: scale(1.3); }

/* ── Hero title: bordered box (picture-1111) ── */
.hero-title-block {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-bottom: 80px;
  margin-bottom: -80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-cat-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  text-decoration: none;
  z-index: 3;
}
.hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  background: #fff;
  border: 4px solid var(--red);
  border-radius: 4px;
  padding: 12px 18px;
  max-width: 700px;
  box-shadow: 0 4px 18px rgba(0,174,239,.2);
  letter-spacing: -.3px;
}
.hero-title a { color: var(--black); text-decoration: none; display: block; }
.hero-title a:hover { color: var(--red); }
@media (max-width: 900px)  { .hero-title { font-size: 24px; padding: 10px 14px; border-width: 3px; } }
@media (max-width: 600px)  { .hero-title { font-size: 18px; padding: 8px 10px; border-width: 3px; } }
@media (max-width: 900px)  { .hero-title-block { padding-bottom: 60px; margin-bottom: -60px; } }
@media (max-width: 600px)  { .hero-title-block { padding-bottom: 40px; margin-bottom: -40px; } }

/* ── Back to top button ── */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.22);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(10px);
}
.back-to-top.btt-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--red-dark); }
@media (min-width: 1025px) {
  .back-to-top { bottom: 24px; right: 82px; }
}

/* ── Nav active state — removed ── */
.drawer-list a.active {
  color: var(--red) !important;
  font-weight: 700 !important;
  padding-left: 12px !important;
  border-left: 3px solid var(--red) !important;
}

/* ── Footer mobile: 2-column no empty space ── */
@media (max-width: 768px) {
  .footer-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col ul { margin: 0; padding: 0; list-style: none; }
}

/* ============================================================
   FOOTER MOBILE FIX — strict 2x2 grid, no full-width last col
   ============================================================ */
@media (max-width: 768px) {
  .footer-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }
  .footer-col {
    grid-column: auto !important;
  }
  .footer-col ul {
    columns: 1 !important;
    column-gap: 0 !important;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer-col ul li { break-inside: auto; }
}
@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── Remove border from hero title, hide side buttons ── */
.hero-title {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.side-btns { display: none !important; }

/* ============================================================
   LE SOIR OVERLAY STYLE — hero carousel + single article
   ============================================================ */

/* ── Hero carousel: image fills wrap, title overlays bottom ── */
.hero-img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
}
.hero-img-wrap > a { display: block; }
.hero-img-wrap .hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.55) 45%, transparent 80%);
  padding: 90px 48px 40px;
  text-align: center;
  pointer-events: none;
}
.hero-img-overlay .hero-cat-badge,
.hero-img-overlay .hero-title,
.hero-img-overlay .hero-title a { pointer-events: auto; }
.hero-cat-badge {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 38px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  color: #fff !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
  display: block !important;
}
.hero-title a {
  color: #fff !important;
  text-decoration: none;
  display: block;
}
.hero-title a:hover { color: rgba(255,255,255,.85) !important; }

/* ── Single article: image fills figure, title overlays bottom ── */
.single-hero-figure {
  position: relative;
  margin: 0 0 0 0;
  overflow: hidden;
  display: block;
}
.single-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.single-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.5) 50%, transparent 82%);
  padding: 100px 48px 40px;
}
.single-hero-cat-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 14px;
}
.single-hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  text-shadow: 0 3px 18px rgba(0,0,0,.45);
  letter-spacing: -.3px;
}
.single-hero-caption {
  font-size: 12px;
  color: #aaa;
  padding: 6px 0 0;
  font-style: italic;
  display: block;
}
/* No-image fallback */
.single-no-img-header { padding: 24px 0 12px; }
.single-hero-cat-badge-dark {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 14px;
}
.single-no-img-header .single-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.25;
  margin: 12px 0 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-img-wrap .hero-img { height: 360px; }
  .hero-title { font-size: 28px !important; }
  .hero-img-overlay { padding: 70px 28px 32px; }
  .single-hero-img { height: 340px; }
  .single-hero-title { font-size: 28px; }
  .single-hero-overlay { padding: 70px 28px 32px; }
  .single-no-img-header .single-title { font-size: 30px; }
}
@media (max-width: 600px) {
  .hero-img-wrap .hero-img { height: 260px; }
  .hero-title { font-size: 19px !important; }
  .hero-img-overlay { padding: 50px 18px 24px; }
  .single-hero-img { height: 240px; }
  .single-hero-title { font-size: 20px; }
  .single-hero-overlay { padding: 50px 18px 24px; }
  .single-no-img-header .single-title { font-size: 22px; }
}

/* ── Title hover underline + nav link hover ── */
.nav-link:hover { text-decoration: underline; }
.hero-title a:hover,
.single-hero-title:hover,
.card-title a:hover,
.timeline-link:hover { text-decoration: underline; }

/* ── Responsive hero image heights ── */
@media (max-width: 900px) {
  .hero-img-wrap .hero-img,
  .hero-img-wrap img[style] { height: 360px !important; }
  .single-hero-figure img[style] { height: 340px !important; }
  .single-hero-overlay { padding: 70px 24px 28px !important; }
  .single-hero-title[style] { font-size: 26px !important; }
  .hero-img-overlay { padding: 60px 24px 28px !important; }
}
@media (max-width: 600px) {
  .hero-img-wrap .hero-img,
  .hero-img-wrap img[style] { height: 250px !important; }
  .single-hero-figure img[style] { height: 240px !important; }
  .single-hero-overlay { padding: 50px 16px 22px !important; }
  .single-hero-title[style] { font-size: 20px !important; }
  .hero-img-overlay { padding: 40px 16px 22px !important; }
  h1[style*='36px'] { font-size: 20px !important; }
  h1[style*='40px'] { font-size: 20px !important; }
}

/* ============================================================
   CLEAN TITLE — no border, no box, bold serif above image
   ============================================================ */
.hero-title,
.hero-title a,
h2.hero-title,
h2.hero-title a {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  color: #111 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 12px !important;
  display: block !important;
  letter-spacing: -.3px;
}
h2.hero-title { margin: 8px 0 14px !important; }
.hero-title a { text-decoration: none !important; }
.hero-title a:hover { text-decoration: underline !important; color: var(--red) !important; }

.hero-cat-badge {
  display: inline-block !important;
  background: var(--red) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 3px 10px !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
  border: none !important;
}

/* Single article title above image */
.single-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  color: #111;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 8px 0 18px !important;
  letter-spacing: -.3px;
}
.single-hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.single-hero-figure { margin: 0 0 20px; }

/* Nav link hover */
.nav-link:hover { text-decoration: underline; }
.drawer-list a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  h2.hero-title, .hero-title { font-size: 24px !important; }
  .single-title { font-size: 26px !important; }
}
@media (max-width: 600px) {
  h2.hero-title, .hero-title { font-size: 20px !important; }
  .single-title { font-size: 20px !important; }
}

/* ============================================================
   BACK TO TOP — robust override, no CSS variables
   ============================================================ */
.back-to-top {
  position: fixed !important;
  bottom: 90px !important;
  right: 20px !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #00AEEF !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.28) !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .3s, transform .3s !important;
  transform: translateY(12px) !important;
}
.back-to-top.btt-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.back-to-top:hover {
  background: #0090C8 !important;
  transform: translateY(-2px) !important;
}
.back-to-top svg {
  pointer-events: none;
}

/* ── Remove nav overflow arrow indicator ── */
.nav-inner::after,
.nav-inner::before,
.main-nav::after,
.main-nav::before { display: none !important; content: none !important; }
.nav-arrow { display: none !important; }

/* ── Footer 2-col layout on tablet (up to 1024px) ── */
@media (max-width: 1024px) {
  .footer-cols { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px 16px !important; }
  .footer-col { grid-column: auto !important; }
  .footer-col ul { columns: 1 !important; column-gap: 0 !important; margin: 0; padding: 0; list-style: none; }
}

/* ============================================================

/* ── Nav arrows: always visible both sides, opacity shows state ── */
#navLeft, #navRight,
.nav-arrow--left, .nav-arrow--right {
  display: flex !important;
  opacity: 0.25;
}

/* ── Fix: nav-arrow was position:absolute from original CSS — force static so it stays in flex flow ── */
.nav-arrow, #navRight {
  position: relative !important;
  right: auto !important;
  left: auto !important;
  top: auto !important;
}

/* ── Nav links: plain by default — no pill, no underline ── */
.nav-link,
.nav-link:hover,
.nav-link:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  color: var(--black, #111) !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 14px !important;
}
.nav-list li a,
.nav-list li a:hover { text-decoration: none !important; }

/* Site logo — no hover effect */
.site-logo,
.site-logo:hover,
.logo-le,
.logo-soir { text-decoration: none !important; }

/* ── Nav right fade — shows items continue beyond edge ── */
.nav-inner {
  position: relative !important;
}
.nav-inner::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  right: 28px !important; /* leave room for › button */
  width: 80px !important;
  height: 100% !important;
  background: linear-gradient(to right, transparent, #fff) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ── Remove underline & hover effect from article titles ── */
.single-title a,
.single-title a:hover,
.cp-title a,
.cp-title a:hover,
.hero-title a,
.hero-title a:hover,
h1 a, h1 a:hover,
h2 a, h2 a:hover {
  text-decoration: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* ── Title: underline on hover only, remove shadow ── */
.single-title a:hover,
.cp-title a:hover,
.hero-title a:hover,
h1 a:hover,
h2 a:hover {
  text-decoration: underline !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}
.single-title a,
.cp-title a,
.hero-title a,
h1 a,
h2 a {
  text-decoration: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ── Hide category label above title everywhere ── */
.hero-cat-badge,
.single-cat-label,
.cp-cat-label,
.sa-cat-square,
.sa-cat-name,
.sa-cat-pipe,
.pol-hero-label,
.single-breadcrumb,
.cp-breadcrumb { display: none !important; }

/* ============================================================
   NOTIFICATION BELL
   ============================================================ */
.notif-wrap { position: relative; display: inline-flex; align-items: center; }

.notif-badge {
  position: absolute;
  top: -3px; right: -4px;
  background: #e53935;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid #fff;
  pointer-events: none;
  animation: notif-pop .25s ease;
}
@keyframes notif-pop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.notif-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: -8px;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  z-index: 9000;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.notif-panel::before {
  content: '';
  position: absolute;
  top: -7px; right: 16px;
  width: 14px; height: 14px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  transform: rotate(45deg);
}

.notif-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.notif-panel-title {
  font-size: .82rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.notif-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #999;
  line-height: 1;
  padding: 2px 4px;
}
.notif-panel-close:hover { color: #333; }

.notif-list {
  list-style: none;
  margin: 0; padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.notif-item { border-bottom: 1px solid #f5f5f5; }
.notif-item:last-child { border-bottom: none; }
.notif-item-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  text-decoration: none;
  background: #f0f8ff;
  transition: background .15s;
}
.notif-item-link:hover { background: #e6f4fb; }
.notif-item-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00AEEF;
  margin-top: 5px;
}
.notif-item-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.notif-item-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #00AEEF;
}
.notif-item-title {
  font-size: .84rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
}
.notif-item-time { font-size: .72rem; color: #999; }

.notif-panel-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 14px;
  color: #bbb;
}
.notif-panel-empty p { margin: 0; font-size: .85rem; }

.notif-panel-foot {
  padding: 10px 14px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}
.notif-panel-clear {
  font-size: .75rem;
  color: #00AEEF;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.notif-panel-clear:hover { color: #007db3; }

@media (max-width: 480px) {
  .notif-panel {
    position: fixed;
    top: auto; bottom: 0;
    left: 0; right: 0;
    width: 100%;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  }
  .notif-panel::before { display: none; }
}

/* ── Nav arrows: black and bold ── */
.nav-arrow, #navLeft, #navRight {
  color: #111 !important;
  font-weight: 900 !important;
  font-size: 1.6rem !important;
}

/* ── Nav arrows: bigger, bolder, blacker ── */
.nav-arrow, #navLeft, #navRight {
  color: #000 !important;
  font-weight: 900 !important;
  font-size: 2.2rem !important;
  -webkit-text-stroke: 0.5px #000 !important;
}

/* ── Search overlay ── */
#searchOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
#searchOverlay.open { display: flex; }
#searchOverlay .search-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  position: relative;
}
#searchOverlay .search-box form {
  display: flex;
  gap: 8px;
  align-items: center;
}
#searchOverlay .search-input {
  flex: 1;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1rem;
  outline: none;
}
#searchOverlay .search-input:focus { border-color: #00AEEF; }
#searchOverlay .search-submit {
  background: #00AEEF;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: .95rem;
  cursor: pointer;
  font-weight: 600;
}
#searchOverlay .search-submit:hover { background: #0098d4; }
#searchOverlay .search-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #ddd;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Fil Info page — all categories grid ── */
.fi-page { padding: 40px 0 60px; }
.fi-page-header { text-align: center; margin-bottom: 36px; }
.fi-page-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: #111;
  margin: 0 0 6px;
}
.fi-page-sub { color: #777; font-size: 14px; margin: 0; }

/* Two-column category grid */
.fi-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
}

/* Each category block */
.fi-cat-block {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.fi-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 2px solid #00AEEF;
}
.fi-cat-name { margin: 0; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.fi-cat-name a { color: #111; text-decoration: none; }
.fi-cat-name a:hover { color: #00AEEF; }
.fi-cat-link { font-size: 12px; color: #00AEEF; text-decoration: none; font-weight: 600; white-space: nowrap; }
.fi-cat-link:hover { text-decoration: underline; }

/* 2×2 article grid inside each category */
.fi-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.fi-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.fi-card:nth-child(2n) { border-right: none; }
.fi-card:nth-child(3), .fi-card:nth-child(4) { border-bottom: none; }
.fi-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.fi-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.fi-card-img-wrap:hover .fi-card-img { transform: scale(1.04); }
.fi-card-body { padding: 10px 12px 12px; flex: 1; }
.fi-card-title { margin: 0 0 6px; font-size: 13px; font-weight: 700; line-height: 1.4; }
.fi-card-title a { color: #111; text-decoration: none; }
.fi-card-title a:hover { text-decoration: underline; color: #00AEEF; }
.fi-card-date { font-size: 11px; color: #999; }

@media (max-width: 900px) {
  .fi-cats-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .fi-articles-grid { grid-template-columns: 1fr; }
  .fi-card { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .fi-card:last-child { border-bottom: none; }
}

/* ── Nav scroll-spy: highlight removed ── */
