/* ============================================================
   ACTUALITÉS — 91 FM
   ============================================================ */

/* ---------- Wrapper listing ---------- */
.actu {
  --actu-brand:  #d91319;
  --actu-ink:    #0f172a;
  --actu-muted:  #4b5a78;
  --actu-panel:  #ffffff;
  --actu-border: rgba(220,228,240,0.96);
  --actu-radius: 18px;
  --actu-wrap:   min(var(--page-max-width), calc(100% - 2 * var(--page-side-margin)));
  --actu-gap:    20px;
  background: #f3f6fb;
  min-height: 60vh;
}

/* ---------- Hero ---------- */
.actu-hero {
  position: relative;
  overflow: hidden; /* repli pour les navigateurs sans `clip` */
  overflow: clip;
  padding: 72px 0 64px;
}

.actu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://media.webradio91fm.fr/assets/content/backgrounds/BandeauNews.png') center / cover no-repeat;
  z-index: 0;
}

.actu-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 30, 0.45);
  z-index: 1;
}

.actu-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--actu-wrap);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.actu-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.actu-hero-kicker::before,
.actu-hero-kicker::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--actu-brand);
  border-radius: 99px;
}

.actu-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.82);
}

.actu-hero-sub {
  margin: 0;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
  max-width: 44ch;
}

/* ---------- Body listing ---------- */
.actu-body {
  padding: 40px 0 80px;
}

.actu-wrap {
  width: var(--actu-wrap);
  margin: 0 auto;
}

/* ---------- Barre de filtre catégorie ---------- */
.actu-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.actu-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(15,23,42,.10);
  background: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--actu-muted);
  cursor: pointer;
  transition: background .14s, border-color .14s, color .14s;
  white-space: nowrap;
  font-family: inherit;
  user-select: none;
}

.actu-filter-btn:hover {
  border-color: rgba(15,23,42,.22);
  color: var(--actu-ink);
}

.actu-filter-btn.is-active {
  background: var(--actu-brand);
  border-color: var(--actu-brand);
  color: #fff;
}

/* ---------- Grid ---------- */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--actu-gap);
}

@media (max-width: 900px) { .actu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .actu-grid { grid-template-columns: 1fr; } }

/* ---------- Card ---------- */
.actu-card {
  background: var(--actu-panel);
  border-radius: var(--actu-radius);
  overflow: hidden;
  border: 1px solid var(--actu-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.actu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.actu-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.actu-card-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e2e8f0;
}

.actu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.actu-card:hover .actu-card-media img {
  transform: scale(1.04);
}

.actu-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--actu-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.actu-card-body {
  padding: 20px 22px 24px;
}

.actu-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--actu-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.actu-card-byline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.actu-card-byline svg { flex-shrink: 0; }

.actu-card-dot { opacity: 0.4; }

.actu-card-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--actu-ink);
}

.actu-card-excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--actu-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; /* repli pour les navigateurs sans `clip` */
  overflow: clip;
}

/* ---------- Blank state (aucune actu) ---------- */
.actu-blank {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 72px;
  text-align: center;
}

.actu-blank-img {
  width: min(40vw, 420px);
  min-width: 160px;
  margin-bottom: 32px;
  animation: actuFloat 3.8s ease-in-out infinite;
}

@keyframes actuFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.actu-blank-title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 4vw, 4.2rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--actu-ink);
}

.actu-blank-sub {
  margin: 0 0 28px;
  font-size: clamp(14px, 1.7vw, 15px);
  color: var(--actu-muted);
  line-height: 1.6;
  max-width: 36ch;
}

.actu-blank-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--actu-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 6px 24px rgba(217,19,25,.3);
}
.actu-blank-btn:hover {
  background: #be0e14;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(217,19,25,.42);
}

@media (max-width: 640px) {
  .actu-blank { padding: 48px 20px 56px; }
  .actu-blank-img { width: min(68vw, 260px); }
  .actu-blank-title { white-space: normal; }
}

/* ============================================================
   ARTICLE DÉTAIL
   ============================================================ */

.actu-detail {
  --actu-brand:  #d91319;
  --actu-ink:    #0f172a;
  --actu-muted:  #4b5a78;
  --actu-panel:  #ffffff;
  --actu-border: rgba(220,228,240,0.96);
  --actu-radius: 18px;
  --actu-wrap:   min(1300px, calc(100% - 2 * var(--page-side-margin)));
  background: #f3f6fb;
  min-height: 60vh;
}

/* ── Hero (style agenda détail) ── */
.actu-dhero {
  position: relative;
  overflow: hidden; /* repli pour les navigateurs sans `clip` */
  overflow: clip;
  padding: 72px 0 56px;
}

.actu-dhero--plain { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }

