@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700;800&display=swap');
:root {
  /* ── Couleur ── */
  --wine: #960018;          /* marque, inchangé */
  --wine-dark: #6b0011;
  --wine-deep: #3d000a;     /* aplats sombres, remplace les dégradés */
  --wine-light: #b8253b;
  --wine-wash: #fbf4f2;     /* fond de citation, très léger */

  --paper: #f4eee0;         /* fond de page, inchangé */
  --paper-card: #fffdf8;    /* blanc chaud : papier, pas écran */
  --paper-deep: #e9e0c9;

  --ink: #191512;           /* noir chaud, pas #2b2b2b neutre */
  --ink-soft: #4a423a;
  --ink-mute: #857c6e;

  --rule: #ddd3bc;
  --rule-soft: #ebe3d2;
  --cream: #f0e3c1;
  --gold: #c8962a;          /* = fill des SVG étoiles, ne pas dévier */

  /* ── Typographie : trois rôles, trois familles ── */
  --f-display: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --f-read: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --f-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Échelle ~1.28, un seul jeu de valeurs pour tout le site */
  --t-3xs: 11px;
  --t-2xs: 12px;
  --t-xs: 13px;
  --t-s: 15px;
  --t-m: 17px;
  --t-l: 21px;
  --t-xl: 27px;
  --t-2xl: 35px;
  --t-3xl: 45px;

  /* ── Pas d'espace ── */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  /* ── Deux rayons, pas sept ── */
  --r: 3px;
  --r-lg: 6px;

  --sh: 0 1px 2px rgba(25,21,18,.04), 0 10px 30px rgba(25,21,18,.07);
  --sh-lift: 0 2px 4px rgba(25,21,18,.05), 0 18px 40px rgba(25,21,18,.11);

  --measure: 66ch;          /* longueur de ligne de lecture */
  --header-h: 110px;
}

/* ════════════════ RESET / BASE ════════════════ */
*,*::before,*::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--f-ui);
  font-size: var(--t-s);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 700; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--cream); color: var(--ink); }

/* Focus clavier visible. :where() = spécificité nulle. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}
.tem-header :where(a, button):focus-visible,
.tem-nav :where(a, button):focus-visible,
.tem-banner-launch :where(a, button):focus-visible,
.crit-hero :where(a, button):focus-visible,
.sp-hero :where(a, button):focus-visible,
.article-hero :where(a, button):focus-visible,
.tem-footer :where(a, button):focus-visible,
.tem-filiation :where(a, button):focus-visible,
.crit-sb-card.dark :where(a, button):focus-visible,
.sp-lie-block:focus-visible { outline-color: #fff; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 var(--s4); position: relative; }

/* ── Primitives typographiques ─────────────────────────────────
   Réutilisables partout, elles évitent de redéclarer 30 fois les
   mêmes trois lignes. */
