/* ======================================================
   VARIABLES GLOBALES (Valo Africa)
   ====================================================== */
:root {
  --va-bg: #0b0505;
  --va-bg-light: #f5f5f5;
  --va-primary: #4a0202;       /* rouge très sombre */
  --va-primary-dark: #260000;
  --va-accent: #b91c1c;        /* rouge accent */
  --va-text: #111827;
  --va-muted: #6b7280;
  --va-card-bg: #ffffff;
  --va-border: #e5e7eb;
  --va-radius: 10px;
  --va-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.18);

  --valo-red: #4a0202;
  --valo-red-dark: #260000;
}

/* ======================================================
   RESET SIMPLE
   ====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--va-text);
  background: var(--va-bg-light);
}

a {
  color: var(--va-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================================================
   HEADER / NAVIGATION
   ====================================================== */
.site-header {
  background: linear-gradient(90deg, #260000, #4a0202, #260000);
  color: #fff;
  padding: 0.7rem 0;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.logo-text {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.logo-text-light {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.logo-text,
.logo-text-light {
  color: #ffffff;
  text-transform: uppercase;
}

.tagline {
  font-size: 0.8rem;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  color: #fee2e2;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.2s ease-out;
}

.main-nav a:hover {
  color: #ffffff;
}
.main-nav a:hover::after {
  width: 100%;
}

/* Burger mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fee2e2;
  margin: 3px 0;
}

/* ======================================================
   STRUCTURE PRINCIPALE
   ====================================================== */
.site-main {
  padding-bottom: 2.5rem;
}

/* ======================================================
   HERO – BLOC ROUGE (TITRE + 3 MÉDIAS)
   ====================================================== */

.hero {
  background: #4a0202;
  color: #f9fafb;
  padding: 1.6rem 0 2rem;
  margin-bottom: 2rem;
}

.hero-top-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.4rem;
}

/* Carte centrale avec le H1 */
.hero-main-card {
  background: transparent;
  color: #ffffff;
  text-align: center;
  padding: 0.2rem 0 0.4rem;
  max-width: 720px;
  margin: 0 auto 0.2rem;
  border-radius: 0;
  box-shadow: none;
}

.hero-main-card h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  color: #ffffff;
}

.hero-main-card p {
  font-size: 0.95rem;
  color: #fdf2f2;
  margin-top: 0.4rem;
}

/* Petite ligne verticale sous le titre */
.hero-connector {
  width: 1px;
  height: 8px;
  background: #f9fafb;
  margin: 0.15rem auto 0.4rem;
  opacity: 0.9;
}

/* Ligne des 3 médias */
.hero-media-row {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .hero-media-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-media-item {
  text-align: center;
  color: #fef2f2;
}

/* Lien couvrant toute la carte */
.hero-media-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 1rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  color: #fef2f2;
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    background 0.2s ease-out;
  cursor: pointer;
}

.hero-media-item:hover .hero-media-link,
.hero-media-item:focus-within .hero-media-link {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

/* Zone icône */
.hero-media-icon {
  border-radius: 18px;
  padding: 1.2rem 0.8rem;
  margin-bottom: 0.6rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

/* Icônes PNG/SVG */
.media-icon-img {
  display: block;
  width: 110px;
  max-width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .media-icon-img {
    width: 130px;
  }
}

.hero-media-item h2 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.hero-media-item p {
  font-size: 0.85rem;
}

/* Bouton CTA interne */
.hero-card-cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #fef2f2;
  color: #fef2f2;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-media-item:hover .hero-card-cta {
  background: #fef2f2;
  color: #4a0202;
}

/* Effets d’ondes pour TV & Radio */
.hero-media-item-tv .hero-media-icon::after,
.hero-media-item-radio .hero-media-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(254, 242, 242, 0.75);
  width: 140%;
  height: 140%;
  opacity: 0;
  transform: scale(0.7);
}

.hero-media-item-tv:hover .hero-media-icon::after,
.hero-media-item-radio:hover .hero-media-icon::after {
  animation: media-wave 2.4s infinite ease-out;
}

.hero-media-item-radio:hover .hero-media-icon::after {
  animation-delay: 0.8s;
}

@keyframes media-wave {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }
  70% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* ======================================================
   PLAYER VIDÉO TV (PAGE WEBTV)
   ====================================================== */

.tv-player {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

/* Ratio 16:9 */
.tv-player-inner {
  position: relative;
  padding-top: 56.25%;
}

.tv-player-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
}

/* ======================================================
   SECTION "EN DIRECT" + DERNIERS CONTENUS (HOME)
   ====================================================== */

.tv-live {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-latest {
  padding: 2.5rem 0 3rem;
  background: #f5f5f5;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.section-header p {
  font-size: 0.95rem;
  color: #4b5563;
}

.latest-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 992px) {
  .latest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.latest-column h3 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: #111827;
}

.latest-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.latest-card {
  display: flex;
  gap: 0.75rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.latest-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #e5e7eb;
}

/* Décor léger par type de média */
.latest-thumb-tv {
  background: linear-gradient(135deg, #4a0202, #b91c1c);
}

.latest-thumb-radio {
  background: linear-gradient(135deg, #0f172a, #4b5563);
}

/* MAG : rouge au lieu d’orange */
.latest-thumb-mag {
  background: linear-gradient(135deg, var(--valo-red), var(--va-accent));
}

.latest-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #111827;
}

.latest-body p {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.35rem;
}

.latest-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #b91c1c;
}
.latest-link:hover {
  text-decoration: underline;
}

/* ======================================================
   WEBRADIO – ICÔNE + PLAYER + BOUTONS
   ====================================================== */

.radio-hero {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.radio-icon-wrapper {
  text-align: center;
}

.radio-icon {
  max-width: 120px;
  height: auto;
  display: inline-block;
}

/* Bloc DJ (bleu, compact) */
.radio-player-inner {
  max-width: 340px;
  margin: 0.5rem auto;
  padding: 0.5rem;
  border-radius: 18px;
  background-color: #050c2b;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.player-placeholder {
  margin: 0;
  padding: 0;
}

.radio-current-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.radio-cta {
  text-align: center;
  margin: 2rem auto 3rem auto;
}

.btn-live-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background: var(--valo-red);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn-live-radio:hover {
  background: var(--valo-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Masquer l’iframe OneStream sur la page WebRadio */
.radio-cta .tv-player,
.radio-cta .tv-player-inner {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ======================================================
   WEBRADIO – CATÉGORIES D’ÉMISSIONS
   ====================================================== */

.radio-program {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Titre dans une pastille rouge */
.program-title {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  margin-bottom: 0.75rem;
  background: #7b0000;
  color: #fff;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 600;
}

.program-subtitle {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.program-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.cat-btn {
  background: var(--valo-red);
  color: #fff;
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.cat-btn:hover {
  background: var(--valo-red-dark);
  transform: translateY(-2px);
}

/* ======================================================
   WEBRADIO – 10 DERNIÈRES ÉMISSIONS (CARTES)
   ====================================================== */

.radio-latest {
  margin: 2.5rem auto 3rem auto;
  text-align: center;
}

.radio-latest-title {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.radio-latest-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Grille de cartes */
.radio-latest-grid {
  display: grid;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .radio-latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .radio-latest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Carte émission */
.radio-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 0.9rem 1rem 1rem;
  text-align: left;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.radio-card-title {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
  color: var(--valo-red);
}

.radio-card-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.radio-card-desc {
  font-size: 0.9rem;
}

/* ======================================================
   TEXTE SEO / TITRES GÉNÉRAUX
   ====================================================== */

/* Texte SEO caché (visible pour Google et lecteurs d'écran) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* H1 centré, peu d’espace dessous (WebRadio) */
.page-heading {
  text-align: center;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
}

.page-heading h1 {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

/* ======================================================
   FOOTER
   ====================================================== */

.site-footer {
  background: #260000;
  color: #fbeaea;
  padding: 2rem 0 1rem;
  margin-top: 2.5rem;
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 1rem auto;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-inner h4 {
  margin-bottom: 0.5rem;
}

.footer-inner p {
  font-size: 0.9rem;
  color: #fde2e2;
}

.footer-inner ul {
  list-style: none;
  font-size: 0.9rem;
}

.footer-inner li {
  margin-bottom: 0.25rem;
}

.footer-inner a {
  color: #fee2e2;
}
.footer-inner a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 0.5rem;
}

/* ======================================================
   RESPONSIVE – MENU MOBILE
   ====================================================== */

@media (max-width: 768px) {
  .header-inner {
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #260000;
    flex-direction: column;
    padding: 0.5rem 1rem 0.8rem;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    margin: 0.15rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .magazine-hero {
    flex-direction: column;
  }

  .magazine-benefits-grid,
  .magazine-latest-grid {
    grid-template-columns: 1fr;
  }

  .magazine-cover-card {
    max-width: 100%;
  }
}

/* ======================================================
   PAGE MAGAZINE
   ====================================================== */

.magazine-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Colonne gauche plus large (~60%) */
.magazine-hero-text {
  flex: 1.6 1 380px;
}

/* Colonne droite plus compacte (~40%) */
.magazine-hero-cover {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colonne texte */
.magazine-hero-text h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.magazine-hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.magazine-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.magazine-hero-highlights li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

/* Puces rouges */
.magazine-hero-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--va-accent);
}

/* Illustration pleine largeur dans la colonne gauche */
.magazine-hero-illustration {
  width: 100%;
  margin: 1rem 0;
}

.magazine-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Bouton principal magazine – rouge, plus grand */
.btn-magazine-primary {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--valo-red), var(--va-accent));
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-magazine-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Carte couverture – bleu nuit + rouge */
.magazine-cover-card {
  width: 100%;
  max-width: 360px;
  padding: 1.5rem 1.3rem 1.7rem;
  border-radius: 24px;
  background: #050c2b;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

/* Image de couverture en haut */
.mag-cover-thumb {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #000;
}

.mag-cover-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Texte sous l’image */
.mag-cover-brand {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.magazine-cover-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.magazine-cover-subtitle {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

/* Bouton dans la carte couverture */
.btn-magazine-secondary {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--valo-red), var(--va-accent));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-magazine-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

/* Sections suivantes */
.magazine-section-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.magazine-section-intro {
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Avantages */
.magazine-benefits {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.magazine-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.mag-benefit h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.mag-benefit p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Articles récents */
.magazine-latest {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.magazine-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.mag-card {
  background: #050c2b;
  color: #f5f7ff;
  border-radius: 18px;
  padding: 1.1rem 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Tag → rouge clair */
.mag-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: #fecaca;
}

.mag-card-title {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.mag-card-excerpt {
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

/* Lien article → rouge accent */
.mag-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--va-accent);
}

.mag-card-link:hover {
  text-decoration: underline;
}

/* Section catégories magazine */
.magazine-categories {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}


/* === Ajustement hauteur image intro magazine === */

.magazine-hero-illustration {
  width: 100%;
  margin: 1rem 0 0.5rem; /* un peu d’espace autour */
}

.magazine-hero-img {
  width: 100%;
  max-height: 500px;      /* ↓ réduis encore si tu veux une image moins haute (ex : 220px) */
  object-fit: cover;      /* recadre l’image au lieu de la rapetisser avec du blanc */
  display: block;
  border-radius: 12px;
}


/* === Titre du magazine en rouge sang === */
.magazine-hero-text h1 {
  color: var(--valo-red);     /* ton rouge sombre global */
  font-weight: 800;
}


/* ====== Affichage / masquage pour le mode "journal ouvert" ====== */
.is-hidden {
  display: none !important;
}

/* Layout du journal ouvert */
.article-open-layout {
  margin: 2.5rem auto 3rem auto;
}

.article-open-header {
  margin-bottom: 1.5rem;
}

.article-open-header .article-category {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--valo-red);
  font-weight: 600;
}

.article-open-header .article-title {
  font-size: 1.9rem;
  margin: 0.4rem 0 0.3rem;
  color: #111827;
}

.article-open-header .article-meta {
  font-size: 0.85rem;
  color: #6b7280;
}

.article-back-link {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: none;
}
.article-back-link:hover {
  text-decoration: underline;
}

/* Deux colonnes façon journal */
.article-open-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.article-open-col {
  flex: 1 1 300px;
  max-width: 50%;
}

/* Images dans chaque colonne */
.article-open-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* Typo du texte article */
.article-open-col p {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.article-open-col h2 {
  font-size: 1.15rem;
  margin: 1.2rem 0 0.6rem;
  color: var(--valo-red);
}

/* Mobile : une seule colonne */
@media (max-width: 768px) {
  .article-open-col {
    max-width: 100%;
  }
}


/* =============== Article magazine ouvert : pagination (flèches) =============== */

.article-spread.is-hidden {
  display: none;
}

.article-spread.is-active {
  display: block;
}

.article-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0 0;
  gap: 1rem;
}

.article-nav {
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: #050c2b;           /* bleu nuit Valo Africa */
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.article-nav:hover:not(:disabled) {
  background: #111827;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.article-nav:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}


.radio-live-stats{
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  opacity: .85;
}


/* ===== Accessibilité ===== */
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ===== Layout (adaptable à votre thème) ===== */
.radio-cta{ padding: 8px 0; }
.radio-player-inner{ display:flex; justify-content:center; }
.radio-current-img{ max-width: 420px; width:100%; height:auto; display:block; border-radius: 10px; }

.radio-controls{
  display:flex;
  gap: 12px;
  justify-content:center;
  align-items:center;
  margin-top: 14px;
}

/* ===== Boutons "standard" ===== */
.radio-btn{
  appearance:none;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius: 10px;
  padding: 10px 14px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  line-height:1;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}

.radio-btn:disabled{
  opacity: .55;
  cursor:not-allowed;
}

/* ===== Couleur rouge standard (play/stop) ===== */
:root{
  --valo-red: #d11f1f;
  --valo-red-dark: #b61a1a;
}

/* Play: icône rouge + texte */
.radio-btn-play .radio-label{
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

/* Stop: seulement une icône */
.radio-btn-stop{
  padding: 10px 12px;
  border-color: rgba(209,31,31,.35);
}

/* ===== Icônes CSS (sans dépendance) ===== */
.icon-play{
  width: 0; height: 0;
  border-left: 12px solid var(--valo-red);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  display:inline-block;
}

.icon-stop{
  width: 14px;
  height: 14px;
  background: var(--valo-red);
  display:inline-block;
  border-radius: 2px;
}

/* Hover (desktop) */
@media (hover:hover){
  .radio-btn:hover{ border-color: rgba(0,0,0,.22); }
  .radio-btn-stop:hover{ border-color: rgba(209,31,31,.55); }
  .icon-play:hover{ border-left-color: var(--valo-red-dark); }
}

/* ===== Modulation (ondes) — visible seulement en lecture ===== */
.radio-wave{
  display:none;
  align-items:center;
  gap: 3px;
  margin-left: 2px;
}

.radio-wave i{
  display:block;
  width: 3px;
  height: 8px;
  background: var(--valo-red);
  border-radius: 2px;
  animation: wave 1s infinite ease-in-out;
}

.radio-wave i:nth-child(2){ animation-delay: .15s; }
.radio-wave i:nth-child(3){ animation-delay: .30s; }

@keyframes wave{
  0%,100%{ height: 6px; opacity:.7; }
  50%{ height: 18px; opacity: 1; }
}

/* ===== États lecture ===== */
.radio-btn-play.is-playing .radio-label{ display:none; }
.radio-btn-play.is-playing .icon-play{ display:none; }
.radio-btn-play.is-playing .radio-wave{ display:inline-flex; }

/* Player audio natif */
.radio-player{
  max-width: 720px;
  margin: 10px auto 0;
  padding: 0 10px;
}


/* ===== À suivre ===== */
.radio-next{
  max-width: 720px;
  margin: 18px auto 0;
  padding: 0 10px;
}

.radio-next-title{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}

.radio-next-list{
  display: grid;
  gap: 10px;
}

.radio-next-item{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.radio-next-item .t{
  font-weight: 700;
  margin: 0 0 4px;
}

.radio-next-item .m{
  font-size: 13px;
  opacity: .8;
}

.radio-next-loading{
  font-size: 14px;
  opacity: .8;
}
