/* ============================================================
   POLITUBE — LE FIL MÉDIA
   Page journal : Une + Les trois bords (gauche / milieu / droite),
   articles de presse + vidéos des médias, en direct du backend.
   DA validée PoliTube (sombre), densité éditoriale.
   ============================================================ */

* { box-sizing: border-box; }
body.fil-media {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(55, 196, 214, .06), transparent 60%),
    var(--fm-bg);
  color: var(--fm-text);
  font-family: var(--fm-sans);
  -webkit-font-smoothing: antialiased;
}
.fm-wrap { max-width: 1320px; margin: 0 auto; padding: 0 26px; }
a { color: inherit; text-decoration: none; }

/* ---------- Topbar (repris de la DA) ---------- */
.fm-top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 22px;
  padding: 13px 26px;
  background: rgba(9, 13, 20, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fm-line);
}
.fm-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: .02em; font-size: 1.05rem; }
.fm-brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--fm-cyan); box-shadow: 0 0 12px rgba(55, 196, 214, .8); }
.fm-nav { display: flex; gap: 4px; margin-left: 6px; }
.fm-nav a { padding: 7px 13px; border-radius: 9px; font-size: .86rem; color: var(--fm-muted); transition: .15s; }
.fm-nav a:hover { background: rgba(255, 255, 255, .06); color: var(--fm-text); }
.fm-nav a.active { color: var(--fm-text); background: rgba(55, 196, 214, .12); box-shadow: inset 0 0 0 1px rgba(55, 196, 214, .3); }
.fm-top-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.fm-status { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--fm-muted); }
.fm-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #35d07f; box-shadow: 0 0 0 0 rgba(53, 208, 127, .6); animation: fmPulse 2s infinite; }
.fm-status.offline .fm-live-dot { background: var(--fm-gauche); animation: none; }
.fm-status.degraded .fm-live-dot { background: #d9a441; box-shadow: 0 0 0 4px rgba(217, 164, 65, .12); animation: none; }
@keyframes fmPulse { 0% { box-shadow: 0 0 0 0 rgba(53, 208, 127, .5); } 70% { box-shadow: 0 0 0 7px rgba(53, 208, 127, 0); } 100% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0); } }

/* ---------- Masthead ---------- */
.fm-masthead {
  border-bottom: 1px solid var(--fm-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), transparent);
}
.fm-masthead .fm-wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 30px; padding-bottom: 20px; flex-wrap: wrap; }
.fm-mast-title { font-family: var(--fm-serif); font-weight: 700; font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: .98; letter-spacing: -.01em; margin: 0; }
.fm-mast-title em { font-style: italic; color: var(--fm-cyan); }
.fm-mast-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; text-align: right; padding-bottom: 6px; }
.fm-mast-date { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fm-muted); }
.fm-mast-sub { font-size: .78rem; color: var(--fm-faint); max-width: 34ch; }

/* ---------- Ticker / dépêches ---------- */
.fm-ticker {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--fm-line);
  background: var(--fm-panel-2);
  overflow: hidden;
}
.fm-ticker-label {
  flex: none; display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--fm-cyan); color: #04252b; white-space: nowrap;
}
.fm-ticker-track-wrap { overflow: hidden; flex: 1; }
.fm-ticker-track { display: inline-flex; gap: 0; white-space: nowrap; padding-left: 100%; animation: fmTicker 70s linear infinite; }
.fm-ticker:hover .fm-ticker-track { animation-play-state: paused; }
.fm-ticker-track a { display: inline-flex; align-items: center; gap: 10px; padding: 11px 22px; font-size: .84rem; color: var(--fm-muted); }
.fm-ticker-track a:hover { color: var(--fm-text); }
.fm-ticker-track a::before { content: "•"; color: var(--fm-cyan); }
@keyframes fmTicker { to { transform: translateX(-50%); } }

/* ---------- Layout principal ---------- */
.fm-main { padding: 30px 0 40px; }
.fm-une-grid { display: grid; grid-template-columns: minmax(0, 2.15fr) minmax(0, 1fr); gap: 34px; align-items: start; }