.t-display { font-family: var(--f-display); font-weight: 700; letter-spacing: -.015em; line-height: 1.08; }
.t-read { font-family: var(--f-read); font-size: var(--t-m); line-height: 1.72; color: var(--ink-soft); }
.t-label { font-family: var(--f-ui); font-size: var(--t-3xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* ── ÉLÉMENT SIGNATURE : le générique ──────────────────────────
   Le bloc de crédits d'un programme imprimé : intitulé à gauche,
   valeur à droite, pointillés de conduite entre les deux. C'est un
   dispositif fonctionnel — il aligne des paires — et non un décor. */
.generique { display: flex; flex-direction: column; }
.generique-row { display: flex; align-items: baseline; gap: var(--s2); padding: 11px 0; border-bottom: 1px solid var(--rule-soft); }
.generique-row:last-child { border-bottom: 0; }
.generique-k { flex: 0 0 auto; max-width: 45%; font-family: var(--f-ui); font-size: var(--t-2xs); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
.generique-lead { flex: 1 1 auto; min-width: 14px; align-self: center; border-bottom: 1px dotted var(--rule); opacity: .85; }
.generique-v { flex: 0 1 auto; font-family: var(--f-read); font-size: var(--t-s); color: var(--ink); text-align: right; }
.generique-v em { font-style: italic; color: var(--ink-soft); }

/* ════════════════ HEADER ════════════════ */
.tem-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--wine); border-bottom: 1px solid rgba(0,0,0,.18); }
.tem-header-top { display: flex; align-items: center; gap: var(--s5); padding: var(--s3) var(--s4); max-width: 1170px; margin: 0 auto; }
.tem-logo { display: flex; flex-direction: column; line-height: 1; color: #fff; flex-shrink: 0; }
.tem-logo-main { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 700; letter-spacing: -.02em; display: flex; align-items: baseline; gap: 5px; }
.tem-logo-main .amp { color: rgba(255,255,255,.55); font-weight: 400; font-style: italic; }
.tem-logo-sub { font-family: var(--f-ui); font-size: 9.5px; font-weight: 600; opacity: .8; margin-top: 6px; letter-spacing: .16em; text-transform: uppercase; }
.tem-header-right { display: flex; align-items: center; gap: var(--s3); margin-left: auto; }
.tem-badge-soon { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--wine); font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 6px 13px; border-radius: 100px; white-space: nowrap; }
.tem-badge-soon::before { content: ''; width: 5px; height: 5px; background: var(--wine); border-radius: 50%; }
.tem-nav { background: var(--wine-dark); }
.tem-nav-inner { display: flex; align-items: center; max-width: 1170px; margin: 0 auto; padding: 0 var(--s4); overflow-x: auto; scrollbar-width: none; }
.tem-nav-inner::-webkit-scrollbar { display: none; }
.tem-nav-link { display: block; padding: 13px var(--s4); color: rgba(255,255,255,.82); font-size: var(--t-2xs); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.tem-nav-link:hover { color: #fff; }
.tem-nav-link.is-active { color: #fff; border-bottom-color: var(--cream); }
.tem-nav-link.ext::after { content: '↗'; font-size: 9px; margin-left: 5px; color: rgba(255,255,255,.5); }

/* ════════════════ BANDEAU OUVERTURE ════════════════ */
.tem-banner-launch { background: var(--ink); color: rgba(255,255,255,.78); padding: 11px var(--s4); font-size: var(--t-xs); text-align: center; }
.tem-banner-launch strong { color: #fff; font-weight: 600; }
.tem-banner-launch a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; margin-left: var(--s2); }

/* ════════════════ SECTIONS ════════════════ */
.tem-section { padding: var(--s7) 0; }
.tem-section-alt { background: var(--paper-card); }

/* Le filet est fin et l'accent est un petit trait plein : plus de
   caractère « ▍ » emprunté à Unicode. */
.tem-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s5); padding-bottom: var(--s3); border-bottom: 1px solid var(--rule); }
.tem-section-title { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; letter-spacing: -.01em; line-height: 1.15; text-transform: none; }
.tem-section-title .accent { display: inline-block; width: 22px; height: 3px; background: var(--wine); vertical-align: 0.28em; margin-right: 10px; font-size: 0; overflow: hidden; }
.tem-section-sub { font-family: var(--f-ui); font-size: var(--t-2xs); color: var(--ink-mute); font-weight: 500; margin-top: 6px; }
.tem-section-more { font-size: var(--t-2xs); font-weight: 600; text-transform: uppercase; color: var(--wine); letter-spacing: .08em; border-bottom: 1px solid currentColor; padding-bottom: 2px; white-space: nowrap; }
.tem-section-more:hover { color: var(--wine-dark); }

/* ════════════════ HERO : grande slide + miniatures (index) ════════════════ */
.tem-hero { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: var(--s4); align-items: start; }

/* Grande slide — ratio natif 950x514, aucun recadrage */
.tem-hero-main { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--wine-deep); }
.tem-hero-track { display: flex; width: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tem-hero-slide { flex: 0 0 100%; position: relative; aspect-ratio: 950 / 514; color: #fff; text-decoration: none; display: block; }
.tem-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tem-hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(20,0,5,.78)); }
.tem-hero-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s5) var(--s6); z-index: 2; }
.tem-hero-cta { display: inline-block; font-size: var(--t-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 3px; transition: border-color .15s; }
a.tem-hero-slide:hover .tem-hero-cta { border-bottom-color: #fff; }

/* Colonne de miniatures cliquables */
.tem-hero-thumbs { display: flex; flex-direction: column; gap: var(--s2); }
.tem-hero-thumb { display: flex; gap: var(--s3); align-items: stretch; text-align: left; padding: 6px; border: 1px solid var(--rule-soft); border-radius: var(--r-lg); background: var(--paper-card); cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.tem-hero-thumb:hover { border-color: var(--rule); box-shadow: var(--sh); }
.tem-hero-thumb.is-active { border-color: var(--wine); box-shadow: inset 3px 0 0 var(--wine); }
.tem-hero-thumb-img { flex: 0 0 96px; aspect-ratio: 950 / 514; border-radius: var(--r); background-size: cover; background-position: center; background-color: var(--paper-deep); }
.tem-hero-thumb-info { display: flex; flex-direction: column; justify-content: center; gap: 4px; min-width: 0; padding-right: 6px; }
.tem-hero-thumb-tag { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--wine); }
.tem-hero-thumb-title { font-family: var(--f-display); font-size: var(--t-s); font-weight: 600; line-height: 1.2; color: var(--ink); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.tem-hero-thumb.is-active .tem-hero-thumb-title { color: var(--wine); }

/* ════════════════ HERO CAROUSEL (ancien, conservé) ════════════════ */
.tem-carousel { background: var(--wine-deep); position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/7; }
.tem-carousel-track { display: flex; width: 100%; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tem-carousel-slide { flex: 0 0 100%; position: relative; background-size: cover; background-position: center; color: #fff; text-decoration: none; }
.tem-carousel-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(20,0,5,.92)); }
.tem-carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s6); color: #fff; z-index: 2; max-width: 760px; }
.tem-carousel-meta { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s3); }
.tem-carousel-tag { display: inline-block; background: var(--wine); color: #fff; font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; padding: 5px 11px; border-radius: var(--r); }
.tem-carousel-meta .tem-carousel-tag { margin-bottom: 0; }
.tem-carousel-title { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; margin-bottom: var(--s2); }
.tem-carousel-sub { font-family: var(--f-read); font-size: var(--t-m); font-style: italic; color: rgba(255,255,255,.82); line-height: 1.5; }
a.tem-carousel-slide:hover .tem-carousel-title { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.tem-carousel-cta { display: inline-block; margin-top: var(--s4); font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 3px; transition: border-color .15s; }
a.tem-carousel-slide:hover .tem-carousel-cta { border-bottom-color: #fff; }
.tem-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(20,0,5,.42); color: #fff; font-size: var(--t-m); z-index: 3; backdrop-filter: blur(4px); }
.tem-carousel-btn:hover { background: var(--wine); border-color: var(--wine); }
.tem-carousel-prev { left: var(--s3); }
.tem-carousel-next { right: var(--s3); }
.tem-carousel-dots { position: absolute; bottom: var(--s4); right: var(--s6); display: flex; gap: 6px; z-index: 3; }
.tem-carousel-dot { width: 20px; height: 3px; border-radius: 0; background: rgba(255,255,255,.35); border: none; padding: 0; cursor: pointer; transition: background .2s; }
.tem-carousel-dot.is-active { background: var(--cream); }

/* ════════════════ À LA UNE — roller (index) ════════════════ */
.tem-roller { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s4); }
.tem-roller-item { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; background: var(--paper-deep); }
.tem-roller-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tem-roller-item:hover img { transform: scale(1.05); }
.tem-roller-item-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s6) var(--s3) var(--s3); color: #fff; background: linear-gradient(180deg, transparent, rgba(20,0,5,.94)); font-family: var(--f-display); font-size: var(--t-s); font-weight: 600; line-height: 1.24; }

/* ════════════════ SPECTACLES GRID (index + reco) ════════════════ */
.tem-spec-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--s4); align-items: start; }
.tem-spec-card { display: flex; flex-direction: column; min-width: 0; }
/* Ratio 3/4 garanti par le padding (100% compatible) plutôt que par
   aspect-ratio seul, qui échoue sur les vieux Safari mobile et laisse
   alors le cadre prendre la taille de l'image. */
