:root {
  --navy: #0d1b2e;
  --navy2: #152238;
  --navy3: #1c2d44;
  --red: #cc1a1a;
  --red2: #e02020;
  --white: #ffffff;
  --grey-bg: #f4f6f9;
  --grey-mid: #8a9bb0;
  --grey-text: #4a5568;
  --border: #dde3ec;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, 'Times New Roman', serif; background: var(--white); color: #1a1a2e; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Breaking news ticker ── */
#top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 34px;
}
.ticker-label {
  background: #8b0000;
  padding: 0 16px;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 11px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker 55s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ── Header ── */
header { background: var(--navy); border-bottom: 3px solid var(--red); position: relative; }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 52px; width: auto; border-radius: 10px; }

nav ul { list-style: none; display: flex; flex-wrap: wrap; }
nav ul li a {
  display: block;
  color: #c8d8f0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
nav ul li a:hover,
nav ul li a.active { background: var(--red); color: var(--white); }

/* ── Layout helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Section label pill ── */
.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 8px;
}

/* ── Section header ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}
.section-header h2 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
}
.section-header .see-all { margin-left: auto; color: var(--red); font-family: Arial, sans-serif; font-size: 13px; }
.section-header .see-all:hover { text-decoration: underline; }

/* ── Hero ── */
.hero { position: relative; height: 520px; overflow: hidden; background: var(--navy2); }
.hero > img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,12,22,.88) 35%, rgba(5,12,22,.15) 100%);
}
.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 40px;
  max-width: 940px;
}
.hero-content .section-label { margin-bottom: 14px; font-size: 11px; }
.hero-content h1 {
  font-size: 34px; color: var(--white); line-height: 1.22;
  margin-bottom: 14px; font-family: Georgia, serif;
}
.hero-content .hero-excerpt { color: #b8ccec; font-size: 16px; font-family: Arial, sans-serif; margin-bottom: 16px; max-width: 700px; line-height: 1.5; }
.hero-meta { color: #6a8bb0; font-family: Arial, sans-serif; font-size: 13px; }
.hero-link { position: absolute; inset: 0; }

/* ── Card grid ── */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body { padding: 16px; }
.card-body .section-label { font-size: 10px; }
.card-body h3 { font-size: 17px; line-height: 1.3; margin: 8px 0 10px; color: var(--navy); font-family: Georgia, serif; }
.card-body h3 a:hover { color: var(--red); }
.card-body .excerpt { font-family: Arial, sans-serif; font-size: 13px; color: var(--grey-text); line-height: 1.5; margin-bottom: 12px; }
.card-meta { font-family: Arial, sans-serif; font-size: 12px; color: var(--grey-mid); }

/* ── Opinion strip ── */
.opinion-strip { background: var(--navy); padding: 40px 0; }
.opinion-strip .section-label { margin-bottom: 14px; }
.opinion-quote { font-family: Georgia, serif; font-size: 22px; font-style: italic; line-height: 1.45; color: var(--white); max-width: 740px; margin-bottom: 18px; }
.opinion-author { font-family: Arial, sans-serif; font-size: 14px; color: var(--grey-mid); }
.opinion-cta {
  display: inline-block; margin-top: 20px;
  background: var(--red); color: var(--white);
  font-family: Arial, sans-serif; font-size: 13px;
  padding: 10px 22px; letter-spacing: .5px;
}
.opinion-cta:hover { background: var(--red2); }

/* ── Video card ── */
.video-card { position: relative; }
.play-overlay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(204,26,26,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; pointer-events: auto; cursor: pointer;
  transition: transform .15s, background .15s;
}
.play-overlay:hover { transform: translate(-50%,-50%) scale(1.1); background: rgba(224,32,32,.95); }
.video-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.75); color: #fff;
  font-family: Arial, sans-serif; font-size: 11px;
  padding: 2px 6px;
}

/* ── Section page header ── */
.section-page-header {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 44px 0;
}
.section-page-header .section-label { font-size: 11px; margin-bottom: 12px; }
.section-page-header h1 {
  color: var(--white); font-family: Arial, sans-serif;
  font-size: 30px; font-weight: bold;
  text-transform: uppercase; letter-spacing: 2px;
}
.section-page-header p { color: var(--grey-mid); font-family: Arial, sans-serif; font-size: 14px; margin-top: 8px; }