.actu-dhero-bg { position: absolute; inset: 0; z-index: 0; }
.actu-dhero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.06);
}

.actu-dhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,14,30,.55) 0%, rgba(8,14,30,.75) 100%);
  z-index: 1;
}

.actu-dhero-inner {
  position: relative;
  z-index: 2;
  width: var(--actu-wrap);
  margin: 0 auto;
}

/* Fil d'Ariane */
.actu-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.actu-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .14s; }
.actu-breadcrumb a:hover { color: #fff; }
.actu-breadcrumb span:last-child {
  color: rgba(255,255,255,.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 30ch;
}

.actu-dhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 13px;
  border-radius: 999px;
  background: var(--actu-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.actu-dhero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
  max-width: 26ch;
  text-wrap: balance;
}

.actu-dhero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;        /* toujours sur une seule ligne */
  overflow: hidden; /* repli pour les navigateurs sans `clip` */
  overflow: clip;
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.actu-dhero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.actu-dhero-meta svg { width: 14px; height: 14px; flex-shrink: 0; }

.actu-dhero-credit {
  margin: 14px 0 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
}

/* Corps de l'article */
.actu-detail-body {
  width: var(--actu-wrap);
  margin: 0 auto 32px;
  background: var(--actu-panel);
  border-radius: var(--actu-radius);
  padding: 40px 48px;
  border: 1px solid var(--actu-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.actu-article p {
  margin: 0 0 1.4em;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #1a2333;
}

.actu-article p:last-child { margin-bottom: 0; }

.actu-article a {
  color: #d91319 !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 3px;
  transition: color .15s, text-decoration-color .15s;
}
.actu-article a:hover {
  color: #a50f13 !important;
  text-decoration-color: #a50f13 !important;
}

.actu-article h2 {
  margin: 2em 0 0.6em;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--actu-ink);
  line-height: 1.3;
}

.actu-article blockquote {
  margin: 1.6em 0;
  padding: 16px 24px;
  border-left: 4px solid var(--actu-brand);
  background: #f9fafc;
  border-radius: 0 12px 12px 0;
  font-size: 1.02rem;
  font-style: italic;
  color: #2a3550;
}

/* ---------- Hashtags ---------- */
.actu-tags {
  width: var(--actu-wrap);
  margin: 0 auto 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.actu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;        /* cible tactile WCAG 2.5.5 */
  padding: 0 16px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--actu-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--actu-border);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.actu-tag::before {
  content: '#';
  margin-right: 2px;
  color: var(--actu-brand);
  font-weight: 900;
}

.actu-tag:hover {
  background: var(--actu-brand);
  color: #fff;
  border-color: var(--actu-brand);
}

.actu-tag:hover::before { color: inherit; }

/* ---------- Protection contenu ---------- */

/* Interdit le drag & drop des images */
.actu-dhero-bg img,
.actu-article img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ---------- Barre d'actions (partage + lire plus tard) ---------- */
.actu-share {
  width: var(--actu-wrap);
  margin: 28px auto 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Bouton principal "Partager l'article" */
.actu-share-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background: var(--actu-brand);
  color: #fff;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}

.actu-share-trigger:hover { opacity: 0.88; transform: translateY(-1px); }

.actu-share-trigger svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.actu-share-trigger.is-open svg {
  transform: rotate(45deg);
}

/* Éventail de réseaux (icônes seules) */
.actu-share-fan {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}

.actu-share-fan.is-open {
  max-width: 380px;
  opacity: 1;
}

/* Icône réseau */
.actu-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0;           /* cache le texte s'il y en a */
  cursor: pointer;
  text-decoration: none;
  border: none;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.2s;
}

.actu-share-btn:hover   { opacity: 0.85; transform: scale(1.12); }
.actu-share-btn svg     { width: 17px; height: 17px; flex-shrink: 0; }

.actu-share-fb        { background: #1877f2; color: #fff; }
.actu-share-wa        { background: #25d366; color: #fff; }
.actu-share-x         { background: #000;    color: #fff; }
.actu-share-linkedin  { background: #0077b5; color: #fff; }
.actu-share-messenger { background: #006aff; color: #fff; }

/* Messenger = deep link mobile uniquement, caché sur desktop */
@media (hover: hover) and (pointer: fine) {
  .actu-share-messenger { display: none; }
}
.actu-share-email     { background: #64748b; color: #fff; }

/* Copier le lien & imprimer — icône seule, style neutre */
.actu-share-print,
.actu-share-copy {
  background: #e2e8f0;
  color: var(--actu-ink);
}

/* ---------- Lire plus tard ---------- */
.actu-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background: #f1f5f9;
  color: var(--actu-muted);
  border: 1.5px solid var(--actu-border);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  margin-left: auto;   /* pousse le bouton à droite */
  white-space: nowrap;
}

.actu-save-btn:hover {
  background: #e8f0fe;
  color: #1a56db;
  border-color: #93c5fd;
  transform: translateY(-1px);
}

.actu-save-btn.is-saved {
  background: #d91319;
  color: #fff;
  border-color: #d91319;
}

.actu-save-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* N'affiche que l'icône correspondant à l'état */
.actu-save-btn .actu-save-icon-on  { display: none; }
.actu-save-btn .actu-save-icon-off { display: block; }
.actu-save-btn.is-saved .actu-save-icon-off { display: none; }
.actu-save-btn.is-saved .actu-save-icon-on  { display: block; }

/* ---------- Événement lié à l'article ---------- */
.actu-event {
  width: var(--actu-wrap);
  margin: 0 auto 40px;
}

.actu-event-card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #fff 60%, #fff6f6);
  border: 1.5px solid rgba(217,19,25,.18);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 24px rgba(217,19,25,.10);
  transition: all .18s;
}

.actu-event-card:hover {
  box-shadow: 0 10px 32px rgba(217,19,25,.18);
  transform: translateY(-3px);
  border-color: rgba(217,19,25,.35);
}

.actu-event-card + .actu-event-card { margin-top: 12px; }

.actu-event-media {
  position: relative;
  flex: 0 0 260px;
  min-height: 150px;
  background: #e8edf4;
  overflow: hidden;
}

.actu-event-media img,
.actu-event-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.actu-event-placeholder { background: linear-gradient(135deg, #e0e8f0, #c8d5e4); }

.actu-event-card:hover .actu-event-media img { transform: scale(1.04); }

.actu-event-datebox {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 54px;
  background: var(--actu-brand);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 3px 12px rgba(217,19,25,.35);
}

.actu-event-day { font-size: 20px; font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.actu-event-datebox--range .actu-event-day { font-size: 14px; letter-spacing: -.01em; }
.actu-event-month { font-size: 9.5px; font-weight: 800; letter-spacing: .08em; margin-top: 2px; }

.actu-event-body {
  flex: 1;
  min-width: 0;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.actu-event-title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  color: var(--actu-ink);
  letter-spacing: -.02em;
  line-height: 1.25;
}

.actu-event-meta {
  margin: 0;
  font-size: 13px;
  color: var(--actu-muted);
  font-weight: 600;
}

.actu-event-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--actu-brand);
  transition: gap .18s;
}

.actu-event-card:hover .actu-event-cta { gap: 10px; }

@media (max-width: 640px) {
  .actu-event-media { flex: 0 0 140px; min-height: 120px; }
  .actu-event-body  { padding: 14px 16px; }
  .actu-event-title { font-size: 15px; }
}

/* ---------- Lire aussi (style agenda "Jetez aussi un œil…") ---------- */
.actu-related {
  width: var(--actu-wrap);
  margin: 0 auto 56px;
}

.actu-related-title {
  margin: 0 0 20px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 900;
  letter-spacing: -.025em;
  text-transform: none;
  color: var(--actu-ink);
  line-height: 1.1;
}

/* En-tête "Jetez aussi un œil…" + bouton "Voir toutes les actualités"
   sur la même ligne (style agenda) */
.actu-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}
.actu-related-header .actu-related-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.actu-related-header .actu-back-btn--inline { flex-shrink: 0; margin: 0; }

.actu-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.actu-rel-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--actu-panel);
  box-shadow: 0 3px 16px rgba(15,23,42,.08);
  transition: all .18s;
}

.actu-rel-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,.14);
  transform: translateY(-3px);
}

.actu-rel-media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #e8edf4;
  flex: 0 0 auto;
}

.actu-rel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.actu-rel-card:hover .actu-rel-media img { transform: scale(1.04); }

.actu-rel-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e8f0, #c8d5e4);
}

.actu-rel-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--actu-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.actu-rel-body {
  padding: 12px 13px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.actu-rel-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--actu-ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; /* repli pour les navigateurs sans `clip` */
  overflow: clip;
  letter-spacing: -.01em;
}

.actu-rel-meta {
  margin: 0;
  font-size: 13px;
  color: var(--actu-muted);
}

@media (max-width: 640px) { .actu-related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .actu-related-grid { grid-template-columns: 1fr; } }

/* ---------- Bouton retour (bas de page, style agenda) ---------- */
.actu-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 80px calc((100% - min(1060px, 100% - 32px)) / 2);
  padding: 11px 20px;
  border-radius: 999px;
  border: 2px solid rgba(15,23,42,.14);
  background: transparent;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--actu-ink);
  text-decoration: none;
  transition: all .15s;
}

