/* ============================================================
   FITNESS MAG — PREMIUM DESIGN SYSTEM
   ------------------------------------------------------------
   Bibliothèque de composants réutilisables (namespace .pr-*).
   AUCUNE référence à un contenu précis : ces briques servent
   pour interview, podcast, téléchargement, livre, article premium...

   COMPOSANTS
     01. Tokens (:root)               .pr-scope
     02. Layout                       .pr-shell / .pr-grid / .pr-main / .pr-sidebar
     03. Header                       .pr-header / .pr-nav
     04. Breadcrumb                   .pr-crumb
     05. Hero                         .pr-hero
     06. Pill / Tag                   .pr-pill
     07. Meta line                    .pr-meta
     08. Share block                  .pr-share
     09. Section title                .pr-section
     10. Quote                        .pr-quote
     11. Callout                      .pr-callout
     12. Note                         .pr-note
     13. Card                         .pr-card
     14. Audio Player                 .pr-player
     15. Download Card                .pr-download
     16. Body typography              .pr-body
     17. Signature                    .pr-signature
     18. Article footer meta          .pr-artmeta
     19. Sidebar widgets              .pr-widget
     20. Buttons                      .pr-btn
     21. Footer                       .pr-footer
     22. Responsive
   ============================================================ */

/* ---------- 01. TOKENS ------------------------------------ */
/* Scopé sous .pr-scope pour ne jamais polluer le reste du site */
.pr-scope {
  --pr-bg:#0d0d0d;
  --pr-surface:#141414;
  --pr-surface-2:#1a1a1a;
  --pr-surface-3:#202020;
  --pr-border:rgba(255,255,255,.08);
  --pr-border-2:rgba(255,255,255,.14);

  --pr-red:#c0392b;
  --pr-red-2:#e74c3c;
  --pr-red-bg:rgba(192,57,43,.10);
  --pr-red-bd:rgba(192,57,43,.35);

  --pr-gold:#c9a227;
  --pr-gold-bd:rgba(201,162,39,.40);

  --pr-white:#ffffff;
  --pr-text:#e8e8e8;
  --pr-muted:rgba(255,255,255,.58);
  --pr-dim:rgba(255,255,255,.38);

  --pr-radius:10px;
  --pr-radius-sm:6px;
  --pr-gap:22px;
  --pr-t:200ms ease;

  --pr-impact:'Impact','Haettenschweiler','Arial Narrow Bold',sans-serif;
  --pr-sans:'Montserrat',system-ui,-apple-system,'Segoe UI',sans-serif;

  background:var(--pr-bg);
  color:var(--pr-text);
  font-family:var(--pr-sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.pr-scope *,
.pr-scope *::before,
.pr-scope *::after { box-sizing:border-box; }
.pr-scope img { max-width:100%; display:block; }
.pr-scope a { color:inherit; text-decoration:none; }

/* Titres Impact — TOUJOURS font-weight:400 (strokes propres) */
.pr-scope h1,.pr-scope h2,.pr-scope h3,
.pr-hero-title,.pr-section-title,.pr-widget-title {
  font-family:var(--pr-impact);
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:.5px;
  line-height:1.04;
  margin:0;
}

/* ---------- 02. LAYOUT ------------------------------------ */
.pr-shell { max-width:1240px; margin:0 auto; padding:0 24px; }
.pr-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:48px;
  padding:34px 0 90px;
}
.pr-main { min-width:0; }
.pr-sidebar { min-width:0; }

/* ---------- 03. HEADER ------------------------------------ */
.pr-header {
  background:linear-gradient(180deg,#161616 0%,#0f0f0f 100%);
  border-bottom:1px solid var(--pr-border);
}
.pr-header-bar {
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:20px 0 16px;
}
.pr-logo { display:flex; flex-direction:column; line-height:1; }
.pr-logo-name {
  font-family:var(--pr-impact); font-weight:400;
  font-size:30px; letter-spacing:1px; color:var(--pr-white);
}
.pr-logo-name b { color:var(--pr-red-2); font-weight:400; }
.pr-logo-sub {
  font-size:9.5px; letter-spacing:2.5px; color:var(--pr-dim);
  text-transform:uppercase; margin-top:5px;
}
.pr-header-actions { display:flex; align-items:center; gap:18px; }
.pr-header-search {
  width:20px; height:20px; opacity:.7; cursor:pointer; transition:opacity var(--pr-t);
}
.pr-header-search:hover { opacity:1; }

.pr-nav {
  display:flex; gap:30px; padding:14px 0;
  border-top:1px solid var(--pr-border);
  position:relative;
}
.pr-nav::after {
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:2px;
  background:linear-gradient(90deg,var(--pr-red) 0%,rgba(192,57,43,0) 60%);
}
.pr-nav a {
  font-size:12.5px; font-weight:700; letter-spacing:1.2px;
  text-transform:uppercase; color:var(--pr-muted);
  padding:4px 0; transition:color var(--pr-t); white-space:nowrap;
}
.pr-nav a:hover, .pr-nav a.is-active { color:var(--pr-white); }

/* ---------- 04. BREADCRUMB -------------------------------- */
.pr-crumb {
  padding:18px 0 0; font-size:12.5px; color:var(--pr-dim);
}
.pr-crumb a { color:var(--pr-red-2); }
.pr-crumb a:hover { color:var(--pr-white); }
.pr-crumb span { margin:0 8px; opacity:.5; }

/* ---------- 05. HERO -------------------------------------- */
/* .pr-hero : image à gauche + bloc titre à droite (colonne éditoriale) */
.pr-hero {
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:34px;
  align-items:start;
  padding:6px 0 30px;
  border-bottom:1px solid var(--pr-border);
  margin-bottom:30px;
}
/* Media wrapper : non-clippé, porte le halo ambiant qui déborde légèrement.
   L'habillage réel (bordure, radius, vignette, chip) vit sur .pr-hero-media-inner,
   clippé, pour ne pas déborder du cadre. */
.pr-hero-media {
  position:relative; z-index:0; aspect-ratio:1/1;
}
.pr-hero-media::before {
  content:""; position:absolute; inset:-14px; z-index:-1; border-radius:20px;
  background:radial-gradient(circle at 50% 40%, rgba(192,57,43,.30), transparent 70%);
  filter:blur(6px);
}
.pr-hero-media-inner {
  position:relative; width:100%; height:100%; overflow:hidden;
  border:2px solid var(--pr-gold-bd); border-radius:var(--pr-radius);
  background:var(--pr-surface-2);
  box-shadow:0 18px 40px -14px rgba(192,57,43,.5), 0 10px 26px rgba(0,0,0,.6);
}
.pr-hero-media-inner::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
}
.pr-hero-media img { width:100%; height:100%; object-fit:cover; display:block; }

.pr-hero-listen-chip {
  position:absolute; left:50%; bottom:10px; z-index:2;
  transform:translate(-50%,160%); opacity:0;
  font-family:var(--pr-sans); font-size:10.5px; font-weight:700; letter-spacing:.5px;
  text-transform:uppercase; color:#fff; background:var(--pr-red);
  padding:6px 13px; border-radius:20px; white-space:nowrap; text-decoration:none;
  transition:opacity .2s ease, transform .2s ease;
}
.pr-hero-media:hover .pr-hero-listen-chip,
.pr-hero-media:focus-within .pr-hero-listen-chip { opacity:1; transform:translate(-50%,0); }
.pr-hero-body { padding-top:4px; }
.pr-hero-title {
  font-size:44px; color:var(--pr-white); margin:14px 0 0;
}
/* Accent structurel : texte blanc + soulignement (le rouge reste l'accent
   plutôt qu'une masse de texte). Couleur inchangée (--pr-red-2, le rouge déjà en place). */
.pr-hero-title em {
  color:var(--pr-white); font-style:normal;
  border-bottom:5px solid var(--pr-red-2); padding-bottom:4px;
}
/* Style "couleur pleine" (option choisie dans l'admin, par article) : remplace
   le soulignement par un remplissage rouge, comme l'ancien style d'origine. */
.pr-hero-title em.pr-accent-color {
  color:var(--pr-red-2); border-bottom:none; padding-bottom:0;
}

/* Variante hero "large" (image bandeau pleine largeur) — réutilisable */
.pr-hero--wide { grid-template-columns:1fr; }
.pr-hero--wide .pr-hero-media { aspect-ratio:16/7; }

/* ---------- 06. PILL / TAG -------------------------------- */
.pr-pill {
  display:inline-block; font-size:11px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:6px 14px; border-radius:4px;
  background:var(--pr-red); color:var(--pr-white);
}
.pr-pill--ghost {
  background:var(--pr-red-bg); color:var(--pr-red-2);
  border:1px solid var(--pr-red-bd);
}
.pr-pill--gold { background:rgba(201,162,39,.14); color:var(--pr-gold); border:1px solid var(--pr-gold-bd); }

/* ---------- 07. META LINE --------------------------------- */
.pr-meta {
  display:flex; flex-wrap:wrap; align-items:center; gap:6px 4px;
  margin:16px 0 22px; font-size:13px; color:var(--pr-muted);
}
.pr-meta-item { display:inline-flex; align-items:center; gap:6px; }
.pr-meta-item svg { width:15px; height:15px; opacity:.7; }
.pr-meta-sep { opacity:.4; margin:0 6px; }

/* ---------- 08. SHARE BLOCK ------------------------------- */
.pr-share { display:flex; flex-wrap:wrap; gap:12px; }
.pr-share-btn {
  display:inline-flex; align-items:center; gap:9px;
  padding:11px 18px; border-radius:var(--pr-radius-sm);
  background:var(--pr-surface-2); border:1px solid var(--pr-border-2);
  color:var(--pr-text); font-size:13.5px; font-weight:600;
  cursor:pointer; transition:all var(--pr-t);
}
.pr-share-btn:hover { background:var(--pr-surface-3); border-color:var(--pr-border-2); transform:translateY(-1px); }
.pr-share-btn svg { width:16px; height:16px; }
.pr-share-btn--fb:hover   { border-color:#1877f2; }
.pr-share-btn--x:hover    { border-color:#fff; }

/* ---------- 09. SECTION TITLE ----------------------------- */
/* La barre rouge est portée par le TITRE lui-même (border-left), pas par
   un conteneur flex. Marche dans le wrapper .pr-section (renderer) ET en
   <h2> autonome inséré via CKEditor -> le texte qui suit reste un
   paragraphe normal EN DESSOUS (et non aligné à côté du titre). */
.pr-section { display:block; }
.pr-scope .pr-section-title {
  font-size:24px; color:var(--pr-white); line-height:1.15;
  margin:38px 0 20px; padding-left:16px;
  border-left:5px solid var(--pr-red);
}
.pr-section--gold .pr-section-title,
.pr-scope .pr-section-title--gold { border-left-color:var(--pr-gold); }

/* ---------- 10. QUOTE ------------------------------------- */
.pr-quote {
  position:relative;
  background:var(--pr-surface);
  border:1px solid var(--pr-border);
  border-radius:var(--pr-radius);
  padding:34px 34px 30px 66px;
  margin:26px 0;
  color:var(--pr-text);
}
.pr-quote::before {
  content:"\201C";
  position:absolute; left:20px; top:6px;
  font-family:Georgia,serif; font-size:74px; line-height:1;
  color:var(--pr-red); opacity:.9;
}
.pr-quote p { margin:0 0 12px; }
.pr-quote p:last-child { margin-bottom:0; }
.pr-quote em { color:var(--pr-muted); font-style:italic; }
.pr-quote--center { text-align:center; padding:40px 34px; }
.pr-quote--center::before { left:50%; transform:translateX(-50%); top:-4px; }

/* ---------- 11. CALLOUT ----------------------------------- */
/* Encadré mise en avant. C'est une LISTE (<ul class="pr-callout">) : dans
   CKEditor une double-Entrée sort proprement de l'encadré (le texte suivant
   passe DESSOUS, pas dedans). Compatible avec l'ancienne structure
   <div class="pr-callout"><ul>…</ul></div>. */
.pr-callout {
  list-style:none; margin:24px 0; padding:22px 26px;
  background:linear-gradient(180deg,rgba(192,57,43,.12),rgba(192,57,43,.05));
  border:1px solid var(--pr-red-bd); border-radius:var(--pr-radius);
}
.pr-callout ul { list-style:none; margin:0; padding:0; }
.pr-callout li {
  display:flex; align-items:flex-start; gap:12px;
  padding:7px 0; font-size:15px; color:var(--pr-text); line-height:1.55;
}
.pr-callout li .pr-callout-ico { flex:0 0 auto; font-size:16px; line-height:1.4; }
.pr-callout--gold { background:linear-gradient(180deg,rgba(201,162,39,.12),rgba(201,162,39,.04)); border-color:var(--pr-gold-bd); }

/* ---------- 12. NOTE -------------------------------------- */
.pr-note {
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-size:12.5px; color:var(--pr-dim); font-style:italic;
  text-align:center; margin:16px 0;
}
.pr-note svg { width:14px; height:14px; opacity:.6; }

/* ---------- 13. CARD -------------------------------------- */
.pr-card {
  background:var(--pr-surface);
  border:1px solid var(--pr-border);
  border-radius:var(--pr-radius);
  padding:24px;
  transition:border-color var(--pr-t), transform var(--pr-t);
}
.pr-card--hover:hover { border-color:var(--pr-gold-bd); transform:translateY(-2px); }

/* ---------- 14. AUDIO PLAYER ------------------------------ */
/* .pr-player : lecteur custom réutilisable. JS = premium.js */
.pr-player-list { display:flex; flex-direction:column; gap:16px; }
.pr-player {
  background:var(--pr-surface);
  border:1px solid var(--pr-border);
  border-radius:var(--pr-radius);
  padding:18px;
  display:grid;
  grid-template-columns:76px minmax(0,1fr);
  gap:18px;
  align-items:center;
}
.pr-player-cover {
  width:76px; height:76px; border-radius:var(--pr-radius-sm);
  object-fit:cover; border:1px solid var(--pr-border-2);
  background:var(--pr-surface-2);
}
.pr-player-body { min-width:0; }
.pr-player-head {
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  margin-bottom:12px;
}
.pr-player-title { font-size:15px; font-weight:600; color:var(--pr-white); }
.pr-player-dur { font-size:12.5px; color:var(--pr-dim); flex:0 0 auto; }

.pr-player-controls { display:flex; align-items:center; gap:14px; }
.pr-player-play {
  flex:0 0 auto; width:42px; height:42px; border-radius:50%;
  background:var(--pr-red); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background var(--pr-t), transform var(--pr-t);
}
.pr-player-play:hover { background:var(--pr-red-2); transform:scale(1.05); }
.pr-player-play svg { width:18px; height:18px; fill:#fff; }

.pr-player-time { font-size:12px; color:var(--pr-muted); font-variant-numeric:tabular-nums; min-width:34px; }

/* Slider premium (barre de lecture + volume) : ::before = piste visuelle fine,
   le conteneur a une zone cliquable plus grande (padding) pour un grab confortable
   (souris ET tactile), et une sphère (.pr-player-thumb) qu'on peut glisser. */
.pr-player-seek {
  flex:1 1 auto; position:relative; height:5px; padding:9px 0; box-sizing:content-box;
  cursor:pointer; touch-action:none;
}
.pr-player-seek::before {
  content:""; position:absolute; left:0; right:0; top:9px; bottom:9px;
  border-radius:3px; background:var(--pr-surface-3);
}
.pr-player-seek-fill {
  position:absolute; left:0; top:9px; bottom:9px; width:0%;
  background:var(--pr-red); border-radius:3px; pointer-events:none;
}
.pr-player-vol { display:flex; align-items:center; gap:8px; flex:0 0 auto; }
.pr-player-vol svg { width:18px; height:18px; opacity:.7; }
.pr-player-vol-bar {
  width:64px; position:relative; height:5px; padding:9px 0; box-sizing:content-box;
  cursor:pointer; touch-action:none;
}
.pr-player-vol-bar::before {
  content:""; position:absolute; left:0; right:0; top:9px; bottom:9px;
  border-radius:3px; background:var(--pr-surface-3);
}
.pr-player-vol-fill {
  position:absolute; left:0; top:9px; bottom:9px; width:80%;
  background:var(--pr-red); border-radius:3px; pointer-events:none;
}

/* La sphère : ajoutée dynamiquement en JS (premium.js -> makeSlider) */
.pr-player-thumb {
  position:absolute; top:50%; left:0%; width:13px; height:13px; border-radius:50%;
  background:var(--pr-red); transform:translate(-50%,-50%);
  box-shadow:0 0 0 4px rgba(192,57,43,.16), 0 2px 6px rgba(0,0,0,.5);
  transition:transform .15s ease, box-shadow .15s ease; pointer-events:none;
}
.pr-player-seek:hover .pr-player-thumb,
.pr-player-vol-bar:hover .pr-player-thumb {
  transform:translate(-50%,-50%) scale(1.2);
}
.pr-player-seek.is-dragging .pr-player-thumb,
.pr-player-vol-bar.is-dragging .pr-player-thumb {
  transform:translate(-50%,-50%) scale(1.35);
  box-shadow:0 0 0 6px rgba(192,57,43,.26), 0 2px 8px rgba(0,0,0,.6);
}

/* Footer piste : bouton télécharger + compteur */
.pr-player-foot {
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; margin-top:16px; flex-wrap:wrap;
}
.pr-dl-count { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--pr-muted); }
.pr-dl-count b { color:var(--pr-white); font-weight:700; }

/* petit toggle "oeil" (visibilité compteur, réutilisable) */
.pr-eye {
  display:inline-flex; align-items:center; gap:4px;
  background:var(--pr-surface-2); border:1px solid var(--pr-border-2);
  border-radius:20px; padding:3px; cursor:pointer;
}
.pr-eye span { width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:.4; }
.pr-eye span svg { width:14px; height:14px; }
.pr-eye.is-on  span.pr-eye-on  { background:var(--pr-red); opacity:1; }
.pr-eye.is-off span.pr-eye-off { background:var(--pr-surface-3); opacity:1; }

/* ---------- 15. DOWNLOAD CARD / BUTTON -------------------- */
.pr-download {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:var(--pr-red);
  font-size:13.5px; font-weight:700; letter-spacing:.5px;
  padding:12px 22px; border-radius:var(--pr-radius-sm);
  border:none; cursor:pointer; transition:background var(--pr-t), transform var(--pr-t);
}
/* Blanc + sans soulignement forcés en priorité : la section audio peut être
   placée dans .pr-body (via [[AUDIO]]) où `.pr-body a` mettrait sinon du
   rouge souligné sur le bouton rouge. */
.pr-scope a.pr-download,
.pr-scope .pr-download,
.pr-scope a.pr-download:hover { color:var(--pr-white); text-decoration:none; }
.pr-download:hover { background:var(--pr-red-2); transform:translateY(-1px); }
.pr-download svg { width:16px; height:16px; }
.pr-download--block { display:flex; width:100%; }

/* ---------- 16. BODY TYPOGRAPHY --------------------------- */
.pr-body { color:var(--pr-text); font-size:16px; }
.pr-body p { margin:0 0 16px; }
.pr-body a { color:var(--pr-red-2); text-decoration:underline; text-underline-offset:3px; }
.pr-body strong, .pr-body b { color:var(--pr-white); }
.pr-body h2 { font-size:22px; color:var(--pr-white); margin:32px 0 14px; }
.pr-body h3 { font-size:18px; color:var(--pr-white); margin:26px 0 12px; }
.pr-body ul, .pr-body ol { margin:0 0 16px; padding-left:22px; }
.pr-body li { margin:6px 0; }
.pr-lead { font-size:18px; color:var(--pr-white); line-height:1.7; margin:0 0 20px; }

/* ---------- 17. SIGNATURE --------------------------------- */
.pr-signature { text-align:center; margin-top:14px; }
.pr-signature-tagline,
.pr-body .pr-signature-tagline {
  font-family:var(--pr-impact); font-weight:400; text-transform:uppercase;
  color:var(--pr-red-2); font-size:20px; letter-spacing:1px; line-height:1.35; margin:18px 0 6px;
}
.pr-signature-tagline b, .pr-signature-tagline strong { color:var(--pr-white); font-weight:400; }
.pr-signature-name,
.pr-body .pr-signature-name { font-style:italic; color:var(--pr-muted); font-size:15px; margin:12px 0 2px; }
.pr-signature-role,
.pr-body .pr-signature-role { font-size:12px; color:var(--pr-dim); margin:0 0 2px; }

/* ---------- 18. ARTICLE FOOTER META ----------------------- */
.pr-artmeta {
  margin-top:34px; padding-top:20px; border-top:1px solid var(--pr-border);
  font-size:12.5px; color:var(--pr-dim); line-height:1.9;
}
.pr-artmeta b { color:var(--pr-muted); font-weight:600; }
.pr-artmeta a { color:var(--pr-red-2); }

/* ---------- 19. SIDEBAR WIDGETS --------------------------- */
.pr-sidebar { display:flex; flex-direction:column; gap:var(--pr-gap); }
.pr-widget {
  background:var(--pr-surface);
  border:1px solid var(--pr-border);
  border-radius:var(--pr-radius);
  padding:22px;
}
.pr-widget-title { font-size:17px; color:var(--pr-white); margin-bottom:16px; }
.pr-widget-title b { color:var(--pr-red-2); font-weight:400; }
.pr-widget-title.is-blue b { color:#5b9bff; }

.pr-widget-support { display:flex; gap:16px; align-items:center; }
.pr-widget-cover {
  width:96px; flex:0 0 auto; border-radius:6px; overflow:hidden;
  border:1px solid var(--pr-border-2);
}
.pr-widget-support-txt { font-size:12.5px; color:var(--pr-muted); }
.pr-widget-support-txt strong { display:block; font-family:var(--pr-impact); font-weight:400; text-transform:uppercase; color:var(--pr-red-2); font-size:19px; margin:2px 0 12px; letter-spacing:.5px; }

.pr-covers { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-bottom:16px; }
.pr-covers img { border-radius:4px; border:1px solid var(--pr-border-2); }

.pr-nl { }
.pr-nl p { font-size:12.5px; color:var(--pr-muted); margin:0 0 14px; }
.pr-nl-form { display:flex; gap:8px; }
.pr-nl-form input {
  flex:1 1 auto; min-width:0; background:var(--pr-surface-2);
  border:1px solid var(--pr-border-2); border-radius:var(--pr-radius-sm);
  padding:11px 12px; color:var(--pr-text); font-size:13px; font-family:inherit;
}
.pr-nl-form input::placeholder { color:var(--pr-dim); }
.pr-nl-form button {
  flex:0 0 auto; width:46px; background:var(--pr-red); border:none;
  border-radius:var(--pr-radius-sm); color:#fff; font-size:22px; cursor:pointer;
  transition:background var(--pr-t);
}
.pr-nl-form button:hover { background:var(--pr-red-2); }

/* bannière partenaire (statique pour l'instant) */
.pr-widget--banner { padding:0; overflow:hidden; }
.pr-widget--banner img { width:100%; }

.pr-widget-yt { text-align:left; }
.pr-widget-yt-row { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.pr-widget-yt-row .pr-yt-ico { width:34px; height:24px; background:var(--pr-red); border-radius:5px; display:flex; align-items:center; justify-content:center; }
.pr-widget-yt-row .pr-yt-ico svg { width:16px; height:16px; fill:#fff; }
.pr-widget-yt p { font-size:12.5px; color:var(--pr-muted); margin:0 0 14px; }

/* ---------- 20. BUTTONS ----------------------------------- */
.pr-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--pr-sans); font-size:12px; font-weight:700;
  letter-spacing:1px; text-transform:uppercase;
  padding:11px 20px; border-radius:var(--pr-radius-sm);
  cursor:pointer; border:1px solid transparent; transition:all var(--pr-t);
}
.pr-btn--red { background:var(--pr-red); color:#fff; }
.pr-btn--red:hover { background:var(--pr-red-2); }
.pr-btn--ghost { background:transparent; border-color:var(--pr-border-2); color:var(--pr-text); }
.pr-btn--ghost:hover { border-color:var(--pr-white); }
.pr-btn--block { display:flex; width:100%; }

/* ---------- 21. FOOTER ------------------------------------ */
.pr-footer {
  background:#0a0a0a; border-top:1px solid var(--pr-border);
  padding:40px 0; margin-top:40px;
  font-size:12.5px; color:var(--pr-dim); text-align:center;
}
.pr-footer a { color:var(--pr-muted); }
.pr-footer a:hover { color:var(--pr-white); }

/* ---------- 21b. FAQ (accordéon) -------------------------- */
/* Réutilise la donnée faqART existante — composant réutilisable. */
.pr-faq { display:flex; flex-direction:column; gap:10px; margin:20px 0; }
.pr-faq-item {
  background:var(--pr-surface); border:1px solid var(--pr-border);
  border-radius:var(--pr-radius); overflow:hidden;
}
.pr-faq-q {
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:16px 20px; cursor:pointer; color:var(--pr-white);
  font-size:15px; font-weight:600; transition:background var(--pr-t);
}
.pr-faq-q:hover { background:var(--pr-surface-2); }
.pr-faq-q .pr-faq-num { color:var(--pr-red-2); margin-right:8px; }
.pr-faq-q .pr-faq-plus { flex:0 0 auto; color:var(--pr-red-2); font-size:22px; line-height:1; transition:transform var(--pr-t); }
.pr-faq-item.is-open .pr-faq-plus { transform:rotate(45deg); }
.pr-faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.pr-faq-a-inner { padding:0 20px 18px; color:var(--pr-muted); line-height:1.7; }

/* ---------- 21c. ADMIN QUICK EDIT (flottant, admin only) -- */
/* Raccourci retour édition, visible seulement si admin connecté. */
.pr-admin-edit {
  position:fixed; right:22px; bottom:22px; z-index:9999;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--pr-red); color:#fff !important;
  font-family:var(--pr-sans); font-size:13px; font-weight:700;
  letter-spacing:.5px; text-transform:uppercase;
  padding:12px 18px; border-radius:40px;
  box-shadow:0 6px 22px rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.15);
  transition:transform var(--pr-t), background var(--pr-t);
}
.pr-admin-edit:hover { background:var(--pr-red-2); transform:translateY(-2px); }
.pr-admin-edit svg { width:16px; height:16px; }
@media print { .pr-admin-edit { display:none; } }

/* ---------- 21d. MODALE MAGAZINE (viewer officiel) -------- */
/* Réutilise le HTML de includes/ajax.viewmagazine.php (mêmes liens
   relatifs -> player3.php en self). On ne fait que l'habiller. */
.pr-mag-modal { position:fixed; inset:0; z-index:10000; display:none; }
.pr-mag-modal.open { display:block; }
.pr-mag-overlay { position:absolute; inset:0; background:rgba(0,0,0,.82); }
.pr-mag-box {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:min(92vw,560px); max-height:92vh; overflow:auto;
  background:#0d0d0d; border:1px solid var(--pr-border-2);
  border-radius:12px; box-shadow:0 24px 70px rgba(0,0,0,.65);
}
/* contenu injecté (classes historiques) */
.pr-mag-box .close { position:absolute; top:10px; right:12px; z-index:2; cursor:pointer; line-height:0; }
.pr-mag-box .close img { width:26px; height:auto; }
.pr-mag-box .viewtools {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 48px 14px 18px; background:#141414; border-bottom:1px solid var(--pr-border);
}
.pr-mag-box .viewtools h3 {
  font-family:var(--pr-sans); font-weight:700; font-size:14px; color:#fff;
  text-transform:none; letter-spacing:0; margin:0; line-height:1.3;
}
.pr-mag-box .viewtools ul { display:flex; gap:10px; align-items:center; list-style:none; margin:0; padding:0; }
.pr-mag-box .viewtools ul img { height:26px; width:auto; display:block; }
.pr-mag-box > img { display:block; width:100%; }

/* ---------- 21e. ICONS (SVG inline, réutilisables) --------- */
.pr-ico-music { width:22px; height:22px; vertical-align:-5px; margin-right:6px; stroke:var(--pr-red); }

/* ---------- 22. RESPONSIVE -------------------------------- */
@media (max-width:960px){
  .pr-grid { grid-template-columns:1fr; gap:34px; }
  .pr-hero { grid-template-columns:200px minmax(0,1fr); gap:22px; }
  .pr-hero-title { font-size:34px; }
  .pr-nav { gap:18px; overflow-x:auto; -webkit-overflow-scrolling:touch; }
}
@media (max-width:600px){
  .pr-shell { padding:0 16px; }
  .pr-hero { grid-template-columns:1fr; }
  .pr-hero-media { max-width:220px; }
  .pr-hero-title { font-size:30px; }
  .pr-player { grid-template-columns:1fr; }
  .pr-player-cover { width:60px; height:60px; }
  .pr-player-vol { display:none; }
  .pr-header-bar { flex-wrap:wrap; }
}