/* Section label commun */
.fm-eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--fm-muted); }
.fm-eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--fm-line); }
.fm-eyebrow .tag { color: var(--fm-cyan); }

/* ---------- La Une (lead) ---------- */
.fm-lead { display: block; border-bottom: 1px solid var(--fm-line); padding-bottom: 26px; margin-bottom: 26px; }
.fm-lead-media { position: relative; aspect-ratio: 16 / 8.4; border-radius: 14px; overflow: hidden; background: var(--fm-panel); border: 1px solid var(--fm-line); margin-bottom: 18px; }
.fm-lead-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.fm-lead:hover .fm-lead-media img { transform: scale(1.03); }
.fm-lead-media.is-empty { display: grid; place-items: center; background:
  radial-gradient(120% 120% at 20% 0%, rgba(55, 196, 214, .12), transparent 55%), var(--fm-panel); }
.fm-lead-media .fm-fallmark { font-family: var(--fm-serif); font-size: 2.4rem; color: rgba(255, 255, 255, .16); font-style: italic; }
.fm-lead-media .fm-badge-live { position: absolute; top: 12px; left: 12px; }
.fm-source { display: inline-flex; align-items: center; gap: 9px; }
.fm-source .logo { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; background: var(--fm-panel); border: 1px solid var(--fm-line); flex: none; }
.fm-source .logo.ph { display: grid; place-items: center; font-size: .6rem; font-weight: 700; color: var(--fm-muted); }
.fm-source b { font-size: .82rem; font-weight: 600; }
.fm-lead-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* badge « N sources » — événement couvert par plusieurs médias */
.fm-sources-badge { display: inline-flex; align-items: center; gap: 5px; padding: 2px 9px; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fm-cyan); background: rgba(55, 196, 214, .1); box-shadow: inset 0 0 0 1px rgba(55, 196, 214, .32); white-space: nowrap; }
.fm-sources-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 6px 0 0 -1px currentColor, 12px 0 0 -2px currentColor; margin-right: 8px; }
.fm-lead h2 { font-family: var(--fm-serif); font-weight: 700; font-size: clamp(1.7rem, 3.1vw, 2.7rem); line-height: 1.05; letter-spacing: -.01em; margin: 0 0 12px; }
.fm-lead:hover h2 { color: #fff; }
.fm-lead p.chapo { color: var(--fm-muted); font-size: 1rem; line-height: 1.6; max-width: 62ch; margin: 0 0 14px; }
.fm-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .78rem; color: var(--fm-faint); }
.fm-meta-row .fm-source b { color: var(--fm-muted); }
.fm-time { display: inline-flex; align-items: center; gap: 6px; }
.fm-read { color: var(--fm-cyan); font-weight: 600; }

/* pastille bord */
.fm-pos { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 999px; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.fm-pos::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.fm-pos.gauche { color: var(--fm-gauche); background: rgba(232, 73, 95, .12); box-shadow: inset 0 0 0 1px rgba(232, 73, 95, .32); }
.fm-pos.centre { color: var(--fm-centre); background: rgba(230, 178, 60, .12); box-shadow: inset 0 0 0 1px rgba(230, 178, 60, .32); }
.fm-pos.droite { color: var(--fm-droite); background: rgba(74, 144, 226, .12); box-shadow: inset 0 0 0 1px rgba(74, 144, 226, .32); }

/* sous-lead : 2 articles secondaires */
.fm-sublead { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fm-sub { display: block; }
.fm-sub-media { aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: var(--fm-panel); border: 1px solid var(--fm-line); margin-bottom: 12px; }
.fm-sub-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fm-sub:hover .fm-sub-media img { transform: scale(1.04); }
.fm-sub .fm-source { margin-bottom: 9px; }
.fm-sub h3 { font-family: var(--fm-serif); font-weight: 600; font-size: 1.16rem; line-height: 1.2; margin: 0 0 8px; }
.fm-sub:hover h3 { color: #fff; }
.fm-sub p { color: var(--fm-muted); font-size: .86rem; line-height: 1.5; margin: 0 0 9px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Rail vidéos ---------- */
.fm-rail { position: sticky; top: 78px; }
.fm-vid { display: grid; grid-template-columns: 108px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--fm-line-soft); align-items: start; }
.fm-vid:first-of-type { padding-top: 0; }
.fm-vid-thumb { position: relative; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; background: var(--fm-panel); border: 1px solid var(--fm-line); }
.fm-vid-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fm-vid-thumb .play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(6, 9, 14, .18); }
.fm-vid-thumb .play svg { width: 26px; height: 26px; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5)); }
.fm-vid h4 { font-size: .84rem; font-weight: 600; line-height: 1.25; margin: 0 0 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fm-vid:hover h4 { color: var(--fm-cyan); }
.fm-vid .fm-source b { color: var(--fm-muted); font-size: .74rem; }
.fm-rail-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 15px; border-radius: 10px; background: rgba(55, 196, 214, .12); box-shadow: inset 0 0 0 1px rgba(55, 196, 214, .3); color: var(--fm-cyan); font-size: .84rem; font-weight: 600; }