.actu-back-btn:hover {
  background: var(--actu-ink);
  border-color: var(--actu-ink);
  color: #fff;
  transform: translateX(3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  /* Marges réduites : un peu plus de place pour lire le texte */
  .actu-detail-body      { padding: 24px 14px; }
  .actu-dhero             { padding: 52px 0 44px; }
  /* Partager + Lire plus tard groupés et centrés (plutôt qu'aux deux
     extrémités via le margin-left:auto du bouton Lire plus tard) */
  .actu-share            { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .actu-share-fan.is-open { max-width: 300px; }
  .actu-save-btn         { padding: 8px 14px; font-size: 0.80rem; margin-left: 0; }
  /* "Voir toutes les actualités" : centré, sous le titre plutôt qu'à côté */
  .actu-related-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .actu-related-header .actu-related-title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .actu-back-btn:not(.actu-back-btn--inline) {
    display: flex;
    width: fit-content;
    margin: 0 auto 80px;
  }
  /* Méta : resserrer pour tenir sur une ligne */
  .actu-dhero-meta        { gap: 12px; font-size: 0.80rem; }
}

@media (max-width: 420px) {
  /* Très petits écrans : gap et taille minimaux */
  .actu-dhero-meta        { gap: 8px; font-size: 0.74rem; }
  .actu-dhero-meta svg    { width: 12px; height: 12px; }
}

/* ============================================================
   IMPRESSION
   ============================================================ */
@media print {

  /* ── 1. Marges de page ── */
  @page {
    size: A4 portrait;
    margin: 14mm 18mm 14mm;
  }

  /* ── 2. Cacher le chrome du site ──
     Les éléments fixed (player, header sticky) doivent d'abord
     être ramenés en position:static, puis cachés.           */
  .h91,
  .h91--sticky {
    position: static !important;
    display:  none   !important;
    visibility: hidden !important;
  }

  .radio-player {
    position: static !important;
    height:   0      !important;
    overflow: hidden !important;
    display:  none   !important;
    visibility: hidden !important;
  }

  .site-footer,
  .gazette-wrap,
  .gazette-banner,
  .app-promo,
  #app-promo       { display: none !important; visibility: hidden !important; }

  /* ── 3. Cacher les éléments de navigation/interaction ── */
  .actu-breadcrumb,
  .actu-back-btn,
  .actu-share,
  .actu-tags,
  .actu-event,
  .actu-related    { display: none !important; }

  /* ── 4. Reset général ── */
  *   { box-shadow: none !important; text-shadow: none !important; }
  body,
  main,
  #ajax-root,
  .actu-detail     { background: #fff !important; margin: 0 !important; padding: 0 !important; }

  /* ── 5. En-tête article (hero remis à plat) ── */
  .actu-dhero {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 0 10pt !important;
  }

  .actu-dhero-inner { width: 100% !important; }

  .actu-dhero-badge {
    background: #d91319 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    font-size: 7pt !important;
    padding: 2pt 8pt !important;
  }

  .actu-dhero-title {
    font-size: 20pt !important;
    line-height: 1.2  !important;
    margin: 6pt 0 0 !important;
    color: #000 !important;
    page-break-after: avoid;
  }

  .actu-dhero-meta {
    font-size: 8.5pt !important;
    color: #555 !important;
    gap: 12pt !important;
    margin: 8pt 0 10pt !important;
  }

  /* ── 6. Image de fond : cachée pour tenir sur une page ── */
  .actu-dhero-bg,
  .actu-dhero-overlay,
  .actu-dhero-credit { display: none !important; }

  /* ── 7. Corps de l'article — compact, sans carte ── */
  .actu-detail-body {
    width:      100%        !important;
    padding:    0           !important;
    margin:     0 0 16pt    !important;
    border:     none        !important;
    border-radius: 0        !important;
    background: transparent !important;
  }

  .actu-article p {
    font-size:   10.5pt !important;
    line-height: 1.6    !important;
    color:       #111   !important;
    margin:      0 0 7pt !important;
  }

  .actu-article h2 {
    font-size:  13pt   !important;
    color:      #000   !important;
    margin:     14pt 0 5pt !important;
    page-break-after:  avoid;
    page-break-before: avoid;
  }

  .actu-article blockquote {
    border-left: 2.5pt solid #d91319 !important;
    background:  #f5f5f5             !important;
    padding:     8pt 14pt            !important;
    margin:      10pt 0              !important;
    font-size:   10pt                !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    page-break-inside: avoid;
  }

  /* ── 8. Pied de page imprimé ── */
  .actu-detail-body::after {
    content:      "Article publié sur 91 FM — webradio91fm.fr";
    display:      block;
    margin-top:   18pt;
    padding-top:  8pt;
    border-top:   0.5pt solid #ccc;
    font-size:    8pt;
    color:        #999;
  }

}
