/* static/css/pages/home.css — Héros Dark Academia (carrousel), sobre & élégant.
   Ne touche ni au header ni au footer. S’appuie sur les variables globales. */

/* ====== section ====== */
.hero-da{
    position: relative;
    padding: 0;            /* plein écran */
    margin: 0 0 clamp(12px, 3vw, 22px);
    color: var(--fg);
    overflow: hidden;
  }
  
  /* viewport scrollable horizontal */
  .hero-da__viewport{
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-da__viewport::-webkit-scrollbar{ display:none; }
  
  /* slide plein-viewport (moins les paddings de .page déjà gérés) */
  .hero-da__slide{
    position: relative;
    flex: 0 0 100%;
    min-height: clamp(62vh, 72vh, 86vh);
    scroll-snap-align: start;
    display: grid;
    align-items: center;
  }
  
  /* fond d’image (optionnel) */
  .hero-da__bg{
    position: absolute; inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: saturate(.9) contrast(.95);
    opacity: .85;
    z-index: 0;
  }
  .hero-da__veil{
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(1200px 520px at 18% -10%,
        color-mix(in oklab, var(--acc) 14%, transparent) 0%, transparent 60%),
      linear-gradient(180deg,
        rgba(0,0,0,.40),
        rgba(0,0,0,.32) 28%,
        rgba(0,0,0,.28) 60%,
        rgba(0,0,0,.40));
  }
  :root[data-theme="light"] .hero-da__veil{
    background:
      radial-gradient(1200px 520px at 18% -10%,
        color-mix(in oklab, var(--acc) 18%, transparent) 0%, transparent 60%),
      linear-gradient(180deg,
        rgba(255,255,255,.35),
        rgba(255,255,255,.25) 28%,
        rgba(255,255,255,.18) 60%,
        rgba(255,255,255,.30));
  }
  
  /* contenu */
  .hero-da__content{
    position: relative;
    z-index: 2;
    padding: clamp(16px, 4vw, 36px) var(--page-x);
    max-width: min(960px, 92vw);
  }
  .hero-da__kicker{
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .78rem;
    opacity: .9;
    color: color-mix(in oklab, var(--fg) 82%, var(--muted));
    margin: 0 0 .4rem;
  }
  .hero-da__title{
    font-family: var(--font-serif);
    font-weight: 800;
    line-height: 1.12;
    margin: .2rem 0 .6rem;
    font-size: clamp(1.6rem, 1.8vw + 1.2rem, 2.6rem);
    text-wrap: balance;
  }
  .hero-da__title .latin{
    display:block;
    opacity:.95;
    letter-spacing:.02em;
  }
  .hero-da__title .fr{
    display:block;
    font-weight:700;
    opacity:.9;
  }
  .hero-da__lead{
    margin: 0 0 .8rem;
    color: color-mix(in oklab, var(--fg) 85%, var(--muted));
    font-size: clamp(1rem, .6vw + 1rem, 1.15rem);
    max-width: 60ch;
    text-wrap: pretty;
  }
  
  .hero-da__ctas{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.4rem; }
  .hero-da .btn.primary{
    display:inline-flex; align-items:center; gap:.5rem;
  }
  .hero-da .btn .ico{ width:20px; height:20px; }
  
  /* ====== Contrôles ====== */
  .hero-da__nav{
    position: absolute; inset: 0; pointer-events:none;
  }
  .hero-da__btn{
    position: absolute; top: 50%; transform: translateY(-50%);
    pointer-events: auto;
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    color: var(--fg);
    background: color-mix(in oklab, var(--bg) 40%, rgba(0,0,0,.25));
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    transition: transform .12s ease, background .2s ease, border-color .2s ease;
  }
  .hero-da__btn:hover{ transform: translateY(-50%) translateX(1px); border-color: var(--acc); }
  .hero-da__btn svg{ width:22px; height:22px; }
  .hero-da__btn.prev{ left: clamp(8px, 1.6vw, 14px); }
  .hero-da__btn.next{ right: clamp(8px, 1.6vw, 14px); }
  
  /* points de pagination */
  .hero-da__dots{
    position: absolute; left: 50%; bottom: clamp(12px, 2.6vw, 22px);
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 3;
  }
  .hero-da__dots .dot{
    width: 8px; height: 8px; border-radius: 999px; border: 1px solid var(--line);
    background: color-mix(in oklab, var(--bg) 20%, black);
    opacity: .7; cursor: pointer;
    transition: transform .12s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  }
  .hero-da__dots .dot.is-active{
    transform: scale(1.35);
    opacity: 1;
    border-color: var(--acc);
    background: color-mix(in oklab, var(--acc) 55%, var(--bg));
  }
  
  /* accessibilité visuelle */
  .sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
  
  /* ====== Responsive ====== */
  @media (max-width: 640px){
    .hero-da__content{ padding: clamp(14px, 4vw, 20px) var(--page-x); }
    .hero-da__title{ font-size: clamp(1.35rem, 5.8vw, 1.9rem); }
  }
  
/* ====================== Enhancements (additifs) ====================== */

/* Sous-accroche plus douce */
.hero-da__sublead{
  margin: .25rem 0 1rem;
  color: color-mix(in oklab, var(--fg) 72%, var(--muted));
  font-size: clamp(.98rem, .5vw + .95rem, 1.06rem);
  max-width: 62ch;
  text-wrap: pretty;
}

/* Légère profondeur sur le contenu pour mieux lire sur image */
.hero-da__content{
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

/* Boutons un brin plus présents, sans heurter la charte */
.hero-da .btn.primary{
  backdrop-filter: saturate(1.05) blur(1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  border-radius: 12px;
  padding-inline: .9rem;
  height: 42px;
  font-weight: 600;
}

/* Hover discret */
.hero-da .btn.primary:hover{
  transform: translateY(-1px);
}

/* Veil un poil plus nuancé sur grand écran pour la lisibilité des titres */
@media (min-width: 1024px){
  .hero-da__veil{
    background:
      radial-gradient(1200px 520px at 18% -10%,
        color-mix(in oklab, var(--acc) 12%, transparent) 0%, transparent 60%),
      linear-gradient(180deg,
        rgba(0,0,0,.45),
        rgba(0,0,0,.32) 28%,
        rgba(0,0,0,.28) 60%,
        rgba(0,0,0,.42));
  }
}

/* Petites améliorations de pagination (dots) */
.hero-da__dots .dot{
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.hero-da__dots .dot.is-active{
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}

/* === Héros : backgrounds par slide === */
.hero-da__bg.bg-devise{
  background-image: url("/static/core/img/hero/bg-principal.jpg");
}
.hero-da__bg.bg-boutique{
  background-image: url("/static/core/img/hero/bg-boutique.jpg");
}
.hero-da__bg.bg-journal{
  background-image: url("/static/core/img/hero/bg-journal.jpg");
}

static/core/css/pages/home.css — Ajouts filtre + fondu — à ajouter
/* === Intégration esthétique des images ===
   — Filtre léger (grain discret via overlay), cohérence Dark Academia
   — Fondu entre slides : l'image du slide actif passe à opacité 1
*/

/* Fond d’image : base + transition d’opacité */
.hero-da__bg{
  background-size: cover;
  background-position: center;
  filter: grayscale(.07) contrast(.96) saturate(.92);
  opacity: .66;                     /* rendu "fondu" par défaut */
  transition: opacity .55s ease;    /* fondu doux */
}

/* Slide actif : image pleinement visible */
.hero-da__slide.is-active .hero-da__bg{
  opacity: .95;
}

/* Film subtil au-dessus des images (uniformise sans salir le texte) */
.hero-da__veil::after{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(1100px 480px at 20% -10%, rgba(0,0,0,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.22) 30%, rgba(0,0,0,.26) 62%, rgba(0,0,0,.34));
  mix-blend-mode: normal;
  opacity:.85;
}

/* Option clair : un peu plus lumineux mais encore feutré */
:root[data-theme="light"] .hero-da__veil::after{
  background:
    radial-gradient(1100px 480px at 20% -10%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.18) 30%, rgba(255,255,255,.16) 62%, rgba(255,255,255,.24));
  opacity:.9;
}

/* (Optionnel) léger grain pour texture papier — très discret */
.hero-da::before{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  background-image: url("/static/core/img/hero/grain-8.png"); /* petit png transparent 2–4% */
  background-size: 300px 300px;
  opacity:.025;
  z-index:0;
}

/* === Héros : backgrounds par slide (chemins statiques) === */
.hero-da__bg.bg-devise   { background-image: url("/static/core/img/hero/bg-principal.jpg"); }
.hero-da__bg.bg-boutique { background-image: url("/static/core/img/hero/bg-boutique.jpg"); }
.hero-da__bg.bg-journal  { background-image: url("/static/core/img/hero/bg-journal.jpg"); }

/* ===================== Effets visuels complémentaires ===================== */

/* 1) Contour ombré subtil + cadre noble */
.hero-da__viewport{
  /* un léger padding pour laisser respirer le cadre arrondi */
  padding: clamp(8px, 1.6vw, 14px);
}

.hero-da__slide{
  border-radius: 20px;
  overflow: hidden; /* coupe proprement l’image et le voile dans le cadre */
}

/* Légère vignette et liseré interne très discret */
.hero-da__slide::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  /* Inset sombre très doux + filet clair subtil, dans l’esprit Dark Academia */
  box-shadow:
    inset 0 0 120px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.06);
  z-index: 1; /* au-dessus de l’image, sous le contenu */
}

/* 2) Flou latéral pour suggérer le carrousel (gauche/droite) */
.hero-da::before,
.hero-da::after{
  content:"";
  position:absolute; top:0; bottom:0;
  width: clamp(28px, 6vw, 96px);
  pointer-events:none;
  z-index: 3; /* au-dessus de la scène, sous les contrôles */
}

/* Voile gauche et droit qui s’effacent vers l’intérieur (effet "on peut tourner") */
.hero-da::before{
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  filter: blur(4px);
  opacity: .65;
}
.hero-da::after{
  right: 0;
  background: linear-gradient(270deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  filter: blur(4px);
  opacity: .65;
}

/* 3) Lisibilité du texte : halo diffus + panneau flouté très soft */
.hero-da__content{
  /* halo typographique discret (déjà présent, on renforce très légèrement) */
  text-shadow:
    0 1px 0 rgba(0,0,0,.18),
    0 10px 26px rgba(0,0,0,.18);
}

/* Panneau de lisibilité : gradient + blur fondus, sous le bloc texte */
.hero-da__content::after{
  content:"";
  position:absolute; inset: 0;
  pointer-events:none;
  z-index:-1;                     /* en dessous du texte, au-dessus du voile */
  /* largeur maximale du panneau pour ne pas envahir l’image */
  width: min(760px, 92%);
  /* gradient qui se dissipe vers la droite, + blur pour casser la granulosité */
  background: linear-gradient(90deg,
      rgba(0,0,0,.36) 0%,
      rgba(0,0,0,.22) 55%,
      rgba(0,0,0,0) 100%);
  filter: blur(6px);
  border-radius: 22px;
  transform: translateX(-12px);   /* léger débord pour englober le texte */
}

/* Thème clair : adoucir le panneau (tons inversés) */
:root[data-theme="light"] .hero-da__content::after{
  background: linear-gradient(90deg,
      rgba(255,255,255,.34) 0%,
      rgba(255,255,255,.18) 55%,
      rgba(255,255,255,0) 100%);
}

/* 4) Image : cohérence esthétique et fondu existant (opacité) */
.hero-da__bg{
  /* on garde le fondu d’opacité défini précédemment */
  filter:
    grayscale(.06)
    contrast(.96)
    saturate(.92);
  transition: opacity .55s ease, transform .45s ease;
}

/* Slide actif : image pleine + micro-zoom respirant (très léger) */
.hero-da__slide.is-active .hero-da__bg{
  opacity: .96;
  transform: scale(1.01);
}

/* 5) Contrôles : un brin plus visibles sur images sombres sans heurter la charte */
.hero-da__btn{
  backdrop-filter: blur(2px);
  background: color-mix(in oklab, var(--bg) 40%, rgba(0,0,0,.32));
  border-color: color-mix(in oklab, var(--line) 70%, rgba(255,255,255,.08));
}

/* 6) Dots : meilleur contraste au-dessus des flous latéraux */
.hero-da__dots{
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* ========================== MOBILE PERFECT ========================== */
/* Cible : smartphones (≤ 640px) */
@media (max-width: 640px){

  /* 1) Hauteur, respirations, safe areas */
  .hero-da__slide{
    min-height: max(72vh, 520px);
    border-radius: 16px;
  }
  .hero-da__viewport{
    padding: max(8px, env(safe-area-inset-top)) 
             max(10px, env(safe-area-inset-right)) 
             max(10px, env(safe-area-inset-bottom))
             max(10px, env(safe-area-inset-left));
    gap: 0;
  }

  /* 2) Typo & mesure (lisibilité à une main) */
  .hero-da__content{
    padding: 18px var(--page-x);
    max-width: 92vw;
  }
  .hero-da__kicker{
    font-size: .74rem;
    letter-spacing: .18em;
    opacity: .95;
  }
  .hero-da__title{
    font-weight: 800;
    line-height: 1.12;
    margin-top: .25rem;
    font-size: clamp(1.32rem, 5.6vw, 1.75rem);
  }
  .hero-da__title .latin{ opacity:.98; }
  .hero-da__title .fr{ opacity:.95; }
  .hero-da__lead{
    font-size: clamp(.98rem, 3.8vw, 1.08rem);
    margin-top: .35rem;
    max-width: 36ch;
  }
  .hero-da__sublead{
    font-size: clamp(.95rem, 3.6vw, 1.02rem);
    margin-top: .2rem;
    max-width: 36ch;
  }

  /* 3) Lisibilité : panneau/halo adaptés (moins larges, plus doux) */
  .hero-da__content::after{
    width: 100%;
    border-radius: 16px;
    filter: blur(5px);
    background: linear-gradient(90deg,
      rgba(0,0,0,.34) 0%,
      rgba(0,0,0,.20) 55%,
      rgba(0,0,0,0) 100%);
    transform: translateX(-8px);
  }
  :root[data-theme="light"] .hero-da__content::after{
    background: linear-gradient(90deg,
      rgba(255,255,255,.30) 0%,
      rgba(255,255,255,.16) 55%,
      rgba(255,255,255,0) 100%);
  }
  .hero-da__content{
    text-shadow:
      0 1px 0 rgba(0,0,0,.16),
      0 6px 18px rgba(0,0,0,.16);
  }

  /* 4) Images : perf & fondu */
  .hero-da__bg{
    filter: grayscale(.04) contrast(.98) saturate(.94);
    opacity: .72;
    transform: none;                /* pas de micro-zoom sur mobile (perf) */
    transition: opacity .45s ease;  /* fondu un peu plus vif */
    will-change: opacity;
    image-rendering: auto;
    background-position: 50% 40%;
  }
  .hero-da__slide.is-active .hero-da__bg{ opacity:.96; }

  /* 5) Indices de swipe : flous latéraux plus fins pour ne pas “manger” l’écran */
  .hero-da::before,
  .hero-da::after{
    width: clamp(18px, 8vw, 42px);
    filter: blur(3px);
    opacity: .55;
  }

  /* 6) Dots : plus accessibles (tactile) */
  .hero-da__dots .dot{
    width: 10px; height: 10px;
    margin: 0 1px;
  }
  .hero-da__dots{
    gap: 6px;
    bottom: clamp(10px, 4vw, 16px);
  }

  /* 7) Boutons prev/next : grandes zones tactiles sans paraître massifs */
  .hero-da__btn{
    width: 44px; height: 44px;
    border-radius: 14px;
    backdrop-filter: blur(3px);
    touch-action: manipulation;
  }
  .hero-da__btn svg{ width:22px; height:22px; }
  .hero-da__btn.prev{ left: max(6px, env(safe-area-inset-left)); }
  .hero-da__btn.next{ right: max(6px, env(safe-area-inset-right)); }

  /* 8) CTA : tap confortable */
  .hero-da .btn.primary{
    height: 44px;
    padding: 0 .95rem;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    font-size: .98rem;
  }

  /* 9) Cadre & vignette : plus doux pour éviter l’effet tunnel */
  .hero-da__slide::after{
    box-shadow:
      inset 0 0 80px rgba(0,0,0,.22),
      inset 0 0 0 1px rgba(255,255,255,.05);
  }
}

/* Très petits écrans (≤ 360px) : resserrer mais garder l’élégance */
@media (max-width: 360px){
  .hero-da__slide{ min-height: 74vh; }
  .hero-da__title{ font-size: clamp(1.22rem, 6.2vw, 1.55rem); }
  .hero-da__lead, .hero-da__sublead{ max-width: 30ch; }
  .hero-da__btn{ width: 42px; height: 42px; }
  .hero-da .btn.primary{ height: 42px; padding: 0 .85rem; }
}

/* Réduction des animations si l’utilisateur le demande */
@media (prefers-reduced-motion: reduce){
  .hero-da__bg,
  .hero-da__btn,
  .hero-da__dots .dot{
    transition: none !important;
  }
}

static/core/css/pages/home.css — Sections Dépêche / Univers / News — à ajouter
/* ========================= Blocks sous le héros ========================= */

.wrap{ /* si pas déjà globalement défini */
  max-width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Titres de section */
.blk-title{
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: .01em;
  font-size: clamp(1.2rem, 1.1vw + 1.1rem, 1.8rem);
  margin: 1.2rem 0 .3rem;
}
.blk-sub{
  color: color-mix(in oklab, var(--fg) 78%, var(--muted));
  margin: 0 0 .6rem;
  font-size: .98rem;
}

/* ---------- Dépêche ---------- */
.blk-depeche{
  padding: clamp(14px, 3.2vw, 28px) 0;
}
.depeche-card{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: color-mix(in oklab, var(--bg) 65%, black);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(14px, 2.4vw, 18px) clamp(14px, 2.4vw, 22px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.depeche-card__status{
  font-weight: 700;
}
.depeche-card__hint{
  color: color-mix(in oklab, var(--fg) 72%, var(--muted));
  margin: .15rem 0 0;
  font-size: .95rem;
}
.depeche-card .btn.primary{
  height: 42px; border-radius: 12px;
}

/* ---------- Univers (cartes) ---------- */
.blk-univers{
  padding: clamp(18px, 3.6vw, 34px) 0;
}
.univers-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(12px, 2vw, 18px);
}
@media (max-width: 720px){
  .univers-grid{ grid-template-columns: 1fr; }
}
.univers-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: clamp(220px, 30vw, 320px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  display: grid; place-items: end start;
}
.univers-card__bg{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(.08) contrast(.96) saturate(.94);
  transform: scale(1.02);
  transition: transform .6s ease;
}
.univers-card__veil{
  position: absolute; inset: 0; pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.40));
}
.univers-card__content{
  position: relative; z-index: 2;
  padding: clamp(14px, 2.4vw, 18px);
}
.univers-card__title{
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, .9vw + 1rem, 1.4rem);
  margin: 0 0 .2rem; font-weight: 800;
}
.univers-card__lead{
  margin: 0 0 .6rem;
  color: color-mix(in oklab, var(--fg) 80%, var(--muted));
}
.univers-card .btn.ghost{
  height: 40px; border-radius: 12px;
  background: color-mix(in oklab, var(--bg) 40%, rgba(0,0,0,.28));
  border: 1px solid var(--line);
}
.univers-card:hover .univers-card__bg{ transform: scale(1.06); }

/* Images des cartes (à fournir dans /static/core/img/univers/...) */
.card--ceolcyne .univers-card__bg{
  background-image: url("/static/core/img/univers/ceolcyne.jpg");
}
.card--romantisme .univers-card__bg{
  background-image: url("/static/core/img/univers/romantisme.jpg");
}

/* ---------- News ---------- */
.blk-news{
  padding: clamp(18px, 3.6vw, 34px) 0 clamp(28px, 5vw, 54px);
}
.news-item{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(14px, 2.6vw, 20px);
  background: color-mix(in oklab, var(--bg) 70%, black);
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}
.news-item__tag{
  display: inline-block;
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--acc) 16%, var(--bg));
  margin-bottom: .4rem;
}
.news-item__title{
  font-weight: 800; margin: 0 0 .1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, .9vw + 1rem, 1.35rem);
}
.news-item__meta{
  color: color-mix(in oklab, var(--fg) 75%, var(--muted));
  margin: 0 0 .6rem; font-size: .95rem;
}
.news-item__body{ margin: 0 0 .8rem; }
.news-item__ctas{ display:flex; gap:.5rem; flex-wrap:wrap; }
.news-item .btn.secondary{ height: 40px; border-radius: 12px; }
.news-item .btn.ghost{ height: 40px; border-radius: 12px; }