/* ── Article list ── */
.article-list-item {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 22px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.article-list-item > img { width: 240px; height: 155px; object-fit: cover; }
.article-list-info .section-label { font-size: 10px; }
.article-list-info h3 { font-size: 21px; margin: 10px 0 12px; line-height: 1.3; color: var(--navy); font-family: Georgia, serif; }
.article-list-info h3 a:hover { color: var(--red); }
.article-list-info .excerpt { font-family: Arial, sans-serif; font-size: 14px; color: var(--grey-text); line-height: 1.55; }
.article-list-meta { font-family: Arial, sans-serif; font-size: 12px; color: var(--grey-mid); margin-top: 10px; }

/* ── Article page ── */
.article-page-header { background: var(--navy); padding: 52px 0 44px; }
.article-page-header .section-label { font-size: 11px; margin-bottom: 18px; }
.article-page-header h1 {
  font-size: 36px; color: var(--white); font-family: Georgia, serif;
  line-height: 1.22; max-width: 820px; margin-bottom: 18px;
}
.article-page-header .article-summary {
  color: #a8bcd8; font-family: Arial, sans-serif; font-size: 16px;
  max-width: 720px; line-height: 1.6; margin-bottom: 16px;
}
.article-page-header .article-meta { color: #6a8bb0; font-family: Arial, sans-serif; font-size: 13px; }

.article-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 44px; margin: 44px 0 64px; align-items: start;
}
.article-body > img { width: 100%; height: 440px; object-fit: cover; margin-bottom: 30px; }
.article-body p { font-family: Georgia, serif; font-size: 17px; line-height: 1.82; color: #1a1a2e; margin-bottom: 22px; }
.article-body h3 {
  font-family: Arial, sans-serif; font-size: 14px; font-weight: bold;
  text-transform: uppercase; letter-spacing: .8px; color: var(--navy);
  margin: 32px 0 14px; padding-top: 20px;
  border-top: 2px solid var(--border);
}
.article-body blockquote {
  border-left: 4px solid var(--red); margin: 28px 0;
  padding: 14px 26px; background: var(--grey-bg);
  font-style: italic; font-size: 19px; color: var(--navy); line-height: 1.5;
}

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 24px; }
.sidebar-block { border: 1px solid var(--border); margin-bottom: 24px; overflow: hidden; }
.sidebar-block-header {
  background: var(--navy); color: var(--white);
  font-family: Arial, sans-serif; font-size: 11px;
  font-weight: bold; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 11px 16px;
}
.sidebar-item {
  display: flex; gap: 12px; padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item img { width: 68px; height: 68px; object-fit: cover; flex-shrink: 0; }
.sidebar-item-text h4 { font-family: Georgia, serif; font-size: 14px; line-height: 1.3; color: var(--navy); }
.sidebar-item-text h4 a:hover { color: var(--red); }
.sidebar-item-meta { font-family: Arial, sans-serif; font-size: 11px; color: var(--grey-mid); margin-top: 5px; }

/* ── Board of directors ── */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.board-card { border: 1px solid var(--border); overflow: hidden; }
.board-card img { width: 100%; height: 210px; object-fit: cover; object-position: top; }
.board-info { padding: 20px; }
.board-name { font-size: 18px; font-weight: bold; color: var(--navy); margin-bottom: 4px; }
.board-title { color: var(--red); font-family: Arial, sans-serif; font-size: 13px; font-weight: bold; margin-bottom: 12px; line-height: 1.4; }
.board-bio { font-family: Arial, sans-serif; font-size: 13px; color: var(--grey-text); line-height: 1.55; }

/* ── Podcast page ── */
.podcast-show { padding: 52px 0; border-bottom: 1px solid var(--border); }
.podcast-show:last-child { border-bottom: none; }

.show-header {
  display: grid; grid-template-columns: 128px 1fr; gap: 28px;
  align-items: start; margin-bottom: 28px;
}
.show-header img {
  width: 128px; height: 128px; object-fit: cover;
  border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.show-header-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.show-header h2 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.show-header p {
  font-family: Arial, sans-serif; font-size: 14px;
  color: var(--grey-text); line-height: 1.6; max-width: 640px;
}
.show-ep-count {
  font-family: Arial, sans-serif; font-size: 12px; color: var(--grey-mid);
  background: var(--grey-bg); padding: 2px 10px; border-radius: 20px;
}

.podcast-item {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.podcast-item:last-child { border-bottom: none; }
.podcast-item img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; border-radius: 6px; }
.podcast-info { flex: 1; min-width: 0; }
.podcast-info h3 { font-size: 16px; margin-bottom: 6px; color: var(--navy); line-height: 1.35; }
.podcast-info h3 a:hover { color: var(--red); }
.podcast-info p { font-family: Arial, sans-serif; font-size: 13px; color: var(--grey-text); line-height: 1.5; }
.podcast-meta {
  font-family: Arial, sans-serif; font-size: 12px; color: var(--grey-mid);
  margin-top: 8px; display: flex; align-items: center; gap: 16px;
}
.podcast-meta-duration::before { content: '◷ '; }
.play-btn-text {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  background: var(--navy); color: var(--white);
  font-family: Arial, sans-serif; font-size: 12px; font-weight: bold;
  padding: 6px 16px; border-radius: 4px; transition: background .18s;
}
.play-btn-text:hover { background: var(--red); }

/* ── Grey band ── */
.grey-band { background: var(--grey-bg); padding: 8px 0 32px; margin-top: 40px; }

/* ── Footer ── */
footer { background: var(--navy); border-top: 3px solid var(--red); padding: 44px 0 22px; }
.footer-logo { margin-bottom: 24px; }
.footer-logo img { height: 42px; width: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 36px; }
.footer-col h4 {
  color: var(--white); font-family: Arial, sans-serif;
  font-size: 12px; font-weight: bold;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #6a8bb0; font-family: Arial, sans-serif; font-size: 13px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--navy3); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: #6a8bb0; font-family: Arial, sans-serif; font-size: 13px; }
.footer-disclaimer { color: #3a4e66; font-family: Arial, sans-serif; font-size: 11px; max-width: 560px; line-height: 1.5; }

/* ── Subscribe modal ── */
#subscribe-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#subscribe-modal.open { display: flex; }
#subscribe-modal-box {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 44px 36px 36px;
  text-align: center;
  position: relative;
  animation: modal-in .2s ease;
}
@keyframes modal-in {
  from { transform: translateY(-16px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
#subscribe-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 22px; line-height: 1;
  cursor: pointer; color: var(--grey-mid);
}
#subscribe-modal-close:hover { color: var(--navy); }
.subscribe-modal-icon {
  width: 68px; height: 68px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin: 0 auto 22px;
}
#subscribe-modal-box h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
#subscribe-modal-box p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 26px;
}
.subscribe-modal-btn {
  display: block;
  background: var(--red);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .4px;
  padding: 13px 24px;
  margin-bottom: 14px;
  transition: background .2s;
}
.subscribe-modal-btn:hover { background: var(--red2); }
.subscribe-modal-signin {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--grey-mid);
}
.subscribe-modal-signin:hover { color: var(--navy); text-decoration: underline; }

/* ── Burger button ── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c8d8f0;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .split-2col { grid-template-columns: 1fr !important; gap: 24px !important; }
  .about-mission-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .about-mission-grid > div:last-child img { height: 200px !important; }
}
@media (max-width: 960px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 36px; }
}
@media (max-width: 640px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .hero { height: 360px; }
  .hero-content { padding: 24px; }
  .hero-content h1 { font-size: 22px; }
  .board-grid { grid-template-columns: 1fr; }
  /* Burger replaces nav */
  .burger-btn { display: flex; margin-left: auto; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100; }
  nav.open { display: block; }
  nav ul {
    display: flex;
    flex-direction: column;
    background: var(--navy2);
    border-top: 2px solid var(--red);
    padding: 8px 0;
  }
  nav ul li a { padding: 10px 20px; border-radius: 0; }
  /* Two-column inline grid override */
  .split-2col { grid-template-columns: 1fr !important; }
  .article-list-item { grid-template-columns: 1fr; }
  .article-list-item > img { width: 100%; height: 180px; }
  .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 36px; }
  .article-page-header { padding: 32px 0 28px; }
  .article-page-header h1 { font-size: 22px; }
  .section-page-header { padding: 28px 0 24px; }
  .article-body img { height: auto !important; }
  .container { padding: 0 16px; }
}

/* ── Sections : 1er article cliquable (image violette = à remplacer),
   les autres verrouillés "Subscribe to watch" (façon paywall vidéo) ── */
.article-list-item.article-clickable > img { background: #7c3aed; }
.article-list-item.locked { opacity: 0.9; }
.article-list-item.locked .article-list-info h3 { color: #55607a; }
.article-list-item > .thumb-lock { position: relative; width: 240px; height: 155px; line-height: 0; overflow: hidden; flex-shrink: 0; }
.article-list-item > .thumb-lock img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(35%); }
.article-list-item > .thumb-lock .lock-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: 6px; background: rgba(13,20,38,0.62); color: #fff;
  font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-align: center;
}
.article-list-item > .thumb-lock .lock-overlay svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .article-list-item > .thumb-lock { width: 100%; height: 180px; }
}

/* Logo LNN en overlay centré, par-dessus le hero (accueil) */
.hero-brand { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: center; padding-top: 28px; z-index: 3; pointer-events: none; }
.hero-brand img { height: 104px; width: auto; max-width: 78%; filter: drop-shadow(0 2px 14px rgba(0,0,0,0.6)); }
@media (max-width: 640px) { .hero-brand img { height: 104px; width: auto; max-width: 78%; filter: drop-shadow(0 2px 14px rgba(0,0,0,0.6)); } }

/* ── Homepage allégée : article vedette + liste de titres ── */
.lead-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.lead-card .card-body { padding: 18px 4px 4px; }
.headlines { list-style: none; margin: 0; padding: 0; }
.headlines li { padding: 16px 0; border-bottom: 1px solid var(--border); }
.headlines li:first-child { padding-top: 0; }
.headlines li:last-child { border-bottom: none; }
.headlines .section-label { display: block; margin-bottom: 6px; }
.headlines h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 16px; line-height: 1.35; color: var(--navy); }
.headlines h3 a { color: inherit; text-decoration: none; }
.headlines h3 a:hover { color: var(--red); }
@media (max-width: 820px) { .lead-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ── Bandeau-titre (nameplate) : logo à gauche, nom à droite + délimitation ── */
.masthead { display: flex; align-items: center; justify-content: space-between; gap: 28px;
            padding: 30px 0 20px; border-bottom: 3px solid var(--navy); margin-bottom: 34px; }
.masthead-logo img { height: 82px; width: auto; display: block; }
.masthead-name { text-align: right; }
.masthead-title { display: block; font-family: Georgia, 'Times New Roman', serif;
                  font-size: 30px; font-weight: 700; color: var(--navy); letter-spacing: .4px; }
.masthead-sub { display: block; font-family: Arial, sans-serif; font-size: 13px;
                color: var(--grey-mid); margin-top: 5px; }
@media (max-width: 640px) {
  .masthead { flex-direction: column; text-align: center; gap: 14px; padding-top: 22px; }
  .masthead-name { text-align: center; }
  .masthead-logo img { height: 64px; }
  .masthead-title { font-size: 24px; }
}

/* ── Image vedette : plus grande + coins arrondis ── */
.lead-card { border: none; }
.lead-card .lead-media { display: block; }
.lead-card .card-img { border-radius: 12px; width: 100%; object-fit: cover; }

/* ── Badges vidéo (Free / Subscriber only) ── */
.video-badge { position: absolute; top: 8px; left: 8px; z-index: 3;
  font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 3px; color: #fff; }
.video-badge.free { background: #1a9c5b; }
.video-badge.sub  { background: rgba(13,27,46,.92); }

/* ── Lightbox vidéo (video gratuite) ── */
#video-modal { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none;
  align-items: center; justify-content: center; z-index: 1200; padding: 20px; }
#video-modal.open { display: flex; }
#video-modal-box { position: relative; width: min(960px, 96vw); }
#video-modal-player { width: 100%; max-height: 82vh; border-radius: 10px; background: #000; display: block; }
#video-modal-close { position: absolute; top: -16px; right: -16px; width: 38px; height: 38px;
  border-radius: 50%; border: none; background: #fff; color: #111; font-size: 22px; line-height: 1;
  cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,.4); }