/* ---------- Le triptyque éditorial ---------- */
.fm-bords { margin: 0; }
.fm-bords-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42ch);
  align-items: end;
  gap: 34px;
  margin-bottom: 24px;
}
.fm-section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--fm-cyan);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.fm-bords-head h2,
.fm-video-head h2 {
  font-family: var(--fm-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  margin: 0;
}
.fm-bords-head h2 em { color: var(--fm-cyan); font-style: italic; }
.fm-bords-head p { color: var(--fm-muted); font-size: .84rem; line-height: 1.55; margin: 0; }
.fm-cols-frame { min-width: 0; border-radius: 18px; }
.fm-cols-frame:focus-visible { outline-offset: 5px; }
.fm-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.fm-col {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fm-line);
  border-radius: 16px;
  background: var(--fm-panel-2);
}
.fm-col::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1; }
.fm-col.gauche::before { background: var(--fm-gauche); }
.fm-col.centre::before { background: var(--fm-centre); }
.fm-col.droite::before { background: var(--fm-droite); }
.fm-col.gauche { background: linear-gradient(180deg, rgba(232, 73, 95, .05), transparent 30%), var(--fm-panel-2); }
.fm-col.centre { background: linear-gradient(180deg, rgba(230, 178, 60, .05), transparent 30%), var(--fm-panel-2); }
.fm-col.droite { background: linear-gradient(180deg, rgba(74, 144, 226, .06), transparent 30%), var(--fm-panel-2); }
.fm-col-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 74px; padding: 19px 18px 14px; }
.fm-col-head .name { display: grid; gap: 2px; font-family: var(--fm-serif); font-weight: 700; font-size: 1.36rem; line-height: 1; color: #fff; }
.fm-col-head .name small { color: var(--fm-faint); font: 700 .58rem/1.2 var(--fm-sans); letter-spacing: .17em; text-transform: uppercase; }
.fm-col-head .n { font-size: .72rem; font-weight: 600; color: var(--fm-faint); }
.fm-col-head .swatch { display: none; }
.fm-col.gauche .swatch { background: var(--fm-gauche); }
.fm-col.centre .swatch { background: var(--fm-centre); }
.fm-col.droite .swatch { background: var(--fm-droite); }

/* Chaque colonne reçoit exactement le même gabarit de tête. */
.fm-lead-card { display: grid; grid-template-rows: auto auto 3.55em 3em auto; align-content: start; padding: 0 18px 18px; border-bottom: 1px solid var(--fm-line-soft); }
.fm-lead-card-media { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9; border-radius: 11px; overflow: hidden; margin-bottom: 13px; background: var(--fm-panel); }
.fm-lead-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fm-lead-card:hover .fm-lead-card-media img { transform: scale(1.04); }
.fm-lead-card-media .fm-fallmark { color: rgba(255, 255, 255, .2); font: italic 700 1.45rem/1 var(--fm-serif); }
.fm-lead-card .fm-source { margin-bottom: 8px; }
.fm-lead-card h4 { display: -webkit-box; overflow: hidden; margin: 0 0 8px; font-family: var(--fm-serif); font-weight: 700; font-size: 1.15rem; line-height: 1.18; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.fm-lead-card:hover h4 { color: #fff; }
.fm-lead-card p { display: -webkit-box; overflow: hidden; margin: 0 0 9px; color: var(--fm-muted); font-size: .82rem; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.fm-lead-card p:empty::after { content: "Résumé non disponible sur la source."; color: var(--fm-faint); }
.fm-vplay { position: absolute; inset: 0; display: grid; place-items: center; }
.fm-vplay svg { width: 44px; height: 44px; padding: 12px; border-radius: 50%; background: rgba(10, 14, 22, .55); box-shadow: 0 4px 16px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(255, 255, 255, .18); box-sizing: content-box; }

/* Brèves calibrées sur les trois colonnes pour conserver le même rythme. */
.fm-col-list { display: grid; grid-auto-rows: minmax(118px, auto); align-content: start; padding: 5px 18px 14px; }
.fm-item { display: grid; grid-template-rows: auto 2.55em auto; align-content: center; padding: 13px 0; border-bottom: 1px solid var(--fm-line-soft); }
.fm-item:last-child { border-bottom: none; }
.fm-item .fm-source { margin-bottom: 6px; }
.fm-item .fm-source .logo { width: 17px; height: 17px; border-radius: 5px; }
.fm-item .fm-source b { font-size: .72rem; color: var(--fm-muted); }
.fm-item h4 { display: -webkit-box; overflow: hidden; margin: 0 0 6px; font-family: var(--fm-serif); font-weight: 600; font-size: .95rem; line-height: 1.28; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.fm-item:hover h4 { color: #fff; }
.fm-item .fm-meta-row { font-size: .7rem; }
.fm-item .kind { display: inline-flex; align-items: center; gap: 4px; color: var(--fm-faint); }
.fm-item .kind.video { color: var(--fm-cyan); }
.fm-col-empty { color: var(--fm-faint); font-size: .84rem; padding: 4px 18px 18px; }
.fm-col-skeleton { min-height: 760px; background: linear-gradient(100deg, var(--fm-panel-2) 20%, var(--fm-panel) 45%, var(--fm-panel-2) 70%); background-size: 240% 100%; animation: fmShimmer 1.5s infinite; }

/* ---------- Bureau vidéo neutre, placé après les trois regards ---------- */
.fm-video-desk { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--fm-line); }
.fm-video-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.fm-video-head .fm-rail-cta { flex: none; margin: 0; }
.fm-video-desk .fm-vids { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.fm-video-desk .fm-vid { grid-template-columns: 132px minmax(0, 1fr); min-width: 0; padding: 12px; border: 1px solid var(--fm-line-soft); border-radius: 12px; background: rgba(255, 255, 255, .018); }
.fm-video-desk .fm-vid:first-of-type { padding-top: 12px; }
.fm-video-desk .fm-vid h4 { -webkit-line-clamp: 2; }

/* ---------- État hors-ligne / chargement ---------- */
.fm-skeleton { border-radius: 12px; background: linear-gradient(90deg, var(--fm-panel) 25%, var(--fm-panel-2) 50%, var(--fm-panel) 75%); background-size: 200% 100%; animation: fmShimmer 1.4s infinite; }
@keyframes fmShimmer { to { background-position: -200% 0; } }
.fm-notice { margin: 24px 0; padding: 20px 22px; border-radius: 14px; background: var(--fm-panel); border: 1px solid var(--fm-line); border-left: 3px solid var(--status-warn); }
.fm-notice h3 { margin: 0 0 8px; font-size: 1.02rem; }
.fm-notice p { margin: 0 0 6px; color: var(--fm-muted); font-size: .88rem; line-height: 1.55; }
.fm-notice code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; background: rgba(255, 255, 255, .06); padding: 2px 7px; border-radius: 6px; color: var(--fm-cyan); }

/* ---------- Footer ---------- */
.fm-foot { border-top: 1px solid var(--fm-line); margin-top: 46px; padding: 26px 0 46px; color: var(--fm-faint); font-size: .8rem; }
.fm-foot .fm-wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.fm-foot a { color: var(--fm-muted); }
.fm-foot a:hover { color: var(--fm-cyan); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .fm-cols-frame { overflow-x: auto; padding-bottom: 10px; scrollbar-color: var(--fm-cyan) var(--fm-panel-2); scroll-snap-type: x proximity; }
  .fm-cols { grid-template-columns: repeat(3, minmax(310px, 1fr)); min-width: 978px; }
  .fm-col { scroll-snap-align: start; }
  .fm-video-desk .fm-vids { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .fm-nav { display: none; }
  .fm-wrap { padding: 0 18px; }
  .fm-bords-head { grid-template-columns: 1fr; gap: 14px; }
  .fm-cols { grid-template-columns: repeat(3, minmax(286px, 1fr)); min-width: 890px; gap: 12px; }
  .fm-video-head { align-items: flex-start; }
  .fm-video-desk .fm-vids { grid-template-columns: 1fr; }
  .fm-video-desk .fm-vid { grid-template-columns: 112px minmax(0, 1fr); }
  .fm-mast-meta { align-items: flex-start; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .fm-ticker-track { animation: none; padding-left: 0; }
  .fm-live-dot { animation: none; }
}

/* ============================================================
   V7 — SALLE DE RÉDACTION TRICOLORE
   Pleine largeur, trois bords toujours au même rang.
   ============================================================ */
.fm-wrap { max-width: none; padding-inline: clamp(22px, 3.2vw, 64px); }
.fm-main { padding: 0 0 54px; }
.fm-masthead { background: #0d121c; }
.fm-masthead .fm-mast-wrap {
  min-height: 190px;
  padding-top: 42px;
  padding-bottom: 32px;
}
.fm-mast-title { font-size: clamp(3.2rem, 7vw, 7.5rem); letter-spacing: -.055em; }
.fm-mast-title em { color: #f4f1e8; }
.fm-mast-meta { max-width: 38rem; }

.fm-bords-head {
  margin: 0;
  padding-top: clamp(38px, 5vw, 74px);
  padding-bottom: 28px;
}
.fm-bords-head h2,
.fm-cross-head h2 { font-size: clamp(2.2rem, 4vw, 4.7rem); letter-spacing: -.035em; }
.fm-bords-head h2 em { color: #f4f1e8; }
.fm-bords-head p { max-width: 48ch; font-size: .92rem; }

.fm-commandbar {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-bottom: 22px;
}
.fm-equality {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--fm-line);
  border-radius: 999px;
}
.fm-equality span {
  padding: 9px 16px;
  color: var(--fm-muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
.fm-equality .gauche { color: var(--fm-gauche); border-right: 1px solid var(--fm-line); }
.fm-equality .centre { color: var(--fm-centre); border-right: 1px solid var(--fm-line); }
.fm-equality .droite { color: var(--fm-droite); }
.fm-kind-filter { display: flex; align-items: center; gap: 6px; }
.fm-kind-filter button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  background: #0f1521;
  color: var(--fm-muted);
  font: 600 .72rem var(--fm-sans);
  cursor: pointer;
}
.fm-kind-filter button:hover { color: #fff; border-color: rgba(255,255,255,.24); }
.fm-kind-filter button.active {
  border-color: #f4f1e8;
  background: #f4f1e8;
  color: #0a0e16;
}
.fm-kind-filter button:focus-visible { outline: 3px solid var(--fm-cyan); outline-offset: 3px; }

.fm-cols-frame { border-top: 1px solid var(--fm-line); border-bottom: 1px solid var(--fm-line); border-radius: 0; }
.fm-cols { gap: 0; }
.fm-col {
  min-height: 830px;
  border: 0;
  border-radius: 0;
}
.fm-col + .fm-col { border-left: 1px solid rgba(255,255,255,.12); }
.fm-col::before { height: 5px; }
.fm-col.gauche { background: color-mix(in srgb, var(--fm-gauche) 4%, #0f1521); }
.fm-col.centre { background: color-mix(in srgb, var(--fm-centre) 4%, #0f1521); }
.fm-col.droite { background: color-mix(in srgb, var(--fm-droite) 4%, #0f1521); }
.fm-col-head { min-height: 104px; padding: 30px clamp(20px, 2.4vw, 44px) 22px; }
.fm-col-head .name { font-size: clamp(1.75rem, 2.4vw, 2.65rem); }
.fm-col-head .name small { margin-bottom: 7px; }
.fm-lead-card { padding: 0 clamp(20px, 2.4vw, 44px) 28px; grid-template-rows: auto auto 4.7em 3.2em auto; }
.fm-lead-card-media { aspect-ratio: 16 / 8.7; border-radius: 4px; margin-bottom: 20px; }
.fm-lead-card h4 { font-size: clamp(1.2rem, 1.7vw, 1.72rem); line-height: 1.12; }
.fm-lead-card p { font-size: .9rem; }
.fm-col-list { grid-auto-rows: minmax(132px, auto); padding: 4px clamp(20px, 2.4vw, 44px) 22px; }
.fm-item h4 { font-size: 1.02rem; }
.fm-pos.centre {
  color: var(--fm-centre);
  background: rgba(244, 241, 232, .08);
  box-shadow: inset 0 0 0 1px rgba(244, 241, 232, .3);
}

.fm-crossview {
  padding: clamp(54px, 7vw, 104px) 0;
  background: #111722;
  border-bottom: 1px solid var(--fm-line);
}
.fm-cross-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42ch);
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}
.fm-cross-head h2 { margin: 0; font-family: var(--fm-serif); line-height: 1.02; }
.fm-cross-head h2 em { color: var(--fm-cyan); font-style: italic; }
.fm-cross-head p { margin: 0; color: var(--fm-muted); font-size: .86rem; line-height: 1.6; }
.fm-cross-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--fm-line); }
.fm-cross-card {
  position: relative;
  min-height: 280px;
  padding: 30px 30px 28px 76px;
  border-bottom: 1px solid var(--fm-line);
  transition: background .2s ease;
}
.fm-cross-card + .fm-cross-card { border-left: 1px solid var(--fm-line); }
.fm-cross-card:hover { background: rgba(255,255,255,.035); }
.fm-cross-no {
  position: absolute;
  top: 29px;
  left: 24px;
  color: var(--fm-faint);
  font: 700 .68rem var(--fm-sans);
  letter-spacing: .13em;
}
.fm-cross-card .fm-source { margin-bottom: 32px; }
.fm-cross-card h3 { margin: 0 0 18px; font: 700 clamp(1.15rem, 1.55vw, 1.55rem)/1.13 var(--fm-serif); }
.fm-cross-card:hover h3 { color: #fff; }
.fm-cross-card .fm-meta-row { margin-top: auto; }
.fm-cross-empty { grid-column: 1 / -1; padding: 34px 0; color: var(--fm-muted); }

.fm-video-desk { margin-top: 0; padding-top: clamp(48px, 6vw, 82px); }
.fm-video-head h2 { font-size: clamp(1.9rem, 3.2vw, 3.4rem); }
.fm-video-desk .fm-vid { border-radius: 4px; }

@media (max-width: 1080px) {
  .fm-commandbar { grid-template-columns: 1fr; }
  .fm-cols { gap: 0; }
  .fm-col { min-height: 760px; }
  .fm-cross-grid { grid-template-columns: 1fr; }
  .fm-cross-card + .fm-cross-card { border-left: 0; }
}
@media (max-width: 720px) {
  .fm-masthead .fm-mast-wrap { min-height: 150px; }
  .fm-bords-head, .fm-cross-head { grid-template-columns: 1fr; }
  .fm-equality span { padding-inline: 8px; letter-spacing: .06em; }
  .fm-kind-filter { overflow-x: auto; padding: 3px; }
  .fm-kind-filter button { flex: none; }
  .fm-cols { gap: 0; }
  .fm-cross-card { padding-left: 68px; }
}