/* ====== Style Dark Academia identitaire ====== */

/* Titres de section : plus de caractère */
.blk-title{
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: clamp(1.4rem, 1.2vw + 1.2rem, 2rem);
  position: relative;
  margin-bottom: .6rem;
}
.blk-title::after{
  content: "✦";
  display: block;
  margin-top: .4rem;
  font-size: .9rem;
  opacity: .5;
}

/* Sous-titres : plus éditorial */
.blk-sub{
  font-style: italic;
  color: color-mix(in oklab, var(--fg) 70%, var(--muted));
  font-size: .95rem;
  margin-bottom: 1rem;
}

/* Dépêche : look “gazette” */
.depeche-card{
  border: 1px solid color-mix(in oklab, var(--line) 80%, var(--acc));
  border-radius: 0;
  padding: 1.2rem;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--bg) 80%, black),
    color-mix(in oklab, var(--bg) 70%, black));
  font-family: var(--font-serif);
  box-shadow: inset 0 0 24px rgba(0,0,0,.25);
}
.depeche-card__status{
  font-variant: small-caps;
  font-weight: 700;
  letter-spacing: .05em;
}

/* Univers : esthétique forte */
.univers-card__title{
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--fg);
  transition: color .3s ease;
}
.univers-card:hover .univers-card__title{
  color: color-mix(in oklab, var(--acc) 70%, var(--fg));
}
.univers-card__lead{
  font-style: italic;
  font-size: .95rem;
  opacity: .9;
}