.tem-spec-poster { position: relative; width: 100%; height: 0; padding-top: 133.333%; border-radius: var(--r); overflow: hidden; background: var(--paper-deep); margin-bottom: 10px; box-shadow: var(--sh); }
.tem-spec-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tem-spec-card:hover .tem-spec-poster img { transform: scale(1.05); }
.tem-spec-tag { position: absolute; top: var(--s2); left: var(--s2); z-index: 2; background: rgba(20,0,5,.82); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 8px; border-radius: 2px; backdrop-filter: blur(3px); }
.tem-spec-poster-empty { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--paper-deep); font-family: var(--f-display); font-size: var(--t-2xl); color: var(--rule); }
.tem-spec-title { font-family: var(--f-display); font-size: var(--t-s); font-weight: 600; line-height: 1.22; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 3px; min-height: calc(1.22em * 2); }
.tem-spec-card:hover .tem-spec-title { color: var(--wine); }
.tem-spec-lieu { font-size: var(--t-3xs); color: var(--ink-mute); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ════════════════ ENCART CTA SEARCH (index) ════════════════ */
.tem-cta-search { background: var(--wine-deep); border-radius: var(--r-lg); padding: var(--s6); display: grid; grid-template-columns: 1fr auto; gap: var(--s5); align-items: center; color: #fff; margin: var(--s6) 0; }
.tem-cta-search h3 { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; margin-bottom: var(--s2); }
.tem-cta-search p { font-family: var(--f-read); font-size: var(--t-s); color: rgba(255,255,255,.72); margin: 0; max-width: 52ch; }
.tem-cta-form { display: flex; gap: var(--s2); flex-wrap: wrap; min-width: min(360px, 100%); }
.tem-cta-form input, .tem-cta-form select { height: 44px; border: none; border-radius: var(--r); padding: 0 var(--s4); font-size: var(--t-xs); font-family: inherit; background: #fff; color: var(--ink); outline: none; }
.tem-cta-form input { flex: 1; }
.tem-cta-form select { min-width: 140px; }
.tem-cta-form button { background: var(--cream); color: var(--ink); border: none; padding: 0 var(--s5); font-size: var(--t-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-radius: var(--r); }
.tem-cta-form button:hover { background: #fff; }
.tem-cta-actions { display: flex; justify-content: flex-end; }
.tem-cta-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--cream); color: var(--ink); padding: 14px var(--s5); font-size: var(--t-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-radius: var(--r); white-space: nowrap; transition: background .15s; }
.tem-cta-btn:hover { background: #fff; }

/* ════════════════ NEWS / CRITIQUES GRID ════════════════ */
.tem-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.tem-news-card { background: var(--paper-card); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule-soft); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.tem-news-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lift); border-color: var(--rule); }
.tem-news-thumb { position: relative; aspect-ratio: 16/10; background: var(--paper-deep); overflow: hidden; display: block; }
.tem-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tem-news-cat { position: absolute; top: 10px; left: 10px; background: rgba(20,0,5,.82); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 9px; border-radius: 2px; backdrop-filter: blur(3px); }
.tem-news-body { padding: var(--s4) var(--s4) var(--s5); flex: 1; display: flex; flex-direction: column; }
.tem-news-meta { font-size: var(--t-3xs); color: var(--ink-mute); font-weight: 500; letter-spacing: .02em; margin-bottom: 10px; }
.tem-news-meta strong { color: var(--wine); font-weight: 600; }
.tem-news-title { font-family: var(--f-display); font-size: var(--t-m); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 10px; }
.tem-news-card:hover .tem-news-title a { color: var(--wine); }
.tem-news-stars { display: inline-flex; align-items: center; gap: 2px; margin-bottom: 10px; }
.crit-stars { display: inline-flex; align-items: center; gap: 2px; }
/* La citation est le cœur d'une critique : elle mérite le didone en
   italique, pas un filet et une italique de sans-serif. */
.tem-news-phrase { font-family: var(--f-display); font-style: italic; font-size: var(--t-s); line-height: 1.5; color: var(--ink-soft); margin: 0 0 var(--s4); padding: 0; border: 0; flex: 1; }
.tem-news-phrase::before { content: '«\00a0'; color: var(--rule); }
.tem-news-phrase::after { content: '\00a0»'; color: var(--rule); }
.tem-news-cta { display: inline-block; font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--wine); border-bottom: 1px solid currentColor; padding-bottom: 2px; align-self: flex-start; }

/* ════════════════ VIDEO GRID (index) ════════════════ */
.tem-videos-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s5); }
.tem-video-main { background: var(--wine-deep); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; position: relative; }
.tem-video-main iframe { width: 100%; height: 100%; border: 0; }
.tem-video-main-thumb { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.tem-video-main-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 66px; height: 66px; border-radius: 50%; font-size: 0; overflow: hidden; pointer-events: none; box-shadow: 0 8px 30px rgba(20,0,5,.5); background: var(--wine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5l11 7-11 7z'/%3E%3C/svg%3E") center/38% no-repeat; }
.tem-videos-side { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); align-content: start; }
.tem-video-thumb { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-deep); cursor: pointer; }
.tem-video-thumb-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
/* Triangle en SVG plutôt qu'en caractère ▶ : dessin identique partout. */
.tem-video-thumb-img::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; border-radius: 50%; background: var(--wine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5l11 7-11 7z'/%3E%3C/svg%3E") center/38% no-repeat; }
.tem-video-thumb-info { padding: var(--s3); background: var(--paper-card); border: 1px solid var(--rule-soft); border-top: 0; }
.tem-video-thumb-cat { display: inline-block; font-size: 9.5px; font-weight: 700; text-transform: uppercase; color: var(--wine); letter-spacing: .1em; margin-bottom: 5px; }
.tem-video-thumb-title { font-family: var(--f-display); font-size: var(--t-xs); font-weight: 600; line-height: 1.24; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ════════════════ INTERVIEWS (index) ════════════════ */
.tem-itv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }
.tem-itv-card { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .25s; }
.tem-itv-card:hover { box-shadow: var(--sh-lift); }
.tem-itv-thumb { position: relative; aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: var(--wine-deep); cursor: pointer; }
.tem-itv-thumb::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--wine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5l11 7-11 7z'/%3E%3C/svg%3E") center/38% no-repeat; }
.tem-itv-body { padding: var(--s3); }
.tem-itv-tag { display: inline-block; background: var(--paper); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 8px; border-radius: 2px; margin-bottom: var(--s2); color: var(--ink-soft); }
.tem-itv-title { font-family: var(--f-display); font-size: var(--t-xs); font-weight: 600; line-height: 1.24; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ════════════════ GUIDES (index) ════════════════ */
.tem-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.tem-guide-card { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s; }
.tem-guide-card:hover { box-shadow: var(--sh-lift); }
.tem-guide-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; display: block; }
.tem-guide-badge { position: absolute; top: var(--s3); left: var(--s3); background: rgba(20,0,5,.82); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 9px; border-radius: 2px; backdrop-filter: blur(3px); }
.tem-guide-body { padding: var(--s4); flex: 1; display: flex; flex-direction: column; }
.tem-guide-title { font-family: var(--f-display); font-size: var(--t-m); font-weight: 700; line-height: 1.2; margin-bottom: var(--s2); }
.tem-guide-card:hover .tem-guide-title a { color: var(--wine); }
.tem-guide-chapo { font-family: var(--f-read); font-size: var(--t-s); line-height: 1.6; color: var(--ink-soft); flex: 1; margin: 0 0 var(--s3); }
.tem-guide-link { font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; color: var(--wine); letter-spacing: .12em; align-self: flex-start; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ════════════════ STATS (index) ════════════════ */
.tem-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); overflow: hidden; }
.tem-stat { padding: var(--s5) var(--s4); text-align: center; border-left: 1px solid var(--rule-soft); }
.tem-stat:first-child { border-left: 0; }
.tem-stat-num { display: block; font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 700; color: var(--wine); line-height: 1; margin-bottom: var(--s2); letter-spacing: -.02em; }
.tem-stat-lbl { font-size: var(--t-3xs); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-mute); }

