﻿
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-root: #020c1b;
            --bg-dark: #071224;
            --bg-card: rgba(11, 27, 62, 0.94);
            --b900: #1e3a5f;
            --b700: #1d4ed8;
            --b600: #2563eb;
            --b500: #3b82f6;
            --b400: #60a5fa;
            --b300: #93c5fd;
            --b200: #bfdbfe;
            --sky: #38bdf8;
            --txt: #e2e8f0;
            --txt2: #94a3b8;
            --txt3: #64748b;
            --bdr: rgba(59, 130, 246, .28);
            --bdrh: rgba(59, 130, 246, .52);
            --shd: 0 4px 48px rgba(0, 0, 0, .65);
            --glow: 0 0 36px rgba(37, 99, 235, .18);
        }

        html {
            scroll-behavior: auto;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg-root);
            color: var(--txt);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.65;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           BARRE DE PROGRESSION
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        #read-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #2563eb 0%, #4ade80 100%);
            z-index: 9999;
            transition: width .08s linear;
            pointer-events: none;
        }

        html.light #read-progress {
            background: linear-gradient(90deg, #1d4ed8 0%, #15803d 100%);
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           FOND ANIMÉ
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .bg-canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            contain: layout style paint;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(72px);
            animation: drift linear infinite;
        }

        .blob-1 {
            width: 700px; height: 700px;
            background: radial-gradient(circle, #1d4ed8 0%, transparent 68%);
            top: -180px; left: -200px;
            opacity: .055; animation-duration: 40s;
        }

        .blob-2 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, #38bdf8 0%, transparent 68%);
            top: 18%; right: -120px;
            opacity: .045; animation-duration: 32s; animation-delay: -11s;
        }

        .blob-3 {
            width: 420px; height: 420px;
            background: radial-gradient(circle, #3b82f6 0%, transparent 68%);
            top: 52%; left: 38%;
            opacity: .04; animation-duration: 50s; animation-delay: -22s;
        }

        .blob-4 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, #1e3a5f 0%, transparent 68%);
            bottom: 5%; right: 15%;
            opacity: .06; animation-duration: 45s; animation-delay: -7s;
        }

        .blob-5 {
            width: 320px; height: 320px;
            background: radial-gradient(circle, #0ea5e9 0%, transparent 68%);
            bottom: -60px; left: 8%;
            opacity: .04; animation-duration: 28s; animation-delay: -18s;
        }

        .geo {
            position: absolute;
            opacity: .022;
            filter: blur(44px);
            animation: driftGeo linear infinite;
        }

        .geo-1 {
            width: 340px; height: 340px;
            background: linear-gradient(135deg, #2563eb, #38bdf8);
            top: 14%; right: 28%;
            border-radius: 22px;
            animation-duration: 52s; animation-delay: -9s;
        }

        .geo-2 {
            width: 200px; height: 200px;
            background: linear-gradient(45deg, #3b82f6, transparent);
            top: 66%; left: 55%;
            border-radius: 18px; opacity: .03;
            animation-duration: 23s; animation-delay: -4s;
        }

        .geo-3 {
            width: 160px; height: 160px;
            background: linear-gradient(90deg, #0ea5e9, #1d4ed8);
            top: 80%; left: 20%;
            border-radius: 14px;
            animation-duration: 30s; animation-delay: -14s;
        }

        @keyframes drift {
            0%   { transform: translateY(0) translateX(0) rotate(0deg); }
            25%  { transform: translateY(-28px) translateX(18px) rotate(90deg); }
            50%  { transform: translateY(-14px) translateX(-10px) rotate(180deg); }
            75%  { transform: translateY(-36px) translateX(22px) rotate(270deg); }
            100% { transform: translateY(0) translateX(0) rotate(360deg); }
        }

        @keyframes driftGeo {
            0%   { transform: rotate(0deg) scale(1); }
            33%  { transform: rotate(120deg) scale(1.08); }
            66%  { transform: rotate(240deg) scale(0.95); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @media (max-width: 768px) {
            .blob, .geo { display: none; }
            .bg-grid { background-image: none; }
            .card {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
            }
        }

        .blob, .geo { will-change: transform; }

        .card:not(.modal-box) { contain: style; }

        @media (prefers-reduced-motion: reduce) {
            .blob, .geo { animation: none !important; will-change: auto; }
            .card { transition: none !important; }
        }

        .bg-grid {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(59, 130, 246, .028) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, .028) 1px, transparent 1px);
            background-size: 64px 64px;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           LAYOUT
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .wrap {
            position: relative;
            z-index: 1;
            max-width: 1800px;
            margin: 0 auto;
            padding: 32px 48px 28px;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           CARTES
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .card {
            background: var(--bg-card);
            border: 1px solid var(--bdr);
            border-radius: 18px;
            padding: 36px 40px;
            margin-bottom: 22px;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: var(--shd), var(--glow);
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .55s cubic-bezier(.4,0,.2,1),
                        transform .55s cubic-bezier(.4,0,.2,1),
                        border-color .3s, box-shadow .3s;
        }

        .card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card:hover {
            border-color: var(--bdrh);
            box-shadow: var(--shd), 0 0 48px rgba(37,99,235,.2);
        }

        html.light .card:hover {
            box-shadow: var(--shd), 0 0 20px rgba(37,99,235,.07);
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           BARRE DE NAVIGATION
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        /* scroll-margin-top : fallback CSS pour la navigation native par ancres */
        section[id], aside[id], article[id] {
            scroll-margin-top: 60px;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 24px;
            background: rgb(2, 12, 27);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--bdr);
        }

        .topbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            text-decoration: none;
            color: var(--b400);
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            white-space: nowrap;
            background: rgba(59,130,246,.1);
            border: 1px solid rgba(59,130,246,.3);
            padding: 4px 12px;
            border-radius: 999px;
            flex-shrink: 0;
            transition: opacity .28s, transform .28s;
        }

        .topbar-brand i {
            color: inherit;
            font-size: .72rem;
        }

        /* Indicateur section — desktop */
        #topbar-section {
            flex: 1;
            min-width: 0;
            text-align: center;
            font-size: .8rem;
            font-weight: 500;
            color: var(--txt3);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 0 16px;
            letter-spacing: .02em;
            opacity: 0;
            transform: translateY(-5px);
            transition: opacity .3s, transform .3s;
            pointer-events: none;
        }
        #topbar-section.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* Mobile : superposé sur le brand, titres sur 2 lignes */
        @media (max-width: 640px) {
            #topbar-section {
                position: absolute;
                left: 24px;
                top: 0; bottom: 0;
                display: flex;
                align-items: center;
                text-align: left;
                padding: 0;
                flex: none;
                max-width: calc(100% - 96px);
                transform: translateX(-8px);
                white-space: normal;
                font-size: .75rem;
                line-height: 1.25;
            }
            #topbar-section.visible { transform: translateX(0); }
            /* Efface le brand quand la section est active */
            .topbar-brand.tb-faded {
                opacity: 0;
                pointer-events: none;
                transform: translateX(-8px);
            }
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .theme-label {
            font-size: .72rem;
            color: var(--txt3);
            letter-spacing: .04em;
            white-space: nowrap;
            user-select: none;
        }

        @media (max-width: 640px) {
            .theme-label { display: none; }
        }

        .theme-toggle {
            background: rgba(59,130,246,.08);
            border: 1px solid var(--bdr);
            border-radius: 50%;
            width: 36px; height: 36px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            color: var(--b400);
            font-size: .9rem;
            transition: background .2s, border-color .2s, transform .2s;
        }

        .theme-toggle:hover {
            background: rgba(37,99,235,.3);
            border-color: var(--bdrh);
            transform: scale(1.1) rotate(15deg);
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           MODE CLAIR
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        html.light {
            --bg-root: #eef2ff;
            --bg-dark: #dde6ff;
            --bg-card: rgba(255, 255, 255, 0.88);
            --b300: #1d4ed8;
            --b400: #2563eb;
            --b200: #1e3a8a;
            --sky: #0369a1;
            --txt: #1e293b;
            --txt2: #334155;
            --txt3: #64748b;
            --bdr: rgba(37,99,235,.22);
            --bdrh: rgba(37,99,235,.45);
            --shd: 0 4px 32px rgba(30,58,138,.12);
            --glow: 0 0 28px rgba(37,99,235,.08);
        }

        html.light body { background: var(--bg-root); }

        /* ── Bouton retour en haut ── */
        #back-to-top {
            position: fixed;
            bottom: 80px;
            right: 24px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(37, 99, 235, .85);
            border: 1px solid rgba(96, 165, 250, .35);
            color: #fff;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 90;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(37, 99, 235, .4);
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .25s, transform .25s, background .2s;
            pointer-events: none;
        }
        #back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        #back-to-top:hover {
            background: rgba(37, 99, 235, 1);
            box-shadow: 0 6px 28px rgba(37, 99, 235, .6);
        }
        html.light #back-to-top {
            background: rgba(37, 99, 235, .9);
            border-color: rgba(37, 99, 235, .4);
            box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
        }

        /* ── Bouton de recherche dans la page ── */
        #page-search-btn {
            position: fixed;
            bottom: 28px;
            right: 24px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(37, 99, 235, .85);
            border: 1px solid rgba(96, 165, 250, .35);
            color: #fff;
            font-size: .95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 90;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(37, 99, 235, .4);
            transition: background .2s, box-shadow .2s;
        }
        #page-search-btn:hover {
            background: rgba(37, 99, 235, 1);
            box-shadow: 0 6px 28px rgba(37, 99, 235, .6);
        }
        html.light #page-search-btn {
            background: rgba(37, 99, 235, .9);
            border-color: rgba(37, 99, 235, .4);
            box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
        }

        /* ── Overlay de recherche ── */
        #page-search-panel {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(2, 8, 23, .78);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 91;
            opacity: 0;
            pointer-events: none;
            transition: opacity .25s;
        }
        html.light #page-search-panel { background: rgba(15, 30, 80, .38); }
        #page-search-panel.open { opacity: 1; pointer-events: auto; }

        /* ── Conteneur transparent — barre et résultats séparés ── */
        .ps-box {
            width: 600px;
            max-width: calc(100vw - 32px);
            max-height: calc(100vh - 80px);
            background: transparent;
            border: none;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            overflow: visible;
            transform: translateY(-22px) scale(.95);
            transition: transform .28s cubic-bezier(.34,1.26,.64,1);
        }
        #page-search-panel.open .ps-box { transform: translateY(0) scale(1); }

        /* ── Barre de recherche pill — s'adapte au thème ── */
        .ps-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 0 22px;
            height: 62px;
            flex-shrink: 0;
            background: rgba(15, 23, 48, .97);
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(96,165,250,.2);
        }
        html.light .ps-header {
            background: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,.12), 0 0 0 1px rgba(37,99,235,.18);
        }
        .ps-icon { color: rgba(148,163,184,.9); font-size: 1rem; flex-shrink: 0; line-height: 1; }
        html.light .ps-icon { color: rgba(71,85,105,.8); }

        #page-search-input {
            -webkit-appearance: none;
            appearance: none;
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            font-size: 1.02rem;
            font-weight: 500;
            color: #e2e8f0;
            min-width: 0;
            caret-color: #60a5fa;
            padding: 6px 0;
            margin: 0;
            align-self: center;
        }
        html.light #page-search-input { color: #1e293b; caret-color: #2563eb; }
        #page-search-input::placeholder { color: rgba(148,163,184,.65); font-weight: 400; }
        html.light #page-search-input::placeholder { color: rgba(100,116,139,.6); }

        /* ── Bouton fermer ── */
        .ps-close {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.14);
            color: rgba(148,163,184,.9);
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            position: relative;
            padding: 0;
            flex-shrink: 0;
            transition: background .15s, border-color .15s, color .15s;
        }
        html.light .ps-close { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); color: rgba(71,85,105,.8); }
        .ps-close i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: .75rem;
            line-height: 1;
            pointer-events: none;
        }
        .ps-close:hover { background: rgba(239,68,68,.35); border-color: rgba(239,68,68,.45); color: #fca5a5; }
        html.light .ps-close:hover { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.3); color: #dc2626; }

        /* ── Carte résultats — séparée, cachée si vide ── */
        #page-search-results {
            overflow-y: auto;
            max-height: min(420px, calc(100vh - 200px));
            padding: 0 0 8px;
            background: var(--bg-card);
            border: 1px solid rgba(37, 99, 235, .4);
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(37,99,235,.1);
        }
        html.light #page-search-results {
            background: #fff;
            border-color: rgba(37,99,235,.25);
            box-shadow: 0 8px 28px rgba(37,99,235,.15);
        }
        #page-search-results:empty { display: none; }
        #page-search-results::-webkit-scrollbar { width: 4px; }
        #page-search-results::-webkit-scrollbar-track { background: transparent; }
        #page-search-results::-webkit-scrollbar-thumb { background: var(--bdr); border-radius: 2px; }

        .ps-count {
            padding: 8px 18px;
            font-size: .73rem;
            font-weight: 500;
            color: var(--txt3);
            border-bottom: 1px solid var(--bdr);
            letter-spacing: .03em;
            text-transform: uppercase;
        }
        .ps-result {
            padding: 11px 18px;
            cursor: pointer;
            border-bottom: 1px solid var(--bdr);
            transition: background .12s;
        }
        .ps-result:last-child { border-bottom: none; }
        .ps-result:hover { background: rgba(37, 99, 235, .08); }
        .ps-result--heading { border-left: 3px solid var(--bdrh); padding-left: 15px; }
        .ps-result-title {
            font-size: .72rem;
            font-weight: 500;
            color: var(--txt3);
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            letter-spacing: .02em;
        }
        .ps-result-snippet { font-size: .83rem; color: var(--txt2); line-height: 1.55; }
        .ps-result--heading .ps-result-snippet { font-weight: 600; font-size: .86rem; color: var(--txt); }
        .ps-result-snippet mark { background: rgba(250,204,21,.3); color: inherit; border-radius: 2px; padding: 0 1px; }
        .ps-badge {
            display: inline-block;
            margin-left: 6px;
            font-size: .68rem;
            font-weight: 600;
            padding: 1px 6px;
            border-radius: 10px;
            background: rgba(37, 99, 235, .18);
            color: var(--txt3);
            vertical-align: middle;
            letter-spacing: .02em;
        }
        mark.search-hl {
            background: rgba(250, 204, 21, .32);
            color: inherit;
            border-radius: 2px;
            padding: 0 1px;
        }
        mark.search-hl.active {
            background: rgba(250, 204, 21, .72);
            outline: 2px solid rgba(250, 204, 21, .5);
            border-radius: 2px;
        }
        /* Flash jaune sur le bloc cible après navigation */
        @keyframes ps-flash {
            0%   { background-color: rgba(250, 204, 21, .45); box-shadow: 0 0 0 6px rgba(250, 204, 21, .35); }
            40%  { background-color: rgba(250, 204, 21, .35); box-shadow: 0 0 0 6px rgba(250, 204, 21, .25); }
            80%  { background-color: rgba(250, 204, 21, .12); box-shadow: 0 0 0 6px rgba(250, 204, 21, .06); }
            100% { background-color: transparent;             box-shadow: 0 0 0 6px transparent; }
        }
        .ps-flash { animation: ps-flash 4s ease-out forwards; border-radius: 4px; }
        /* Désactivé sur mobile — retour en haut reprend sa position basse */
        @media (max-width: 767px) {
            #page-search-btn, #page-search-panel { display: none !important; }
            #back-to-top { bottom: 28px; }
        }

        html.light .topbar {
            background: rgb(238,242,255);
            border-bottom-color: var(--bdr);
        }

        html.light .bg-grid {
            background-image:
                linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           EN-TÊTE ARTICLE
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .article-header {
            background: linear-gradient(135deg, rgba(14,36,90,.98) 0%, rgba(20,50,120,.95) 100%);
            border-color: rgba(59,130,246,.6);
            box-shadow: 0 4px 48px rgba(0,0,0,.65), 0 0 60px rgba(37,99,235,.35);
            text-align: center;
            padding: 48px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        .article-header .header-photo {
            opacity: .52;
        }

        html.light .article-header {
            background: linear-gradient(135deg, rgba(219,234,254,.95) 0%, rgba(196,219,254,.9) 100%);
            border-color: rgba(37,99,235,.25);
            box-shadow: 0 4px 16px rgba(30,58,138,.1);
        }

        .header-photo {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: auto;
            max-width: 45%;
            object-fit: cover;
            pointer-events: none;
            opacity: .38;
            -webkit-mask-image: linear-gradient(to right, black 40%, transparent 90%);
            mask-image: linear-gradient(to right, black 40%, transparent 90%);
            z-index: 0;
        }

        .header-photo.header-photo-right {
            left: auto;
            right: 0;
            -webkit-mask-image: linear-gradient(to left, black 40%, transparent 90%);
            mask-image: linear-gradient(to left, black 40%, transparent 90%);
        }

        .article-header > *:not(.header-photo) { position: relative; z-index: 1; }

        @media (max-width: 640px) {
            .header-photo { display: none; }
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           PHOTOS PRESSE
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .press-photo-wrap {
            display: flex;
            flex-direction: column;
            gap: 7px;
            width: 260px;
            flex-shrink: 0;
        }

        .press-photo-wrap.float-left {
            float: left;
            margin: 4px 20px 12px 0;
        }

        .press-photo-wrap.float-right {
            float: right;
            width: 320px;
            margin: -24px 0 12px 20px;
        }

        .press-photo-wrap img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            border: 1px solid var(--bdr);
        }

        .article-link {
            color: var(--b400);
            text-decoration: none;
            border-bottom: 1px solid rgba(96, 165, 250, .35);
            transition: color .2s, border-color .2s;
        }

        .article-link:hover {
            color: var(--b300);
            border-bottom-color: var(--b400);
        }

        html.light .article-link { color: var(--b300); }
        html.light .article-link:hover { color: var(--b200); }

        .press-photo-caption {
            font-size: .72rem;
            color: var(--txt3);
            font-style: italic;
            line-height: 1.4;
            text-align: center;
        }

        .clearfix::after {
            content: '';
            display: table;
            clear: both;
        }

        .clearfix + h3 {
            margin-top: 2px;
        }

        .clearfix p {
            margin-bottom: 10px;
        }

        .clearfix blockquote {
            overflow: hidden;
        }

        .press-photo-wrap.screenshot {
            width: 260px;
            border: 2px solid rgba(59,130,246,.65);
            border-radius: 16px;
            background: rgba(37,99,235,.09);
            padding: 8px;
            transform: rotate(2.5deg);
            transform-origin: top right;
            box-shadow: 0 6px 32px rgba(37,99,235,.28);
            margin-bottom: 24px;
        }

        .press-photo-wrap.float-left.screenshot {
            transform: rotate(-2.5deg);
            transform-origin: top left;
            margin-right: 36px;
        }

        .press-photo-wrap.screenshot img {
            border-radius: 10px;
        }

        html.light .press-photo-wrap.screenshot {
            border-color: rgba(37,99,235,.45);
            background: rgba(37,99,235,.05);
            box-shadow: 0 6px 24px rgba(37,99,235,.12);
        }

        @media (max-width: 640px) {
            .press-photo-wrap,
            .press-photo-wrap.float-left,
            .press-photo-wrap.float-right {
                float: none;
                width: 100%;
                margin: 16px 0;
            }

            .photo-below-mobile {
                display: flex;
                flex-direction: column;
            }
            .photo-below-mobile .press-photo-wrap { order: 1; }
            .photo-below-mobile > :nth-child(n+5)  { order: 2; }

            .photo-indemnisation-mobile {
                display: flex;
                flex-direction: column;
            }
            .photo-indemnisation-mobile .press-photo-wrap { order: 1; }
            .photo-indemnisation-mobile > :nth-child(n+4) { order: 2; }

            .press-photo-wrap.screenshot,
            .press-photo-wrap.float-left.screenshot {
                transform: none;
                margin-top: 0 !important;
                margin-right: 0 !important;
            }

            .photo-end-mobile {
                display: flex;
                flex-direction: column;
            }
            .photo-end-mobile .press-photo-wrap { order: 10; }

            .photo-after-p1-mobile {
                display: flex;
                flex-direction: column;
            }
            .photo-after-p1-mobile .press-photo-wrap { order: 2; }
            .photo-after-p1-mobile > :nth-child(2) { order: 1; }
            .photo-after-p1-mobile > :nth-child(n+3) { order: 3; }

            /* Photo audience : apparaît après "Pendant sa plaidoirie" sur mobile */
            .audience-clearfix {
                display: flex;
                flex-direction: column;
            }
            .audience-clearfix > figure.float-right { order: 6; margin-top: 0 !important; }
            .audience-clearfix > p:last-child       { order: 7; }

            /* Image usurpation : pleine largeur sur mobile */
            .verdict-block .press-photo-wrap {
                width: 100% !important;
                margin: 4px 0 16px !important;
                align-self: stretch;
            }
        }

        .article-category {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: .72rem;
            font-weight: 700;
            color: var(--b400);
            background: rgba(59,130,246,.1);
            border: 1px solid rgba(59,130,246,.3);
            padding: 5px 14px;
            border-radius: 999px;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .article-title {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.03em;
            line-height: 1.15;
            margin-bottom: 14px;
        }

        html.light .article-title { color: #1e293b; }


        .article-title-sup {
            display: block;
            font-size: clamp(1.1rem, 3vw, 1.6rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
            margin-bottom: 6px;
            opacity: .75;
        }

        html.light .article-title-sup { color: #1e293b; }



        .article-subtitle {
            font-size: 1rem;
            color: var(--txt2);
            font-style: italic;
            margin-bottom: 24px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            font-size: .82rem;
            color: var(--txt2);
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .article-meta i { color: var(--b400); font-size: .78rem; }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           BADGE RÉSULTAT
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .verdict-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .82rem;
            font-weight: 700;
            color: #4ade80;
            background: rgba(34,197,94,.12);
            border: 1px solid rgba(34,197,94,.3);
            padding: 7px 18px;
            border-radius: 999px;
            margin-top: 20px;
            text-decoration: none;
            cursor: pointer;
            transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .12s ease;
        }

        .verdict-badge:hover {
            background: rgba(34,197,94,.22);
            border-color: rgba(34,197,94,.65);
            box-shadow: 0 0 14px rgba(34,197,94,.25);
            transform: translateY(-1px);
        }

        .verdict-badge:active {
            background: rgba(34,197,94,.32);
            border-color: rgba(34,197,94,.9);
            box-shadow: 0 0 6px rgba(34,197,94,.2);
            transform: translateY(0);
        }

        html.light .verdict-badge {
            color: #15803d;
            background: rgba(21,128,61,.10);
            border-color: rgba(21,128,61,.35);
        }

        html.light .verdict-badge:hover {
            background: rgba(21,128,61,.20);
            border-color: rgba(21,128,61,.7);
            box-shadow: 0 0 14px rgba(21,128,61,.2);
            transform: translateY(-1px);
        }

        html.light .verdict-badge:active {
            background: rgba(21,128,61,.30);
            border-color: rgba(21,128,61,.95);
            box-shadow: 0 0 6px rgba(21,128,61,.15);
            transform: translateY(0);
        }

        .badges-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .badges-row .verdict-badge { margin-top: 0; }

        .lawyer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .72rem;
            font-weight: 700;
            color: #cbd5e1;
            background: rgba(148,163,184,.22);
            border: 1px solid rgba(148,163,184,.55);
            padding: 5px 13px;
            border-radius: 999px;
            text-decoration: none;
            transition: background .2s, border-color .2s, color .2s;
        }

        .lawyer-badge:hover {
            background: rgba(148,163,184,.35);
            border-color: rgba(148,163,184,.8);
            color: #f1f5f9;
        }

        html.light .lawyer-badge {
            color: #475569;
            background: rgba(71,85,105,.08);
            border-color: rgba(71,85,105,.28);
        }

        html.light .lawyer-badge:hover {
            background: rgba(71,85,105,.16);
            border-color: rgba(71,85,105,.5);
            color: #1e293b;
        }

        /* ── Carte avocat avec note ── */
        .lawyer-card {
            display: inline-flex;
            flex-direction: column;
            gap: 0;
            background: rgba(148,163,184,.12);
            border: 1px solid rgba(148,163,184,.35);
            border-radius: 12px;
            padding: 8px 12px 7px;
            transition: border-color .2s, background .2s;
            vertical-align: top;
            text-decoration: none;
        }

        .lawyer-card:hover {
            background: rgba(148,163,184,.2);
            border-color: rgba(148,163,184,.55);
        }

        .lawyer-card-main {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .75rem;
            font-weight: 700;
            color: #cbd5e1;
            white-space: nowrap;
        }

        .lawyer-card-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .lawyer-stars {
            color: #fbbf24;
            font-size: .65rem;
            letter-spacing: 1px;
            line-height: 1;
        }

        .lawyer-score {
            font-size: .72rem;
            font-weight: 700;
            color: #e2e8f0;
        }

        .lawyer-count {
            font-size: .65rem;
            color: #94a3b8;
        }

        html.light .lawyer-card {
            background: rgba(71,85,105,.07);
            border-color: rgba(71,85,105,.25);
        }

        html.light .lawyer-card:hover {
            background: rgba(71,85,105,.14);
            border-color: rgba(71,85,105,.45);
        }

        html.light .lawyer-card-main { color: #334155; }
        html.light .lawyer-score { color: #1e293b; }
        html.light .lawyer-count { color: #64748b; }

        @media (max-width: 640px) {
            .badges-row { flex-direction: column; align-items: center; }
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           BLOC VERDICT
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .verdict-block {
            overflow: hidden;
            border: 2px solid rgba(34,197,94,.35);
            border-radius: 12px;
            padding: 8px 22px 18px;
            background: rgba(34,197,94,.07);
            color: #4ade80;
            margin-top: 28px;
            margin-bottom: 20px;
            scroll-margin-top: 72px;
        }

        .verdict-block h3 {
            color: #4ade80;
            margin-top: 0;
        }

        html.light .verdict-block {
            border-color: rgba(21,128,61,.35);
            background: rgba(21,128,61,.07);
            color: #15803d;
        }

        html.light .verdict-block h3 {
            color: #15803d;
        }

        .verdict-source {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: .78rem;
            font-weight: 600;
            color: rgba(74,222,128,.65);
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 3px;
            transition: color .15s ease;
        }

        .verdict-source:hover {
            color: #4ade80;
            text-decoration-style: solid;
        }

        html.light .verdict-source {
            color: rgba(21,128,61,.6);
        }

        html.light .verdict-source:hover {
            color: #15803d;
        }

        .verdict-block .press-photo-caption {
            color: #4ade80;
            font-style: normal;
        }

        .verdict-block .press-photo-caption em {
            font-style: italic;
            color: #4ade80;
        }

        html.light .verdict-block .press-photo-caption {
            color: #15803d;
        }

        html.light .verdict-block .press-photo-caption em {
            color: #15803d;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           TABLE DES MATIÈRES
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .toc-card {
            background: rgba(37,99,235,.14);
            border-color: rgba(59,130,246,.50);
            box-shadow: 0 0 28px rgba(37,99,235,.15);
            position: relative;
            overflow: hidden;
        }

        html.light .toc-card {
            background: rgba(37,99,235,.06);
            border-color: rgba(59,130,246,.2);
            box-shadow: none;
        }

        .toc-card > *:not(.toc-bg-img) { position: relative; z-index: 1; }

        .toc-bg-img {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: auto;
            max-width: 45%;
            object-fit: cover;
            pointer-events: none;
            opacity: .18;
            -webkit-mask-image: linear-gradient(to left, black 30%, transparent 88%);
            mask-image: linear-gradient(to left, black 30%, transparent 88%);
            z-index: 0;
        }

        html.light .toc-bg-img { opacity: .12; }

        @media (max-width: 640px) { .toc-bg-img { display: none; } }

        .toc-title {
            font-size: .78rem;
            font-weight: 700;
            color: var(--b300);
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toc-title i { color: var(--b400); }

        .toc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .toc-list li a {
            color: var(--txt2);
            text-decoration: none;
            font-size: .88rem;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 8px;
            border-radius: 8px;
            transition: color .2s, background .2s;
        }

        .toc-list li a::before {
            content: '';
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--b500);
            flex-shrink: 0;
        }

        .toc-list li a:hover {
            color: var(--b300);
            background: rgba(59,130,246,.08);
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           INTRODUCTION CHAPÔ
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .intro-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .intro-badge {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--b400);
            background: rgba(59,130,246,.13);
            padding: 3px 12px;
            border-radius: 20px;
        }
        .intro-read-time {
            font-size: .78rem;
            color: var(--txt3);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-intro {
            padding: 20px 24px;
            background: rgba(59,130,246,.05);
            border-left: 3px solid var(--b400);
            border-radius: 0 10px 10px 0;
        }
        .article-intro p {
            font-size: 1.04rem;
            line-height: 1.85;
            color: var(--txt);
            margin-bottom: 10px;
        }
        .article-intro p:last-child { margin-bottom: 0; }
        html.light .article-intro {
            background: rgba(37,99,235,.04);
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           CONTENU ARTICLE
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .article-body h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--b300);
            margin: 36px 0 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--bdr);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .article-body h2::before {
            content: '';
            display: inline-block;
            width: 3px; height: 1.1em;
            background: linear-gradient(to bottom, var(--b500), var(--sky));
            border-radius: 2px;
            flex-shrink: 0;
        }

        .article-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--b400);
            margin: 24px 0 10px;
        }

        .article-body p {
            color: var(--txt);
            margin-bottom: 16px;
            font-size: .97rem;
        }

        .article-body ul, .article-body ol {
            padding-left: 22px;
            margin-bottom: 16px;
            color: var(--txt);
            font-size: .97rem;
        }

        .article-body li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .article-body hr {
            border: none;
            border-top: 1px solid var(--bdr);
            margin: 28px 0;
        }

        .article-body strong {
            color: var(--b200);
            font-weight: 700;
        }

        html.light .article-body strong { color: var(--b300); }

        .article-body em {
            color: var(--txt2);
            font-style: italic;
        }

        .article-body blockquote {
            margin: 20px 0;
            padding: 16px 20px;
            border-left: 3px solid var(--b500);
            background: rgba(59,130,246,.06);
            border-radius: 0 10px 10px 0;
            color: var(--txt2);
            font-style: italic;
            font-size: .95rem;
        }

        html.light .article-body blockquote {
            background: rgba(37,99,235,.06);
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin: 0 0 20px;
            padding: 7px 14px;
            background: rgba(220, 38, 38, .12);
            border: 1px solid rgba(220, 38, 38, .35);
            border-radius: 7px;
            color: #ef4444;
            font-size: .78rem;
            font-weight: 600;
            text-decoration: none;
            transition: background .2s, border-color .2s;
        }
        .download-btn:hover {
            background: rgba(220, 38, 38, .22);
            border-color: rgba(220, 38, 38, .6);
        }
        html.light .download-btn {
            color: #b91c1c;
            background: rgba(220, 38, 38, .07);
        }

        .article-disclaimer {
            margin: 24px 0 0;
            padding: 16px 22px;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 14px;
            text-align: left;
            background: rgba(245, 158, 11, .07);
            border: 1px solid rgba(245, 158, 11, .25);
            border-left: 3px solid rgba(245, 158, 11, .65);
            border-radius: 10px;
            font-size: .78rem;
            color: var(--txt2);
            font-style: italic;
            line-height: 1.65;
        }
        .article-disclaimer i {
            color: #f59e0b;
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 3px;
        }
        html.light .article-disclaimer {
            background: rgba(254, 243, 199, .65);
            border-color: rgba(217, 119, 6, .28);
            border-left-color: rgba(217, 119, 6, .65);
            color: #78350f;
        }
        html.light .article-disclaimer i { color: #d97706; }

        @media (max-width: 640px) {
            .article-disclaimer { flex-direction: column; gap: 8px; }
        }

        .closing-quote {
            max-width: 620px;
            margin: 48px auto 8px;
            padding: 40px 48px 36px;
            text-align: center;
            position: relative;
            background: rgba(59,130,246,.07);
            border-radius: 16px;
            border: 1px solid rgba(59,130,246,.2);
        }
        .closing-quote::before {
            content: '\201C';
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 7rem;
            line-height: 1;
            color: var(--b400);
            opacity: .35;
            font-family: Georgia, serif;
            pointer-events: none;
        }
        .closing-quote p {
            font-size: 1.25rem;
            font-style: italic;
            font-weight: 500;
            color: var(--txt);
            line-height: 1.7;
            margin: 0;
        }
        html.light .closing-quote {
            background: rgba(37,99,235,.05);
            border-color: rgba(37,99,235,.18);
        }
        @media (max-width: 640px) {
            .closing-quote { padding: 32px 24px 28px; }
            .closing-quote p { font-size: 1.05rem; }
        }

        /* Bloc devoir de réserve */
        .reserve-block {
            margin: 32px 0;
            padding: 28px 32px;
            background: rgba(251, 191, 36, .07);
            border-left: 4px solid rgba(217, 119, 6, .55);
            border-radius: 0 10px 10px 0;
        }
        .reserve-block h3 {
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: .02em;
            color: #d97706;
            margin: 0 0 14px;
            text-transform: uppercase;
        }
        .reserve-block p {
            margin: 0 0 12px;
            line-height: 1.75;
        }
        .reserve-block p:last-child { margin-bottom: 0; }
        html.light .reserve-block {
            background: rgba(251, 191, 36, .1);
            border-left-color: #d97706;
        }
        html.light .reserve-block h3 { color: #b45309; }

        /* Date inline */
        .date-inline {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 700;
            color: var(--b400);
            font-style: normal;
        }


        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           SOURCES
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .sources-card {
            background: rgba(37,99,235,.05);
            border-color: rgba(59,130,246,.18);
        }

        .sources-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        @media (max-width: 768px) {
            .sources-columns { grid-template-columns: 1fr; gap: 24px; }
        }

        .sources-col-title {
            font-size: .78rem;
            font-weight: 700;
            color: var(--b300);
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--bdr);
        }

        .sources-col-title i { color: var(--b400); }

        .video-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .video-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .video-item video {
            width: 100%;
            border-radius: 10px;
            border: 1px solid var(--bdr);
            background: #000;
            display: block;
        }

        .video-label {
            font-size: .78rem;
            color: var(--txt2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .video-label i { color: var(--b400); font-size: .72rem; }

        .sources-title {
            font-size: .78rem;
            font-weight: 700;
            color: var(--b300);
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sources-title i { color: var(--b400); }

        .sources-group {
            margin-bottom: 20px;
        }

        .sources-group:last-child { margin-bottom: 0; }

        .sources-outlet {
            font-size: .78rem;
            font-weight: 700;
            color: var(--b400);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .sources-outlet i { font-size: .7rem; }

        .sources-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .sources-list li a {
            font-size: .87rem;
            color: var(--txt2);
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 6px;
            padding: 5px 10px;
            border-radius: 8px;
            border-left: 2px solid transparent;
            transition: color .2s, background .2s, border-color .2s;
        }

        .sources-list li a::before {
            content: '→';
            font-size: .75rem;
            color: var(--b500);
            flex-shrink: 0;
        }

        .sources-list li a:hover {
            color: var(--b300);
            background: rgba(59,130,246,.08);
            border-left-color: var(--b500);
        }

        .source-date {
            font-size: .78rem;
            color: var(--txt3);
            white-space: nowrap;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           TIMELINE — desktop uniquement
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .timeline-card { display: none; padding: 26px 36px 30px; }

        @keyframes tl-fadein {
            from { opacity: 0; transform: translateY(26px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @media (min-width: 1400px) and (min-height: 900px) {
            .timeline-card {
                display: block;
                animation: tl-fadein .55s cubic-bezier(.4,0,.2,1) .08s both;
            }
        }

        .tl-heading {
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--txt3);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tl-heading i { color: var(--b400); font-size: .8rem; }

        .tl-track {
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 4px;
        }

        .tl-track::before {
            content: '';
            position: absolute;
            left: 20px;
            right: 20px;
            top: 33px;
            height: 2px;
            background: linear-gradient(90deg, var(--b700) 0%, var(--b500) 45%, #4ade80 87%, rgba(100,116,139,.28) 100%);
            opacity: .45;
            pointer-events: none;
        }

        .tl-item {
            flex: 1;
            min-width: 82px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            cursor: default;
        }

        /* Événements à venir */
        .tl-dot--future {
            background: rgba(100,116,139,.1);
            border: 2px dashed #64748b;
            box-shadow: none;
            color: #64748b;
        }

        .tl-dot--future-danger {
            background: rgba(239,68,68,.08);
            border: 2px dashed #ef4444;
            box-shadow: none;
            color: #ef4444;
        }

        @keyframes tl-pending {
            0%, 100% { opacity: .55; }
            50%       { opacity: 1; }
        }

        @media (prefers-reduced-motion: no-preference) {
            .tl-dot--future,
            .tl-dot--future-danger { animation: tl-pending 2.4s ease-in-out infinite; }
        }

        .tl-item--future .tl-date  { font-style: italic; opacity: .7; }
        .tl-item--future .tl-label { color: var(--txt3); }

        html.light .tl-dot--future { background: rgba(100,116,139,.08); border-color: #94a3b8; color: #94a3b8; }
        html.light .tl-dot--future-danger { background: rgba(220,38,38,.06); border-color: #dc2626; color: #dc2626; }

        .tl-date {
            font-size: .72rem;
            color: var(--txt3);
            text-align: center;
            white-space: nowrap;
            margin-bottom: 10px;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }

        .tl-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: rgba(255,255,255,.92);
            background: var(--b500);
            border: 2px solid var(--bg-card);
            box-shadow: 0 0 0 2px var(--b500);
            flex-shrink: 0;
            z-index: 1;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .tl-item:hover .tl-dot { transform: scale(1.55); }

        .tl-dot--warn  { background: #f97316; box-shadow: 0 0 0 2px #f97316; }
        .tl-dot--danger{ background: #ef4444; box-shadow: 0 0 0 2px #ef4444; }

        .tl-dot--success {
            width: 26px;
            height: 26px;
            margin-top: -2px;
            font-size: 12px;
            background: #4ade80;
            box-shadow: 0 0 0 2px #4ade80, 0 0 18px rgba(74,222,128,.5);
        }

        .tl-item:hover .tl-dot--success {
            transform: scale(1.45);
            box-shadow: 0 0 0 2px #4ade80, 0 0 28px rgba(74,222,128,.7);
        }

        .tl-label {
            margin-top: 10px;
            font-size: .67rem;
            color: var(--txt2);
            text-align: center;
            line-height: 1.45;
            transition: color .2s;
        }

        .tl-item:hover .tl-label { color: var(--txt); }

        .tl-item--success .tl-label {
            color: #4ade80;
            font-weight: 600;
        }

        html.light .tl-dot { border-color: rgba(255,255,255,.9); }
        html.light .tl-dot--warn   { background: #ea580c; box-shadow: 0 0 0 2px #ea580c; }
        html.light .tl-dot--danger { background: #dc2626; box-shadow: 0 0 0 2px #dc2626; }
        html.light .tl-dot--success {
            background: #16a34a;
            box-shadow: 0 0 0 2px #16a34a, 0 0 16px rgba(22,163,74,.35);
        }
        html.light .tl-item--success .tl-label { color: #15803d; }

        /* ── Tooltips timeline ── */
        .tl-tooltip {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 10px);
            transform: translateX(-50%);
            width: 210px;
            padding: 10px 13px;
            background: rgba(2, 20, 50, .97);
            border: 1px solid rgba(59, 130, 246, .5);
            border-radius: 9px;
            box-shadow: 0 8px 32px rgba(0,0,0,.5);
            font-size: .71rem;
            color: var(--txt);
            line-height: 1.55;
            text-align: left;
            white-space: normal;
            pointer-events: none;
            opacity: 0;
            transition: opacity .18s ease;
            z-index: 200;
        }
        .tl-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: calc(50% + var(--arrow-offset, 0px));
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(2, 20, 50, .97);
        }
        .tl-item:hover .tl-tooltip { opacity: 1; }

        /* Couleurs par type — orange */
        .tl-item--warn .tl-tooltip { background: rgba(50, 20, 0, .97); border-color: rgba(249, 115, 22, .55); }
        .tl-item--warn .tl-tooltip::after { border-top-color: rgba(50, 20, 0, .97); }

        /* Couleurs par type — rouge */
        .tl-item--danger .tl-tooltip { background: rgba(50, 0, 0, .97); border-color: rgba(239, 68, 68, .55); }
        .tl-item--danger .tl-tooltip::after { border-top-color: rgba(50, 0, 0, .97); }

        /* Couleurs par type — vert */
        .tl-item--success .tl-tooltip { background: rgba(0, 35, 18, .97); border-color: rgba(74, 222, 128, .55); }
        .tl-item--success .tl-tooltip::after { border-top-color: rgba(0, 35, 18, .97); }

        /* Light mode — bleu */
        html.light .tl-tooltip {
            background: rgba(239, 246, 255, .99);
            border-color: rgba(59, 130, 246, .38);
            color: #1e3a5f;
            box-shadow: 0 8px 32px rgba(0,0,0,.1);
        }
        html.light .tl-tooltip::after { border-top-color: rgba(239, 246, 255, .99); }

        /* Light mode — orange */
        html.light .tl-item--warn .tl-tooltip { background: rgba(255, 247, 237, .99); border-color: rgba(234, 88, 12, .4); color: #7c2d12; }
        html.light .tl-item--warn .tl-tooltip::after { border-top-color: rgba(255, 247, 237, .99); }

        /* Light mode — rouge */
        html.light .tl-item--danger .tl-tooltip { background: rgba(255, 241, 241, .99); border-color: rgba(220, 38, 38, .4); color: #7f1d1d; }
        html.light .tl-item--danger .tl-tooltip::after { border-top-color: rgba(255, 241, 241, .99); }

        /* Light mode — vert */
        html.light .tl-item--success .tl-tooltip { background: rgba(240, 253, 244, .99); border-color: rgba(22, 163, 74, .4); color: #14532d; }
        html.light .tl-item--success .tl-tooltip::after { border-top-color: rgba(240, 253, 244, .99); }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           DERNIÈRE MISE À JOUR
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .last-update {
            display: flex;
            flex-direction: column;
            gap: 5px;
            max-width: 760px;
            margin: 18px auto 12px;
            padding: 14px 20px 14px 18px;
            border: 1px solid rgba(74, 222, 128, .22);
            border-left: 3px solid rgba(74, 222, 128, .65);
            border-radius: 8px;
            background: rgba(74, 222, 128, .06);
            transition: border-color .2s, background .2s;
        }

        .last-update:hover {
            border-color: rgba(74, 222, 128, .4);
            background: rgba(74, 222, 128, .1);
        }

        .last-update-date {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #4ade80;
            font-size: .82rem;
        }

        .last-update-date i { opacity: .85; }

        .last-update-note {
            color: var(--txt3);
            font-size: .78rem;
            font-style: italic;
            line-height: 1.5;
        }

        html.light .last-update {
            background: rgba(240, 253, 244, .8);
            border-color: rgba(22, 163, 74, .22);
            border-left-color: rgba(22, 163, 74, .65);
        }

        html.light .last-update:hover {
            background: rgba(220, 252, 231, .9);
            border-color: rgba(22, 163, 74, .4);
        }

        html.light .last-update-date { color: #16a34a; }

        @media (max-width: 860px) {
            .last-update { margin-left: 16px; margin-right: 16px; }
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           FOOTER
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .cv-footer {
            text-align: center;
            padding: 12px 20px;
            color: var(--txt3);
            font-size: .78rem;
            position: relative;
            z-index: 1;
        }

        .cv-footer a {
            color: var(--b400);
            text-decoration: none;
        }

        .cv-footer a:hover {
            color: var(--b300);
        }

        .visit-counter {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            width: 100%;
            margin-bottom: 10px;
            font-size: .78rem;
            color: var(--txt3);
        }

        .visit-counter span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .visit-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #4ade80;
            flex-shrink: 0;
            animation: availPulse 2s ease-in-out infinite;
        }

        .visit-counter i {
            opacity: .65;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           RESPONSIVE
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        @media (max-width: 640px) {
            .wrap { padding: 16px 16px 20px; }
            .card { padding: 24px 20px; }
            .article-header { padding: 32px 20px 28px; }
            .article-body h2 { font-size: 1.05rem; }
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           PROTECTION CONTENU
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        ::selection      { background: transparent; }
        ::-moz-selection { background: transparent; }

        img { -webkit-user-drag: none; }

        /* ── Zoom loupe sur photos ── */
        .photo-zoom-trigger {
            position: relative;
            display: block;
            text-decoration: none;
            border-radius: inherit;
            cursor: zoom-in;
        }
        .photo-zoom-trigger::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 10px;
            background: rgba(0,0,0,0);
            transition: background .2s;
            pointer-events: none;
        }
        .photo-zoom-trigger:hover::after {
            background: rgba(0,0,0,.3);
        }
        .zoom-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            transform: scale(1);
            opacity: .75;
            transition: opacity .2s, transform .2s;
            pointer-events: none;
            z-index: 1;
            background: rgba(0,0,0,.52);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-zoom-trigger:hover .zoom-icon {
            opacity: 1;
            transform: scale(1.15);
        }

        /* ── Lightbox ── */
        #photo-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.88);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: zoom-out;
            backdrop-filter: blur(6px);
            touch-action: none;
        }
        #photo-lightbox.open { display: flex; }
        #photo-lightbox img {
            max-width: min(92vw, 960px);
            max-height: 90vh;
            border-radius: 10px;
            box-shadow: 0 16px 80px rgba(0,0,0,.7);
            cursor: default;
            -webkit-user-drag: none;
            user-select: none;
            touch-action: none;
            transform-origin: center center;
        }
        .lb-close {
            position: absolute;
            top: 14px;
            right: 18px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #dc2626;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .15s, transform .15s;
            box-shadow: 0 2px 10px rgba(0,0,0,.4);
        }
        .lb-close:hover { background: #b91c1c; transform: scale(1.1); }

        /* Texte épouse l'image : supprime le margin-top du 1er h3 dans un clearfix */
        .clearfix > h3:first-child { margin-top: 0; }

        /* ── Partage réseaux sociaux ── */
        .share-block {
            background: rgba(79, 70, 229, .1);
            border: 1px solid rgba(99, 102, 241, .3);
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: .9rem;
        }
        html.light .share-block {
            background: rgba(238, 242, 255, .85);
            border-color: rgba(99, 102, 241, .28);
        }

        .share-block--donate {
            background: rgba(232, 70, 60, .08);
            border-color: rgba(232, 93, 42, .28);
        }
        .share-block--donate .share-label { color: #f8a07a; }
        .share-block--donate .share-label i { color: #f87171; }
        html.light .share-block--donate {
            background: rgba(232, 70, 60, .06);
            border-color: rgba(220, 60, 40, .22);
        }
        html.light .share-block--donate .share-label { color: #b45309; }
        html.light .share-block--donate .share-label i { color: #dc2626; }
        .share-label {
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: var(--text-muted);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .share-label i { margin-right: .4rem; color: var(--b400); }
        .share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: .55rem;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            padding: .42rem .85rem;
            border-radius: 50px;
            font-size: .8rem;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            transition: opacity .15s, transform .15s;
            white-space: nowrap;
        }
        .share-btn:hover { opacity: .85; transform: translateY(-2px); }
        .share-btn i { font-size: .9rem; }
        .share-btn.fb  { background: #1877f2; }
        .share-btn.tw  { background: #000; }
        .share-btn.li  { background: #0a66c2; }
        .share-btn.wa  { background: #25d366; }
        .share-btn.tg  { background: #2aabee; }
        .share-btn.rd  { background: #ff4500; }
        .share-btn.em  { background: #6b7280; }
        .share-btn.cp  { background: var(--b500, #3b6fd4); cursor: pointer; border: none; font-family: inherit; }

        .donate-btn {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            padding: .42rem .85rem;
            border-radius: 50px;
            background: linear-gradient(135deg, #e85d2a, #e83264);
            color: #fff;
            font-size: .8rem;
            font-weight: 600;
            text-decoration: none;
            transition: opacity .2s, transform .2s;
            box-shadow: 0 4px 18px rgba(232, 50, 100, .35);
        }
        .donate-btn:hover { opacity: .88; transform: translateY(-2px); text-decoration: none; color: #fff; }
        .donate-btn i { font-size: .9rem; }
        .share-sep {
            display: inline-block;
            width: 1px;
            height: 1.4em;
            background: rgba(148, 163, 184, .35);
            align-self: center;
            flex-shrink: 0;
        }

        .share-block {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .55s cubic-bezier(.4,0,.2,1),
                        transform .55s cubic-bezier(.4,0,.2,1);
        }
        .share-block.is-visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 1399px), (max-height: 899px) {
            .share-buttons { justify-content: center; }
            .share-sep { width: 100%; height: 0; background: none; margin: 0; padding: 0; }
        }

        @media (max-width: 640px) {
            .share-block {
                flex-direction: column;
                align-items: center;
                padding: .8rem 1rem;
                gap: .6rem;
            }
            .share-label {
                font-size: .75rem;
                white-space: normal;
                text-align: center;
            }
            .share-buttons {
                width: 100%;
                justify-content: center;
                gap: .4rem;
            }
            .share-btn {
                padding: .35rem .65rem;
                font-size: .72rem;
                gap: .3rem;
            }
            .share-btn i { font-size: .8rem; }
            .donate-btn { margin-top: .5rem; }
            .share-sep { display: none; }
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           LECTEUR VIDÉO PERSONNALISÉ
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .cvp {
            position: relative;
            border-radius: 10px;
            border: 1px solid var(--bdr);
            overflow: hidden;
            background: #000;
            transition: border-color .2s, box-shadow .2s;
        }
        .cvp:hover {
            border-color: var(--bdrh);
            box-shadow: 0 0 24px rgba(37,99,235,.14);
        }

        .cvp-media {
            position: relative;
            background: #000;
            cursor: pointer;
        }
        .cvp-media video {
            width: 100%;
            display: block;
            border-radius: 0;
            border: none;
            background: transparent;
        }

        /* Overlay play centré */
        .cvp-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(2,12,27,.42);
            opacity: 1;
            transition: opacity .22s ease;
            pointer-events: none;
        }
        .cvp.playing .cvp-overlay { opacity: 0; }
        .cvp-overlay-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(37,99,235,.72);
            border: 1.5px solid rgba(96,165,250,.55);
            color: #fff;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: all;
            transition: background .18s, transform .14s, box-shadow .18s;
            box-shadow: 0 0 20px rgba(37,99,235,.4), 0 2px 12px rgba(0,0,0,.5);
        }
        .cvp-overlay-btn:hover {
            background: rgba(37,99,235,.92);
            box-shadow: 0 0 32px rgba(37,99,235,.65), 0 2px 12px rgba(0,0,0,.5);
            transform: scale(1.09);
        }
        .cvp-overlay-btn .fa-play { margin-left: 3px; }

        /* Barre de contrôles */
        .cvp-controls {
            background: rgba(4,12,26,.97);
            padding: 7px 12px 9px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        /* Barre de progression */
        .cvp-progress {
            position: relative;
            height: 3px;
            background: rgba(59,130,246,.15);
            border-radius: 99px;
            cursor: pointer;
            margin: 3px 0 1px;
            transition: height .13s, margin .13s;
        }
        .cvp-progress:hover { height: 5px; margin: 2px 0 0; }
        .cvp-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--b600) 0%, var(--sky) 100%);
            border-radius: 99px;
            width: 0%;
            pointer-events: none;
        }
        .cvp-progress-thumb {
            position: absolute;
            top: 50%;
            left: 0%;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #fff;
            transform: translate(-50%,-50%) scale(0);
            transition: transform .14s;
            pointer-events: none;
            box-shadow: 0 0 8px rgba(37,99,235,.65);
        }
        .cvp-progress:hover .cvp-progress-thumb { transform: translate(-50%,-50%) scale(1); }

        /* Rangée du bas */
        .cvp-bar {
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .cvp-btn {
            background: none;
            border: none;
            color: var(--b300);
            cursor: pointer;
            padding: 3px 6px;
            border-radius: 6px;
            font-size: .82rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color .14s, background .14s;
            flex-shrink: 0;
        }
        .cvp-btn:hover { color: #fff; background: rgba(59,130,246,.16); }
        .cvp-time {
            font-size: .71rem;
            color: var(--txt2);
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: .02em;
        }
        .cvp-spacer { flex: 1; }

        /* Volume */
        .cvp-vol { display: flex; align-items: center; gap: 5px; }
        .cvp-vol-track {
            position: relative;
            width: 56px;
            height: 3px;
            background: rgba(59,130,246,.15);
            border-radius: 99px;
            cursor: pointer;
            transition: height .13s;
        }
        .cvp-vol-track:hover { height: 5px; }
        .cvp-vol-fill {
            height: 100%;
            background: var(--b400);
            border-radius: 99px;
            width: 100%;
            pointer-events: none;
        }
        .cvp-vol-thumb {
            position: absolute;
            top: 50%;
            left: 100%;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #fff;
            transform: translate(-50%,-50%) scale(0);
            transition: transform .14s;
            pointer-events: none;
            box-shadow: 0 0 6px rgba(37,99,235,.55);
        }
        .cvp-vol-track:hover .cvp-vol-thumb { transform: translate(-50%,-50%) scale(1); }

        /* Mode clair */
        html.light .cvp-controls { background: rgba(239,246,255,.98); }
        html.light .cvp-btn { color: var(--b600); }
        html.light .cvp-btn:hover { color: #1d4ed8; background: rgba(37,99,235,.1); }
        html.light .cvp-time { color: var(--txt2); }
        html.light .cvp-progress { background: rgba(37,99,235,.12); }
        html.light .cvp-vol-track { background: rgba(37,99,235,.12); }

        /* Plein écran */
        .cvp:fullscreen { border-radius: 0; display: flex; flex-direction: column; }
        .cvp:fullscreen .cvp-media { flex: 1; display: flex; align-items: center; }
        .cvp:fullscreen .cvp-media video { max-height: none; height: 100%; object-fit: contain; }
    
        @supports (-moz-appearance: none) {
            .card, .topbar, #back-to-top, #page-search-btn, #page-search-panel, #photo-lightbox {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
            }
            .blob, .geo { filter: none !important; animation: none !important; will-change: auto !important; }
        }
    