/* News : style éditorial */
.news-item{
  border-left: 4px solid var(--acc);
  padding-left: 1.2rem;
  background: color-mix(in oklab, var(--bg) 78%, black);
}
.news-item__title{
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1vw + 1rem, 1.5rem);
  letter-spacing: .04em;
}
.news-item__title::after{
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: .3rem;
  background: color-mix(in oklab, var(--acc) 60%, var(--fg));
}
.news-item__tag{
  font-variant: small-caps;
  font-weight: 600;
  background: color-mix(in oklab, var(--acc) 25%, var(--bg));
  border: 1px solid color-mix(in oklab, var(--acc) 50%, var(--line));
}

/* ===================== Sections: titrage & séparateur ===================== */

/* On centre les en-têtes de section */
.blk-depeche__head,
.blk-univers__head,
.blk-news__head{
  text-align: center;
  margin: clamp(14px, 3.2vw, 26px) auto clamp(12px, 2.4vw, 20px);
  max-width: min(860px, 94%);
}

/* TITRE — centré, noble, sobre */
.blk-title{
  font-family: var(--font-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.3rem, 1.2vw + 1.1rem, 1.9rem);
  line-height: 1.15;
  margin: 0;
}

/* TRAIT esthétique (séparateur) — centré, discret */
.blk-title::after{
  content: "";
  display: block;
  width: clamp(72px, 8vw, 120px);
  height: 1px;
  margin: clamp(10px, 1.6vw, 14px) auto 0;
  background:
    linear-gradient(90deg,
      transparent 0%,
      color-mix(in oklab, var(--acc) 68%, var(--fg)) 22%,
      color-mix(in oklab, var(--acc) 68%, var(--fg)) 78%,
      transparent 100%);
  opacity: .9;
}

/* Variante thème clair : trait légèrement plus doux */
:root[data-theme="light"] .blk-title::after{
  background:
    linear-gradient(90deg,
      transparent 0%,
      color-mix(in oklab, var(--acc) 52%, var(--fg)) 22%,
      color-mix(in oklab, var(--acc) 52%, var(--fg)) 78%,
      transparent 100%);
  opacity: .8;
}

/* SOUS-TITRES — retirés visuellement (sans toucher au HTML) */
.blk-sub{
  display: none !important;
}

/* Ajustements de spacing locaux (évite un “trou” après retrait des sous-titres) */
.blk-depeche{ padding-top: clamp(10px, 2.6vw, 20px); }
.blk-univers{ padding-top: clamp(12px, 3vw, 22px); }
.blk-news   { padding-top: clamp(12px, 3vw, 22px); }

/* Mobile : garder l’équilibre visuel */
@media (max-width: 640px){
  .blk-title{
    letter-spacing: .09em;
    font-size: clamp(1.2rem, 5.8vw, 1.6rem);
  }
  .blk-title::after{
    width: clamp(68px, 22vw, 100px);
    margin-top: clamp(8px, 2.8vw, 12px);
  }
}