/* ════════════════ FILIATION (index) ════════════════ */
.tem-filiation { background: var(--wine-deep); color: #fff; border-radius: var(--r-lg); padding: var(--s7); display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s7); align-items: center; }
.tem-filiation-vis { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.tem-filiation-vis .from { color: var(--cream); }
.tem-filiation-vis .arrow { display: block; margin: var(--s3) 0; font-family: var(--f-ui); font-size: var(--t-3xs); font-weight: 600; color: rgba(255,255,255,.42); letter-spacing: .2em; text-transform: uppercase; }
.tem-filiation h3 { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; margin-bottom: var(--s3); }
.tem-filiation p { font-family: var(--f-read); font-size: var(--t-m); line-height: 1.7; color: rgba(255,255,255,.78); margin: 0 0 var(--s3); max-width: var(--measure); }
.tem-filiation .btns { margin-top: var(--s5); display: flex; gap: 10px; flex-wrap: wrap; }
.tem-filiation .btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px var(--s5); font-size: var(--t-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-radius: var(--r); text-decoration: none; }
.tem-filiation .btn.btn-primary { background: var(--cream); color: var(--ink); }
.tem-filiation .btn.btn-primary:hover { background: #fff; }
.tem-filiation .btn.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.32); }
.tem-filiation .btn.btn-ghost:hover { border-color: #fff; }

/* ════════════════════════════════════════════════════════════
   LISTING CRITIQUES (critiques.php)
   ════════════════════════════════════════════════════════════ */
/* Aplat plein plutôt qu'un dégradé à 135°, et un guillemet en Bodoni
   comme filigrane : le motif vient de la typo du site, pas d'un stock. */
.crit-hero { background: var(--wine-deep); color: #fff; padding: var(--s7) 0 var(--s8); position: relative; overflow: hidden; }
.crit-hero::before { content: '“'; position: absolute; right: 4%; top: -.28em; font-family: var(--f-display); font-size: 340px; line-height: 1; color: rgba(255,255,255,.05); pointer-events: none; }
.crit-hero-inner { position: relative; z-index: 1; }
.crit-breadcrumb { font-size: var(--t-3xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: var(--s5); }
.crit-breadcrumb a { color: rgba(255,255,255,.5); transition: color .15s; }
.crit-breadcrumb a:hover { color: #fff; }
.crit-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.crit-breadcrumb li { display: flex; align-items: center; gap: 7px; }
.crit-breadcrumb li + li::before { content: '/'; color: rgba(255,255,255,.28); }
.crit-breadcrumb li[aria-current] { color: rgba(255,255,255,.9); }
.crit-h1 { font-family: var(--f-display); font-size: clamp(34px, 6vw, 64px); font-weight: 700; letter-spacing: -.025em; line-height: 1.02; margin-bottom: var(--s4); }
.crit-h1 em { font-style: italic; font-weight: 400; color: var(--cream); }
.crit-hero-sub { font-family: var(--f-read); font-size: var(--t-m); color: rgba(255,255,255,.72); max-width: 58ch; line-height: 1.65; }
.crit-hero-count { display: inline-block; margin-top: var(--s5); font-size: var(--t-3xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.22); padding-top: 10px; border-radius: 0; }
.crit-hero-count strong { color: var(--cream); font-weight: 700; }

.crit-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: var(--s8); align-items: start; }
.crit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.crit-list-head { margin: 0 0 var(--s5); }

/* pagination */
.crit-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin: var(--s7) 0 var(--s2); }
.crit-pag-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 11px; border: 1px solid var(--rule); background: var(--paper-card); font-size: var(--t-xs); font-weight: 600; color: var(--ink-soft); border-radius: var(--r); transition: all .15s; }
.crit-pag-btn:hover { border-color: var(--wine); color: var(--wine); }
.crit-pag-btn.active { background: var(--wine); border-color: var(--wine); color: #fff; pointer-events: none; }
.crit-pag-btn.disabled { opacity: .3; pointer-events: none; }
.crit-pag-ellipsis { font-size: var(--t-xs); color: var(--ink-mute); padding: 0 var(--s1); }

/* bloc éditorial */
.crit-seo { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s6); margin-top: var(--s7); }
.crit-seo h2 { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; color: var(--ink); margin-bottom: var(--s4); letter-spacing: -.01em; }
.crit-seo p { font-family: var(--f-read); font-size: var(--t-m); line-height: 1.75; color: var(--ink-soft); margin: 0 0 var(--s4); max-width: var(--measure); }
.crit-seo p:last-child { margin-bottom: 0; }
.crit-seo .hidden-content[hidden] { display: none; }
.crit-seo-more { display: inline-block; margin-top: var(--s3); font-family: inherit; font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--wine); background: none; border: 0; border-bottom: 1px solid var(--wine); padding: 0 0 2px; cursor: pointer; }
.crit-seo-more[hidden] { display: none; }
.crit-seo-more:hover { color: var(--wine-dark); border-bottom-color: var(--wine-dark); }

/* sidebar (listing + détail) */
.crit-sidebar { position: sticky; top: calc(var(--header-h) + var(--s4)); display: flex; flex-direction: column; gap: var(--s5); }
.crit-sb-card { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s5); }
.crit-sb-card.dark { background: var(--ink); border-color: var(--ink); }
.crit-sb-head { display: block; font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-mute); padding-bottom: var(--s3); margin-bottom: var(--s2); border-bottom: 1px solid var(--rule); }
.crit-sb-card.dark .crit-sb-head { color: var(--cream); border-bottom-color: rgba(255,255,255,.16); }
.crit-sb-item { display: flex; gap: var(--s3); align-items: flex-start; padding: var(--s3) 0; border-bottom: 1px solid var(--rule-soft); }
.crit-sb-item:last-of-type { border-bottom: none; }
.crit-sb-thumb { width: 64px; height: 48px; flex-shrink: 0; border-radius: 2px; overflow: hidden; background: var(--paper-deep) center/cover; }
.crit-sb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.crit-sb-cat { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wine); margin-bottom: 4px; }
.crit-sb-title { font-family: var(--f-display); font-size: var(--t-xs); font-weight: 600; line-height: 1.28; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.crit-sb-item:hover .crit-sb-title { color: var(--wine); }
.crit-sb-date { font-size: 10px; color: var(--ink-mute); margin-top: 4px; letter-spacing: .02em; }
.crit-sb-all { display: block; text-align: center; margin-top: var(--s4); padding: 11px; background: var(--wine); color: #fff; font-size: var(--t-3xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: var(--r); transition: background .15s; }
.crit-sb-all:hover { background: var(--wine-dark); }
.crit-sb-card.dark p { font-family: var(--f-read); font-size: var(--t-s); color: rgba(255,255,255,.6); line-height: 1.65; margin: 0 0 var(--s4); }

/* ════════════════════════════════════════════════════════════
   FICHE SPECTACLE (spectacle.php)
   ════════════════════════════════════════════════════════════ */
.sp-hero { background: var(--wine-deep); color: #fff; padding: var(--s6) 0 var(--s8); position: relative; overflow: hidden; }
.sp-hero .crit-breadcrumb, .sp-hero .crit-breadcrumb a { color: rgba(255,255,255,.75); }
.sp-hero .crit-breadcrumb a:hover { color: #fff; }
.sp-hero .crit-breadcrumb li[aria-current] { color: #fff; }
.sp-hero .crit-breadcrumb li + li::before { color: rgba(255,255,255,.45); }
.sp-hero-grid { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: var(--s7); align-items: start; }

.sp-poster { position: relative; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; background: rgba(255,255,255,.06); box-shadow: 0 20px 50px rgba(0,0,0,.42); }
.sp-poster img { width: 100%; height: 100%; object-fit: cover; }
.sp-poster-empty { display: flex; align-items: center; justify-content: center; height: 100%; font-family: var(--f-display); font-size: var(--t-3xl); color: rgba(255,255,255,.2); }

/* Étiquette unique, en bandeau bas d'affiche — pas un autocollant */
.sp-badge { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 9px 10px; text-align: center; line-height: 1.2; }
.sp-badge--or { background: var(--gold); color: var(--ink); }
.sp-badge--rouge { background: var(--cream); color: var(--wine-dark); }

.sp-hero-info { min-width: 0; padding-top: var(--s1); }
.sp-eyebrow { font-size: var(--t-3xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); margin-bottom: var(--s4); }
.sp-title { font-family: var(--f-display); font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -.025em; line-height: 1.02; }
.sp-compagnie { font-family: var(--f-display); font-size: var(--t-l); font-style: italic; font-weight: 400; color: rgba(255,255,255,.85); margin-top: 10px; }

.sp-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: var(--s5); font-size: var(--t-2xs); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.sp-meta-sep { color: rgba(255,255,255,.45); }

/* Ligne casting hero, façon « De… / Avec… » */
.sp-credits { margin-top: var(--s4); display: flex; flex-direction: column; gap: 5px; }
.sp-credit-line { font-family: var(--f-read); font-size: var(--t-s); line-height: 1.5; color: #fff; }
.sp-credit-k { color: rgba(255,255,255,.7); font-family: var(--f-ui); font-size: var(--t-2xs); font-weight: 600; letter-spacing: .04em; margin-right: 8px; }
.sp-credit-v { color: #fff; }

/* Note éditoriale : le chiffre en Bodoni, à l'échelle d'un titre */
/* ── Étoiles à valeur décimale ─────────────────────────────────
   Deux rangs superposés : le rang doré est rogné à un pourcentage.
   C'est ce qui permet d'afficher 4,3 comme AlloCiné affiche 4½. */
.stars-set { position: relative; display: inline-block; line-height: 0; color: var(--rule); }
.stars-set-bg, .stars-set-fill { display: block; white-space: nowrap; }
.stars-set-bg svg, .stars-set-fill svg { fill: currentColor; display: inline-block; margin-right: 2px; }
.stars-set-bg svg:last-child, .stars-set-fill svg:last-child { margin-right: 0; }
.stars-set-fill { position: absolute; top: 0; left: 0; overflow: hidden; color: var(--gold); }
.sp-hero .stars-set { color: rgba(255,255,255,.4); }

/* ── Trio de notes : uniformes, Théâtre & Moi simplement en premier ── */
.sp-notes { display: flex; flex-wrap: nowrap; gap: 0; margin-top: var(--s6); border: 1px solid rgba(255,255,255,.32); border-radius: var(--r); overflow: hidden; width: fit-content; max-width: 100%; }
.sp-note { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding: var(--s3) var(--s4); border-left: 1px solid rgba(255,255,255,.32); min-width: 0; flex: 0 1 auto; }
.sp-note:first-child { border-left: 0; }
.sp-note-label { font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.sp-note-row { display: flex; align-items: center; gap: 8px; }
.sp-note-val { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 700; line-height: 1; color: #fff; letter-spacing: -.02em; }
.sp-note-val span { font-size: var(--t-s); font-weight: 400; color: rgba(255,255,255,.7); }
.sp-note-sub { font-size: 10px; color: rgba(255,255,255,.75); letter-spacing: .02em; white-space: nowrap; }

/* ── Tournée ───────────────────────────────────────────────────
   Le pavé de date en Bodoni fait office de repère visuel : c'est la
   colonne qu'on balaie du regard pour trouver sa ville. */
.sp-tour { display: flex; flex-direction: column; background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); overflow: hidden; }
.sp-tour-row { display: flex; align-items: center; gap: var(--s5); padding: var(--s3) var(--s5); border-top: 1px solid var(--rule-soft); }
.sp-tour-row:first-child { border-top: 0; }
.sp-tour-row.is-complet { background: repeating-linear-gradient(135deg, transparent 0 6px, rgba(133,124,110,.05) 6px 12px); }
.sp-tour-when { flex: 0 0 54px; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.sp-tour-d { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; color: var(--wine); letter-spacing: -.02em; }
.sp-tour-row.is-complet .sp-tour-d { color: var(--ink-mute); }
.sp-tour-m { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.sp-tour-place { flex: 1 1 auto; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sp-tour-salle { font-family: var(--f-display); font-size: var(--t-m); font-weight: 600; color: var(--ink); line-height: 1.2; }
.sp-tour-ville { font-size: var(--t-2xs); color: var(--ink-mute); letter-spacing: .04em; text-transform: uppercase; }
.sp-tour-cta { flex: 0 0 auto; padding: 9px var(--s4); border-radius: var(--r); background: var(--wine); color: #fff; font-size: var(--t-3xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .15s; }
.sp-tour-cta:hover { background: var(--wine-dark); }
.sp-tour-cta.is-warn { background: var(--gold); color: var(--ink); }
.sp-tour-cta.is-warn:hover { background: #a87d18; }
.sp-tour-state { flex: 0 0 auto; padding: 9px var(--s4); font-size: var(--t-3xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); border: 1px dashed var(--rule); border-radius: var(--r); }

/* ── Revue de presse ── */
.sp-presse { display: flex; flex-direction: column; background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s2) var(--s5) var(--s4); }
.sp-presse-list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.sp-presse-row { display: flex; flex-direction: column; gap: 7px; padding: var(--s4) 0; border-bottom: 1px solid var(--rule-soft); }
.sp-presse-row:last-child { border-bottom: 0; }
.sp-presse-head { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.sp-presse-src { font-size: var(--t-2xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.sp-presse-quote { font-family: var(--f-display); font-style: italic; font-size: var(--t-m); line-height: 1.45; color: var(--ink-soft); max-width: 60ch; }
.sp-presse-quote::before { content: '«\00a0'; color: var(--rule); }
.sp-presse-quote::after { content: '\00a0»'; color: var(--rule); }
.sp-presse-note { font-size: var(--t-2xs); color: var(--ink-mute); line-height: 1.5; margin: var(--s3) 0 0; padding-top: var(--s3); border-top: 1px solid var(--rule-soft); }

/* ── Avis de spectateurs ── */
.sp-com { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: var(--s5); padding: var(--s5); margin-bottom: var(--s4); background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); }
.sp-com:last-child { margin-bottom: 0; }
.sp-com-who { display: flex; gap: var(--s3); align-items: flex-start; }
.sp-com-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--paper-deep); color: var(--wine); font-family: var(--f-display); font-size: var(--t-s); font-weight: 700; display: flex; align-items: center; justify-content: center; letter-spacing: .02em; }
.sp-com-ident { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.sp-com-nom { font-family: var(--f-display); font-size: var(--t-s); font-weight: 700; color: var(--ink); line-height: 1.25; }
/* Le badge « certifié » : liseré doré, pas un autocollant coloré */
.sp-com-badge { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; padding: 3px 8px; border: 1px solid rgba(200,150,42,.5); border-radius: 100px; background: rgba(200,150,42,.08); color: #8a6416; font-family: var(--f-ui); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.sp-com-stats { font-size: 10.5px; color: var(--ink-mute); letter-spacing: .02em; }
.sp-com-body { display: flex; flex-direction: column; gap: var(--s3); }
.sp-com-meta { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.sp-com-val { font-family: var(--f-display); font-size: var(--t-m); font-weight: 700; color: var(--ink); }
.sp-com-date { font-size: 10.5px; color: var(--ink-mute); letter-spacing: .02em; }
.sp-com-texte { font-family: var(--f-read); font-size: var(--t-m); line-height: 1.72; color: var(--ink-soft); margin: 0; max-width: var(--measure); }

/* ── [DÉMO] Module « Donnez votre avis » ── */
.sp-rate { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s5); margin-bottom: var(--s6); display: flex; flex-direction: column; gap: var(--s3); }
.sp-rate-head { display: flex; flex-direction: column; gap: 3px; }
.sp-rate-title { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; color: var(--ink); line-height: 1.2; }
.sp-rate-sub { font-size: var(--t-2xs); color: var(--ink-mute); }
.sp-rate-stars { display: flex; align-items: center; gap: 4px; margin: var(--s1) 0 var(--s2); }
.sp-rate-star { display: inline-flex; padding: 2px; background: none; border: 0; cursor: pointer; color: var(--rule); line-height: 0; transition: color .12s, transform .12s; }
.sp-rate-star svg { fill: currentColor; }
.sp-rate-star:hover { transform: scale(1.08); }
.sp-rate-star.is-on { color: var(--gold); }
.sp-rate-value { margin-left: var(--s3); font-family: var(--f-display); font-size: var(--t-m); font-weight: 700; color: var(--ink); }
.sp-rate-label { font-family: var(--f-ui); font-size: var(--t-2xs); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
.sp-rate-text { width: 100%; font-family: var(--f-read); font-size: var(--t-m); line-height: 1.6; color: var(--ink); background: #fff; border: 1px solid var(--rule); border-radius: var(--r); padding: var(--s3) var(--s4); resize: vertical; outline: none; transition: border-color .15s; }
.sp-rate-text:focus { border-color: var(--wine); }
.sp-rate-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; }
.sp-rate-note-txt { font-size: var(--t-3xs); color: var(--ink-mute); }
.sp-rate-msg { margin: 0; font-size: var(--t-2xs); font-weight: 600; padding: var(--s3) var(--s4); border-radius: var(--r); }
.sp-rate-msg.is-ok { background: rgba(0,120,60,.08); color: #1c6b3f; border: 1px solid rgba(0,120,60,.25); }
.sp-rate-msg.is-err { background: var(--wine-wash); color: var(--wine-dark); border: 1px solid rgba(150,0,24,.25); }

/* Bouton bordeaux plein, pour fond clair (le sp-btn crème est pour le hero) */
.sp-btn-dark { background: var(--wine); color: #fff; }
.sp-btn-dark:hover { background: var(--wine-dark); }


/* Onglets d'ancrage du hero (structure AlloCiné, couleurs T&M) */
.sp-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s6); padding-top: var(--s5); border-top: 1px solid rgba(255,255,255,.16); }
.sp-tab { display: inline-flex; align-items: center; padding: 9px var(--s4); border-radius: 100px; background: rgba(255,255,255,.14); color: #fff; font-family: var(--f-ui); font-size: var(--t-2xs); font-weight: 600; letter-spacing: .04em; white-space: nowrap; transition: background .15s, color .15s; }
.sp-tab:hover { background: var(--cream); color: var(--wine-dark); }
/* Compense le header fixe quand on saute vers une ancre */
#synopsis, #tournee, #bande-annonce, #critique, #presse, #distribution, #avis, #interview {
  scroll-margin-top: calc(var(--header-h) + var(--s4));
}

.sp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s6); }
.sp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px var(--s5); border-radius: var(--r); background: var(--cream); color: var(--ink); font-size: var(--t-2xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: background .15s, border-color .15s; }
.sp-btn:hover { background: #fff; }
.sp-btn svg { flex-shrink: 0; }
.sp-btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,.32); color: #fff; }
.sp-btn-ghost:hover { background: transparent; border-color: #fff; }

.sp-block { margin-bottom: var(--s8); }
.sp-block:last-child { margin-bottom: 0; }

/* Renvoi vers la critique interne */
.sp-crit { display: flex; gap: var(--s5); align-items: stretch; background: var(--paper-card); border: 1px solid var(--rule-soft); border-left: 3px solid var(--wine); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: var(--s5); transition: box-shadow .25s, transform .25s; }
.sp-crit:hover { box-shadow: var(--sh-lift); transform: translateY(-2px); }
.sp-crit-thumb { width: 150px; flex-shrink: 0; aspect-ratio: 16/10; border-radius: 2px; overflow: hidden; background: var(--paper-deep); }
.sp-crit-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-crit-body { display: flex; flex-direction: column; gap: var(--s2); min-width: 0; }
.sp-crit-meta { font-size: var(--t-3xs); font-weight: 500; letter-spacing: .04em; color: var(--ink-mute); }
.sp-crit-meta strong { color: var(--wine); font-weight: 600; }
.sp-crit-name { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; line-height: 1.16; letter-spacing: -.01em; color: var(--ink); }
.sp-crit:hover .sp-crit-name { color: var(--wine); }
.sp-crit-phrase { font-family: var(--f-display); font-style: italic; font-size: var(--t-m); line-height: 1.45; color: var(--ink-soft); }
.sp-crit-cta { font-size: var(--t-3xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wine); align-self: flex-start; border-bottom: 1px solid currentColor; padding-bottom: 2px; margin-top: auto; }

/* Générique : distribution + infos techniques, même dispositif */
.sp-generique { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s3) var(--s5); }
.sp-generique-2col { columns: 2; column-gap: var(--s7); }
.sp-generique-2col .generique-row { break-inside: avoid; }

/* Thématiques */
.sp-tags { display: flex; flex-wrap: wrap; gap: var(--s2); }
.sp-tag { display: inline-block; padding: 7px 15px; border-radius: 100px; background: var(--paper-card); border: 1px solid var(--rule); color: var(--ink-soft); font-size: var(--t-2xs); font-weight: 600; letter-spacing: .02em; transition: border-color .15s, color .15s; }
.sp-tag:hover { border-color: var(--wine); color: var(--wine); }

/* Presse extérieure */
.sp-press { display: flex; flex-direction: column; background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s2) var(--s5); margin: 0; list-style: none; }
.sp-press li { border-bottom: 1px solid var(--rule-soft); }
.sp-press li:last-child { border-bottom: 0; }
.sp-press a { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4); padding: var(--s4) 0; font-family: var(--f-display); font-size: var(--t-m); font-weight: 600; color: var(--ink); transition: color .15s; }
.sp-press a:hover { color: var(--wine); }
.sp-press a span { font-family: var(--f-ui); font-size: var(--t-3xs); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); flex-shrink: 0; }

/* Sidebar spécifique */
.sp-sb-links { display: flex; flex-direction: column; gap: var(--s2); }
.sp-warn { font-family: var(--f-read); font-size: var(--t-s); line-height: 1.65; color: var(--ink-soft); margin: 0; }
.sp-sb-note { font-size: var(--t-2xs); line-height: 1.55; color: var(--ink-mute); margin: 0 0 var(--s3); }

/* ════════════════════════════════════════════════════════════
   DÉTAIL CRITIQUE (critique.php)
   ════════════════════════════════════════════════════════════ */
.article-hero { background: var(--wine-deep); color: #fff; padding: var(--s6) 0 var(--s7); }
.article-hero .crit-breadcrumb span { color: rgba(255,255,255,.28); margin: 0 7px; }
.article-eyebrow { font-size: var(--t-3xs); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); margin-bottom: var(--s3); }
.article-h1 { font-family: var(--f-display); font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -.025em; line-height: 1.03; }
.article-meta { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s5); flex-wrap: wrap; font-size: var(--t-2xs); letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.article-meta .dot { color: rgba(255,255,255,.26); }
.article-meta-stars { display: inline-flex; align-items: center; gap: 3px; }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: var(--s8); align-items: start; }
.article-hero-img { width: 100%; max-width: 950px; aspect-ratio: 950/514; object-fit: cover; border-radius: var(--r-lg); display: block; margin-bottom: var(--s6); }

/* Chapô : didone italique, sans encadré. C'est une voix, pas une alerte. */
.article-chapo { font-family: var(--f-read); font-style: italic; font-size: var(--t-m); font-weight: 400; color: var(--ink-soft); line-height: 1.6; margin: 0 0 var(--s6); padding: var(--s5) var(--s7); border: 1px solid var(--rule-soft); border-left: 3px solid var(--wine); background: var(--paper-card); border-radius: 0 var(--r-lg) var(--r-lg) 0; max-width: none; }

.article-authorbox { display: flex; align-items: flex-start; gap: var(--s4); padding: var(--s4); background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); margin-bottom: var(--s6); }
.article-authorbox-photo { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; background: var(--paper-deep) center/cover; }
.article-authorbox-name { font-family: var(--f-display); font-size: var(--t-m); font-weight: 700; margin-bottom: 2px; }
.article-authorbox-name a { color: var(--wine); }
.article-authorbox-role { font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 7px; }
.article-authorbox-bio { font-family: var(--f-read); font-size: var(--t-xs); line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* Corps d'article : Spectral, ferré à gauche. Le justify creusait
   des rivières de blanc à cette longueur de ligne. */
.article-corps { font-family: var(--f-read); font-size: var(--t-m); color: var(--ink-soft); line-height: 1.78; background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s7) var(--s7); }
.article-corps > * { max-width: var(--measure); }
.article-corps p { margin: 0 0 var(--s5); text-align: left; }
.article-corps p:last-child { margin-bottom: 0; }
.article-corps h2, .article-corps h3 { font-family: var(--f-display); font-weight: 700; color: var(--ink); margin: var(--s7) 0 var(--s4); letter-spacing: -.015em; line-height: 1.18; }
.article-corps h2 { font-size: var(--t-xl); }
.article-corps h3 { font-size: var(--t-l); }
.article-corps ul { margin: 0 0 var(--s5); }
.article-corps ul li { list-style: disc; margin-left: var(--s5); margin-bottom: var(--s2); }
.article-corps a { color: var(--wine); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-corps a:hover { text-decoration-thickness: 2px; }
.article-corps blockquote { font-family: var(--f-display); font-style: italic; font-size: var(--t-l); line-height: 1.4; color: var(--ink); border-left: 3px solid var(--gold); padding: 0 0 0 var(--s5); margin: var(--s6) 0; background: none; border-radius: 0; }
.article-corps img { border-radius: var(--r); margin: var(--s5) 0; }

.article-note { display: flex; align-items: center; gap: var(--s4); margin: var(--s6) 0; padding: var(--s4) var(--s5); background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); }
.article-note-label { font-size: var(--t-3xs); font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .14em; flex-shrink: 0; }
.article-note-stars { display: flex; align-items: center; gap: 2px; }
.article-note-val { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; color: var(--ink); margin-left: 6px; }

.article-signature { display: flex; align-items: center; gap: var(--s3); padding: var(--s4); background: var(--paper-deep); border-radius: var(--r-lg); margin: var(--s6) 0; font-size: var(--t-xs); color: var(--ink-soft); }
.article-signature strong { color: var(--ink); display: block; font-weight: 600; }
.article-signature .date { margin-left: auto; font-size: var(--t-2xs); color: var(--ink-mute); }

.article-share { margin-top: var(--s6); padding-top: var(--s5); border-top: 1px solid var(--rule); }
.article-share-title { font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-mute); margin-bottom: var(--s3); }
.article-share-btns { display: flex; gap: var(--s2); flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px var(--s4); border-radius: var(--r); font-size: var(--t-2xs); font-weight: 600; border: 1px solid var(--rule); background: var(--paper-card); color: var(--ink-soft); transition: all .15s; text-decoration: none; width: 100%; font-family: inherit; }
.share-btn:hover { border-color: var(--wine); color: var(--wine); }

/* fiche spectacle liée (dans une critique) */
.sp-lie-block { display: flex; gap: var(--s5); align-items: flex-start; background: var(--ink); border-radius: var(--r-lg); padding: var(--s5); margin-bottom: var(--s6); border: 1px solid rgba(200,150,42,.28); text-decoration: none; transition: border-color .2s; }
.sp-lie-block:hover { border-color: var(--gold); }
.sp-lie-block.sp-lie-off { border-color: rgba(255,255,255,.12); }
.sp-lie-block.sp-lie-off:hover { border-color: rgba(255,255,255,.36); }
.sp-lie-affiche { width: 112px; flex-shrink: 0; border-radius: 2px; overflow: hidden; aspect-ratio: 3/4; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: var(--t-xl); }
.sp-lie-affiche img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-lie-body { flex: 1; min-width: 0; }
.sp-lie-label { font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: var(--s2); }
.sp-lie-block.sp-lie-off .sp-lie-label { color: rgba(255,255,255,.6); }
.sp-lie-titre { font-family: var(--f-display); font-size: var(--t-l); font-weight: 700; color: #fff; line-height: 1.16; margin-bottom: 4px; letter-spacing: -.015em; }
.sp-lie-compagnie { font-family: var(--f-display); font-size: var(--t-s); color: rgba(255,255,255,.5); font-style: italic; margin-bottom: var(--s3); }
.sp-lie-meta { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); margin-bottom: var(--s3); }
.sp-lie-meta-item { display: flex; align-items: center; gap: 6px; font-size: var(--t-2xs); color: rgba(255,255,255,.6); }
.sp-lie-meta-item strong { color: rgba(255,255,255,.9); font-weight: 600; }
.sp-lie-meta-item small { color: rgba(255,255,255,.45); margin-left: 4px; }
.sp-lie-distribution { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid rgba(255,255,255,.1); font-size: var(--t-2xs); color: rgba(255,255,255,.72); line-height: 1.55; }
.sp-lie-dist-titre { font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; font-size: 9px; letter-spacing: .16em; margin-bottom: 7px; }
.sp-lie-dist-item { margin-bottom: 4px; }
.sp-lie-dist-item strong { color: #fff; font-weight: 600; }
.sp-lie-equipe { white-space: pre-line; font-size: var(--t-2xs); color: rgba(255,255,255,.7); margin-top: 4px; }
.sp-lie-intro { font-family: var(--f-read); font-size: var(--t-xs); color: rgba(255,255,255,.7); font-style: italic; line-height: 1.55; margin: var(--s2) 0 var(--s3); }
.sp-lie-cta { display: inline-flex; align-items: center; gap: 7px; padding: 9px var(--s4); background: var(--gold); color: var(--ink); font-size: var(--t-2xs); font-weight: 700; border-radius: var(--r); text-transform: uppercase; letter-spacing: .1em; text-decoration: none; transition: opacity .2s; margin-top: 4px; }
.sp-lie-block.sp-lie-off .sp-lie-cta { background: var(--cream); color: var(--ink); }
.sp-lie-cta:hover { opacity: .88; }

/* commentaires */
.article-com { margin-top: var(--s8); }
.article-com-title { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 700; margin-bottom: var(--s5); padding-bottom: var(--s3); border-bottom: 1px solid var(--rule); letter-spacing: -.015em; }
.com-item { background: var(--paper-card); border: 1px solid var(--rule-soft); border-radius: var(--r-lg); padding: var(--s4) var(--s5); margin-bottom: var(--s3); font-family: var(--f-read); font-size: var(--t-s); line-height: 1.65; }
.com-meta { font-family: var(--f-ui); font-size: var(--t-2xs); color: var(--ink-mute); margin-bottom: 7px; }
.com-meta strong { color: var(--wine); font-weight: 600; }
.com-del { float: right; font-family: var(--f-ui); font-size: var(--t-3xs); color: var(--wine); cursor: pointer; background: none; border: none; padding: 0; }
.com-reponse { margin-left: var(--s6); border-left: 2px solid var(--rule); }
.com-form { margin-top: var(--s5); }
.com-form-textarea { width: 100%; padding: var(--s3) var(--s4); border: 1px solid var(--rule); border-radius: var(--r); font-family: var(--f-read); font-size: var(--t-s); resize: vertical; min-height: 110px; background: var(--paper-card); }
.com-form-textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,42,.14); }
.com-form-submit { margin-top: var(--s3); background: var(--wine); color: #fff; border: none; padding: 11px var(--s5); font-size: var(--t-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-radius: var(--r); }
.com-form-submit:hover { background: var(--wine-dark); }
.com-login { font-family: var(--f-read); font-size: var(--t-s); color: var(--ink-soft); background: var(--paper-deep); padding: var(--s4) var(--s5); border-radius: var(--r-lg); margin-top: var(--s4); }
.com-login a { color: var(--wine); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ════════════════ FOOTER ════════════════ */
.tem-footer { background: var(--ink); color: rgba(255,255,255,.6); margin-top: var(--s9); padding: var(--s7) 0 var(--s5); font-size: var(--t-xs); }
.tem-footer a { color: rgba(255,255,255,.78); transition: color .15s; }
.tem-footer a:hover { color: #fff; }
.tem-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s7); padding-bottom: var(--s6); border-bottom: 1px solid rgba(255,255,255,.1); }
.tem-footer h4 { font-size: var(--t-3xs); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--cream); margin-bottom: var(--s4); }
.tem-footer-brand .name { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 700; color: #fff; margin-bottom: var(--s2); letter-spacing: -.02em; }
.tem-footer-brand .name em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.42); }
.tem-footer-brand .tagline { font-family: var(--f-read); font-size: var(--t-xs); color: rgba(255,255,255,.52); margin-bottom: var(--s4); line-height: 1.6; max-width: 40ch; }
.tem-footer-links li { margin-bottom: 7px; }
.tem-footer-cities { font-size: var(--t-2xs); line-height: 1.85; }
.tem-footer-bottom { padding-top: var(--s5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s4); font-size: var(--t-2xs); color: rgba(255,255,255,.42); }
.tem-footer-bottom a { margin: 0 7px; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
  :root { --s7: 36px; --s8: 48px; --s9: 64px; }
  .tem-roller { grid-template-columns: repeat(3, 1fr); }
  .tem-spec-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tem-news-grid { grid-template-columns: repeat(2, 1fr); }
  .tem-videos-layout { grid-template-columns: 1fr; }
  .tem-hero { grid-template-columns: 1fr; }
  .tem-hero-thumbs { flex-direction: row; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
  .tem-hero-thumbs::-webkit-scrollbar { display: none; }
  .tem-hero-thumb { flex: 0 0 240px; }
  .tem-videos-side { grid-template-columns: repeat(4, 1fr); }
  .tem-itv-grid { grid-template-columns: repeat(2, 1fr); }
  .tem-guides-grid { grid-template-columns: repeat(2, 1fr); }
  .tem-filiation { grid-template-columns: 1fr; gap: var(--s5); }
  .tem-footer-grid { grid-template-columns: 1fr 1fr; }
  .tem-cta-search { grid-template-columns: 1fr; }
  .tem-cta-form { min-width: 0; }
  .tem-cta-actions { justify-content: flex-start; }
  .crit-layout, .article-layout { grid-template-columns: 1fr; gap: var(--s7); }
  .crit-sidebar { position: static; }
  .crit-grid { grid-template-columns: repeat(2, 1fr); }
  .article-corps { padding: var(--s6); }
  .sp-hero-grid { grid-template-columns: 200px minmax(0,1fr); gap: var(--s5); }
  .sp-generique-2col { columns: 1; }
  .sp-com { grid-template-columns: 1fr; gap: var(--s3); }
}
@media (max-width: 720px) {
  :root { --header-h: 100px; --s6: 24px; --s7: 28px; --s8: 36px; }
  .tem-header-top { gap: var(--s3); padding: 10px var(--s3); }
  .tem-header-right .tem-badge-soon { font-size: 9px; padding: 5px 9px; }
  .tem-logo-main { font-size: var(--t-l); }
  .tem-logo-sub { font-size: 8.5px; }
  .tem-nav-link { padding: 11px var(--s3); font-size: var(--t-3xs); }
  .tem-carousel { aspect-ratio: 4/5; }
  .tem-carousel-caption { padding: var(--s4); }
  .tem-carousel-title { font-size: var(--t-l); }
  .tem-carousel-sub { font-size: var(--t-s); }
  .tem-carousel-cta { margin-top: var(--s3); }
  .tem-carousel-dots { right: var(--s4); }
  .tem-roller, .tem-spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tem-news-grid, .tem-videos-side, .tem-itv-grid, .tem-guides-grid { grid-template-columns: 1fr; }
  .tem-stats { grid-template-columns: repeat(2, 1fr); }
  .tem-stat:nth-child(3) { border-left: 0; }
  .tem-stat:nth-child(n+3) { border-top: 1px solid var(--rule-soft); }
  .tem-stat-num { font-size: var(--t-xl); }
  .tem-filiation { padding: var(--s5); }
  .tem-filiation-vis { font-size: var(--t-l); }
  .tem-cta-search { padding: var(--s5) var(--s4); }
  .tem-cta-form { flex-direction: column; }
  .tem-cta-form select, .tem-cta-form button { width: 100%; }
  .tem-cta-btn { width: 100%; justify-content: center; white-space: normal; text-align: center; padding: 14px var(--s4); }
  .tem-footer-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .tem-section-head { flex-direction: column; align-items: flex-start; }
  .crit-grid { grid-template-columns: 1fr; }
  .crit-hero::before { font-size: 200px; right: -.06em; }
  .article-corps { padding: var(--s5) var(--s4); }
  .article-chapo { padding: var(--s5) var(--s4); }
  .sp-hero-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .sp-poster { width: 100%; max-width: 200px; }
  .sp-actions { flex-direction: column; align-items: stretch; }
  .sp-btn { justify-content: center; }
  .sp-crit { flex-direction: column; }
  .sp-crit-thumb { width: 100%; }
  .sp-notes { flex-direction: column; width: 100%; }
  .sp-note { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); width: 100%; }
  .sp-note:first-child { border-top: 0; }
  .sp-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: var(--s5) calc(-1 * var(--s4)) 0; padding: var(--s5) var(--s4) 0; }
  .sp-tabs::-webkit-scrollbar { display: none; }
  .sp-tour-row { flex-wrap: wrap; gap: var(--s3); padding: var(--s4); }
  .sp-tour-place { flex: 1 1 60%; }
  .sp-tour-cta, .sp-tour-state { flex: 1 1 100%; text-align: center; }
  .generique-row { flex-wrap: wrap; }
  .generique-k { max-width: 100%; }
  .generique-lead { display: none; }
  .generique-v { text-align: left; flex: 1 1 100%; }
  .sp-lie-block { flex-direction: column; }
  .sp-lie-affiche { width: 100%; max-width: 132px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}