/* ============================================== */
/* COMPOSANTS ÉDITORIAUX — BIBLIOTHÈQUE COMPLÈTE  */
/* ============================================== */

/* ===== 1. FICHE TECHNIQUE FILM/SÉRIE ===== */
.infofr-fiche-technique {
    margin: 25px 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
}
.infofr-fiche-technique .ft-header {
    background: linear-gradient(135deg, #2a3a52 0%, #34495e 100%);
    color: #fff;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.infofr-fiche-technique .ft-body {
    padding: 0;
}
.infofr-fiche-technique .ft-row {
    display: flex;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    font-family: var(--font-sans);
    font-size: 14px;
}
.infofr-fiche-technique .ft-row:last-child { border-bottom: none; }
.infofr-fiche-technique .ft-label {
    width: 140px;
    flex-shrink: 0;
    font-weight: 600;
    color: #555;
}
.infofr-fiche-technique .ft-value {
    flex: 1;
    color: #1a1a1a;
}
.infofr-fiche-technique .ft-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
}

/* ===== 2. BAROMÈTRE CRITIQUE ===== */
.infofr-barometre {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.infofr-barometre .baro-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.infofr-barometre .baro-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
}
.infofr-barometre .baro-media {
    width: 130px;
    flex-shrink: 0;
    font-weight: 500;
    color: #333;
    text-align: right;
}
.infofr-barometre .baro-bar-bg {
    flex: 1;
    height: 22px;
    background: #e9ecef;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
}
.infofr-barometre .baro-bar-fill {
    height: 100%;
    border-radius: 11px;
    transition: width 1s ease;
}
.infofr-barometre .baro-note {
    width: 45px;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
}
.infofr-barometre .baro-moyenne {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 2px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
}
.infofr-barometre .baro-moyenne-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}
.infofr-barometre .baro-moyenne-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.baro-color-bad { background: linear-gradient(90deg, #dc3545, #e85d6a); color: #dc3545; }
.baro-color-mid { background: linear-gradient(90deg, #fd7e14, #ffb347); color: #fd7e14; }
.baro-color-good { background: linear-gradient(90deg, #28a745, #5cb85c); color: #28a745; }
.baro-color-great { background: linear-gradient(90deg, #0056B3, #17a2b8); color: #0056B3; }

/* ===== 3. BLOC CHIFFRE CLÉ ===== */
.infofr-chiffre-cle {
    margin: 50px 0;
    padding: 48px 30px;
    min-height: 220px;
    background-color: #003d82;
    background-image: linear-gradient(135deg, #0056B3 0%, #003d82 100%);
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.infofr-chiffre-cle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 50, 0.45);
    z-index: 1;
}
.infofr-chiffre-cle .cc-number {
    display: block;
    font-family: var(--font-sans);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.infofr-chiffre-cle .cc-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.92;
    max-width: 520px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.infofr-chiffre-cle .cc-source {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}
.infofr-chiffre-cle a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
    transition: text-decoration-color 0.2s;
}
.infofr-chiffre-cle a:hover {
    text-decoration-color: #fff;
}
.infofr-chiffre-cle.cc-red { background: linear-gradient(135deg, #dc3545, #a71d2a); }
.infofr-chiffre-cle.cc-green { background: linear-gradient(135deg, #28a745, #1e7e34); }
.infofr-chiffre-cle.cc-orange { background: linear-gradient(135deg, #fd7e14, #e8590c); }
.infofr-chiffre-cle.cc-dark { background: linear-gradient(135deg, #2a3a52, #34495e); }

/* ===== 4. CHRONOLOGIE INTERACTIVE ===== */
.infofr-chronologie {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.infofr-chronologie .chrono-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.infofr-chronologie .chrono-list {
    position: relative;
    padding-left: 28px;
}
.infofr-chronologie .chrono-list::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0056B3, #28a745);
    border-radius: 2px;
}
.infofr-chronologie .chrono-item {
    position: relative;
    margin-bottom: 18px;
    font-family: var(--font-sans);
}
.infofr-chronologie .chrono-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #0056B3;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 1;
}
.infofr-chronologie .chrono-date {
    font-size: 12px;
    font-weight: 700;
    color: #0056B3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.infofr-chronologie .chrono-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-top: 2px;
}

/* ===== 5. COMPARATEUR — Style Gemini ===== */
.infofr-comparateur {
    margin: 30px 0;
    background: #eef0f4;
    border-radius: 14px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.infofr-comparateur .comp-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.infofr-comparateur .comp-header-cell {
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 10px;
}
.infofr-comparateur .comp-header-cell.comp-before {
    background: #f5a89a;
    color: #5a1a0a;
}
.infofr-comparateur .comp-header-cell.comp-before::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: -3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a1a0a'%3E%3Cpath d='M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1l5 3V6L5 9H4zm11.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z'/%3E%3C/svg%3E") no-repeat center/contain;
}
.infofr-comparateur .comp-header-cell.comp-after {
    background: #a8e6cf;
    color: #1a6b4a;
}
.infofr-comparateur .comp-header-cell.comp-after::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: -3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a6b4a'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z'/%3E%3C/svg%3E") no-repeat center/contain;
}
.infofr-comparateur .comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.infofr-comparateur .comp-cell {
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.infofr-comparateur a {
    color: #0d7c66;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(13,124,102,0.35);
}
.infofr-comparateur a:hover {
    text-decoration-color: #0d7c66;
}

/* ===== 6. BLOC RÉSULTAT DE VOTE ===== */
.infofr-vote {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.infofr-vote .vote-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.infofr-vote .vote-bar-container {
    height: 36px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.infofr-vote .vote-bar-pour { background: #28a745; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; font-family: var(--font-sans); min-width: 40px; }
.infofr-vote .vote-bar-contre { background: #dc3545; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; font-family: var(--font-sans); min-width: 40px; }
.infofr-vote .vote-bar-abstention { background: #adb5bd; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 12px; font-family: var(--font-sans); }
.infofr-vote .vote-legend {
    display: flex;
    gap: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #555;
    flex-wrap: wrap;
}
.infofr-vote .vote-legend span::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 5px;
    vertical-align: middle;
}
.infofr-vote .vote-pour::before { background: #28a745; }
.infofr-vote .vote-contre::before { background: #dc3545; }
.infofr-vote .vote-abs::before { background: #adb5bd; }

/* ===== 7. CITATION CONTRADICTOIRE ===== */
/* ===== 7. CITATION CONTRADICTOIRE — Style magazine Gemini ===== */
.infofr-contradiction {
    margin: 30px 0;
    position: relative;
    min-height: 550px;
}
.infofr-contradiction .contra-side {
    padding: 32px 28px 26px;
    font-family: var(--font-sans);
    position: absolute;
    width: 75%;
    min-height: 180px;
}
/* Côté gauche — doré, en haut à gauche */
.infofr-contradiction .contra-side.contra-left {
    background: linear-gradient(145deg, #d4a66a 0%, #c49258 100%);
    border-radius: 14px;
    z-index: 2;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.15);
    top: 0;
    left: 0;
    padding-top: 22px;
    padding-bottom: 40px;
}
/* Côté droit — bleu marine, en bas à droite, chevauche le doré */
.infofr-contradiction .contra-side.contra-right {
    background: linear-gradient(145deg, #1e3a5f 0%, #162d4a 100%);
    border-radius: 14px;
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: -4px 4px 20px rgba(0,0,0,0.15);
    bottom: 0;
    right: 0;
    padding-top: 22px;
}
/* Photo — à cheval sur le bord de la carte */
.infofr-contradiction .contra-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 0 0 1.5px rgba(0,0,0,0.2);
    z-index: 10;
    background: #ddd;
}
.infofr-contradiction .contra-side.contra-left .contra-photo {
    right: -80px;
    top: 42%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
}
.infofr-contradiction .contra-side.contra-right .contra-photo {
    left: -80px;
    top: 58%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
}
/* Quand ya une photo, réserver l'espace */
.infofr-contradiction .contra-side.contra-left:has(.contra-photo) {
    padding-right: 70px;
}
.infofr-contradiction .contra-side.contra-right:has(.contra-photo) {
    padding-left: 70px;
}
/* Guillemet décoratif */
.infofr-contradiction .contra-quote {
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
    position: relative;
    padding-left: 0;
}
.infofr-contradiction .contra-quote::before {
    content: '\AB';
    display: block;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.5;
    margin-bottom: 14px;
    font-style: normal;
    letter-spacing: 0;
}
.infofr-contradiction .contra-quote::after {
    content: ' \BB';
    font-size: 32px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0;
    vertical-align: -2px;
}
.infofr-contradiction .contra-side.contra-left .contra-quote {
    color: #fff;
}
.infofr-contradiction .contra-side.contra-left .contra-quote::before {
    color: rgba(255,255,255,0.4);
}
.infofr-contradiction .contra-side.contra-left .contra-quote::after {
    color: rgba(255,255,255,0.4);
}
.infofr-contradiction .contra-side.contra-right .contra-quote {
    color: #e8edf3;
}
.infofr-contradiction .contra-side.contra-right .contra-quote::before {
    color: rgba(255,255,255,0.2);
}
.infofr-contradiction .contra-side.contra-right .contra-quote::after {
    color: rgba(255,255,255,0.2);
}
/* Auteur et date */
.infofr-contradiction .contra-author {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}
.infofr-contradiction .contra-date {
    font-size: 13px;
    font-style: italic;
    margin-top: 4px;
}
.infofr-contradiction .contra-side.contra-left .contra-date {
    color: rgba(255,255,255,0.6);
}
.infofr-contradiction .contra-side.contra-right .contra-date {
    color: rgba(255,255,255,0.45);
}
.infofr-contradiction .contra-vs {
    display: none;
}
.infofr-contradiction a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.4);
}
.infofr-contradiction a:hover {
    text-decoration-color: #fff;
}

/* ===== 8. STATUT JUDICIAIRE ===== */
.infofr-statut-judiciaire {
    margin: 25px 0;
    padding: 20px;
    background: #fafafa;
    border-left: 4px solid #6c757d;
    border-radius: 0 8px 8px 0;
}
.infofr-statut-judiciaire .sj-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.infofr-statut-judiciaire .sj-row {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
    font-family: var(--font-sans);
    font-size: 14px;
}
.infofr-statut-judiciaire .sj-label {
    font-weight: 600;
    color: #555;
    min-width: 100px;
}
.infofr-statut-judiciaire .sj-value { color: #1a1a1a; }
.infofr-statut-judiciaire .sj-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.sj-status-encours { background: #fff3cd; color: #856404; }
.sj-status-condamne { background: #f8d7da; color: #721c24; }
.sj-status-relaxe { background: #d4edda; color: #155724; }
.sj-status-appel { background: #d1ecf1; color: #0c5460; }

/* ===== 9. BLOC "CE QUE ÇA CHANGE POUR VOUS" ===== */
.infofr-impact {
    margin: 30px 0;
    padding: 22px 25px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #28a745;
    border-radius: 0 10px 10px 0;
}
.infofr-impact .impact-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.infofr-impact .impact-text {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}
.infofr-impact .impact-text strong { color: #1a1a1a; }
.infofr-impact .impact-action {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #2e7d32;
}
.infofr-impact .impact-action a { color: #0056B3; font-weight: 600; }

/* ===== 10. BLOC SCORE SPORTIF ===== */
.infofr-score {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #2a3a52 0%, #34495e 100%);
    border-radius: 10px;
    color: #fff;
    text-align: center;
}
.infofr-score .score-competition {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 15px;
}
.infofr-score .score-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.infofr-score .score-team {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    min-width: 100px;
}
.infofr-score .score-team.team-left { text-align: right; }
.infofr-score .score-team.team-right { text-align: left; }
.infofr-score .score-result {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 3px;
    background: rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 8px;
}
.infofr-score .score-details {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    opacity: 0.8;
}

/* ===== 11. STATS DE MATCH ===== */
.infofr-stats-match {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.infofr-stats-match .stats-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}
.infofr-stats-match .stats-row {
    display: grid;
    grid-template-columns: 60px 1fr 80px 1fr 60px;
    align-items: center;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
}
.infofr-stats-match .stats-val-left { text-align: right; font-weight: 700; color: #0056B3; }
.infofr-stats-match .stats-val-right { text-align: left; font-weight: 700; color: #dc3545; }
.infofr-stats-match .stats-label { text-align: center; font-size: 12px; color: #666; text-transform: uppercase; }
.infofr-stats-match .stats-bar {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}
.infofr-stats-match .stats-bar-left { background: #0056B3; border-radius: 4px 0 0 4px; }
.infofr-stats-match .stats-bar-right { background: #dc3545; border-radius: 0 4px 4px 0; }

/* ===== 12. ÉTAT DES LIEUX (positions) ===== */
.infofr-etat-lieux {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.infofr-etat-lieux .el-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.infofr-etat-lieux .el-position {
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-family: var(--font-sans);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.infofr-etat-lieux .el-position:nth-child(2n+1) { background: #e3f2fd; }
.infofr-etat-lieux .el-position:nth-child(2n) { background: #fce4ec; }
.infofr-etat-lieux .el-actor {
    font-size: 13px;
    font-weight: 700;
    min-width: 80px;
    flex-shrink: 0;
    color: #333;
}
.infofr-etat-lieux .el-stance {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* ===== 13. BLOC MISE À JOUR ===== */
.infofr-maj {
    margin: 20px 0;
    padding: 14px 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #664d03;
}
.infofr-maj strong { color: #533f03; }
.infofr-maj a { color: #0056B3; font-weight: 600; }

/* ===== BLOCS MISE À JOUR / CORRECTION ===== */
.article-updates {
    margin: 0 0 25px 0;
}
.update-note {
    padding: 14px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-left: 4px solid #0056B3;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.update-note strong {
    color: #003d82;
}
.update-note a {
    color: #0056B3;
    font-weight: 600;
}
.correction-note {
    padding: 14px 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #fffde7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: #664d03;
    margin-bottom: 8px;
}
.correction-note strong {
    color: #533f03;
}
@media (max-width: 768px) {
    .update-note, .correction-note {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ===== 14. MINI-GRAPHIQUE (Chart.js léger) ===== */
.infofr-chart {
    margin: 25px 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}
.infofr-chart .chart-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}
.infofr-chart canvas {
    width: 100% !important;
    max-height: 250px;
}
.infofr-chart .chart-source {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 5px;
}

/* ===== 15. BLOC FACT-CHECK (vérification rumeur vs réalité) ===== */
.infofr-factcheck {
    margin: 30px 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
}
.infofr-factcheck.has-sketch {
    background: #ffffff;
}
.infofr-factcheck.has-sketch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--fc-sketch);
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 110px auto;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.infofr-factcheck.has-sketch .fc-header,
.infofr-factcheck.has-sketch .fc-row {
    position: relative;
    z-index: 1;
}
.infofr-factcheck .fc-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.infofr-factcheck .fc-row {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    gap: 16px;
}
.infofr-factcheck .fc-row:last-child { border-bottom: none; }
.infofr-factcheck .fc-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    max-height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    font-size: 22px;
    line-height: 1;
}
.infofr-factcheck .fc-icon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    fill: #64748b;
    flex-shrink: 0;
}
/* Catch-all : tout SVG dans le factcheck est contraint */
.infofr-factcheck svg {
    max-width: 42px !important;
    max-height: 42px !important;
}
.infofr-factcheck .fc-row svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex-shrink: 0;
}
.infofr-factcheck .fc-claim {
    flex: 1;
    min-width: 0;
}
.infofr-factcheck .fc-claim-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}
.infofr-factcheck .fc-claim-value {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #ef4444;
    background: #fef2f2;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
}
.infofr-factcheck .fc-verdict {
    flex: 1;
    text-align: right;
    min-width: 0;
}
.infofr-factcheck .fc-truth {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
    line-height: 1.4;
}
.infofr-factcheck .fc-badge {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}
.fc-badge.confirmed { background: #dcfce7; color: #166534; }
.fc-badge.unverified { background: #fef3c7; color: #92400e; }
.fc-badge.false { background: #fee2e2; color: #991b1b; }
.fc-badge.inflated { background: #fff7ed; color: #9a3412; }
.fc-badge.partial { background: #e0f2fe; color: #075985; }

/* ===== 15b. INFOGRAPHIE FACT-CHECK (image Gemini) ===== */
.infofr-factcheck-infographie {
    margin: 30px 0;
    position: relative;
}
.infofr-factcheck-infographie figure {
    margin: 0;
    cursor: zoom-in;
}
.infofr-factcheck-infographie img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}
.infofr-factcheck-infographie img:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Figcaption infographie/chronologie — meme style que la photo a la une */
.infofr-factcheck-infographie figure,
.infofr-chrono-infographie figure {
    margin: 0;
}
.infofr-factcheck-infographie img,
.infofr-chrono-infographie img {
    border-radius: 12px 12px 0 0 !important;
}
.infofr-factcheck-infographie figcaption,
.infofr-chrono-infographie figcaption {
    padding: 12px 16px;
    background: #F8F9FA;
    font-size: 13px;
    color: #1A1A1A;
    font-weight: 500;
    border-radius: 0 0 12px 12px;
    margin-top: -4px;
    line-height: 1.5;
    font-family: var(--font-sans);
    font-style: normal;
}
.infofr-factcheck-infographie figcaption::before,
.infofr-chrono-infographie figcaption::before {
    content: "Infographie — ";
    font-weight: 700;
    color: #0056B3;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .infofr-factcheck-infographie img,
    .infofr-chrono-infographie img {
        border-radius: 8px 8px 0 0 !important;
    }
    .infofr-factcheck-infographie figcaption,
    .infofr-chrono-infographie figcaption {
        border-radius: 0 0 8px 8px;
        font-size: 12px;
        padding: 10px 14px;
    }
}

.fc-data-seo {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ===== RESPONSIVE COMPOSANTS ===== */
@media (max-width: 768px) {
    .infofr-factcheck .fc-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .infofr-factcheck .fc-verdict { text-align: left; }
    .infofr-factcheck .fc-icon { width: 36px; height: 36px; }
    .infofr-factcheck .fc-icon svg { width: 20px; height: 20px; }
    .infofr-fiche-technique .ft-row { flex-direction: column; gap: 2px; }
    .infofr-fiche-technique .ft-label { width: auto; }
    .infofr-barometre .baro-row { flex-wrap: wrap; }
    .infofr-barometre .baro-media { width: 100%; text-align: left; font-size: 12px; }
    .infofr-barometre .baro-moyenne-value { font-size: 22px; }
    .infofr-chiffre-cle { padding: 36px 20px; min-height: 180px; }
    .infofr-chiffre-cle .cc-number { font-size: 2.6rem; }
    .infofr-chiffre-cle .cc-label { font-size: 0.95rem; }
    .infofr-chronologie .chrono-list { padding-left: 28px; }
    .infofr-comparateur { padding: 4px; gap: 4px; border-radius: 12px; }
    .infofr-comparateur .comp-header,
    .infofr-comparateur .comp-row { grid-template-columns: 1fr 1fr; gap: 4px; }
    .infofr-comparateur .comp-header-cell { border-radius: 8px; font-size: 11px; padding: 10px 10px; }
    .infofr-comparateur .comp-cell { border-radius: 8px; font-size: 13px; padding: 10px 12px; line-height: 1.45; }
    .infofr-contradiction { min-height: auto !important; display: flex; flex-direction: column; gap: 50px; }
    .infofr-contradiction .contra-side { position: relative !important; width: 100% !important; border-radius: 14px !important; padding-top: 50px !important; }
    .infofr-contradiction .contra-side.contra-left { box-shadow: 0 4px 15px rgba(0,0,0,0.12); }
    .infofr-contradiction .contra-side.contra-right { box-shadow: 0 4px 15px rgba(0,0,0,0.12); }
    .infofr-contradiction .contra-photo { position: absolute !important; float: none !important; left: 50% !important; right: auto !important; top: -40px !important; transform: translateX(-50%) !important; width: 80px !important; height: 80px !important; margin: 0 !important; }
    .infofr-contradiction .contra-side:has(.contra-photo) { padding-right: 28px !important; padding-left: 28px !important; }
    .infofr-contradiction .contra-quote { font-size: 18px; }
    .infofr-contradiction .contra-quote::before { font-size: 40px; }
    .infofr-score .score-team { min-width: 70px; font-size: 14px; }
    .infofr-score .score-result { font-size: 28px; padding: 6px 14px; }
    .infofr-stats-match .stats-row { grid-template-columns: 45px 1fr 60px 1fr 45px; font-size: 12px; }
}

/* ============================================================
 * INFOFR-CITE / SOURCES — Mode presse pro (v2)
 * Citations cachées par défaut, toggle pour les afficher
 * Section Sources en cards horizontales modernes
 * ============================================================ */

/* === Toggle button === */
.infofr-cite-toggle-wrap {
    margin: 32px 0 12px;
    text-align: right;
}
.infofr-cite-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.infofr-cite-toggle:hover {
    background: #e8f0fe;
    border-color: #0056B3;
    color: #0056B3;
}
.infofr-cite-toggle[aria-pressed="true"] {
    background: #0056B3;
    border-color: #0056B3;
    color: #fff;
}
.infofr-cite-toggle svg {
    flex-shrink: 0;
}

/* === Exposants [1] CACHÉS PAR DÉFAUT === */
.infofr-cite {
    display: none;
}
/* Ils apparaissent uniquement quand .show-citations est activé */
.show-citations .infofr-cite {
    display: inline;
    font-size: 0.72em;
    line-height: 1;
    vertical-align: super;
    margin-left: 1px;
    white-space: nowrap;
}
.show-citations .infofr-cite a {
    color: #0056B3;
    text-decoration: none;
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(0, 86, 179, 0.08);
    font-weight: 600;
    transition: all 0.15s;
}
.show-citations .infofr-cite a:hover {
    background: #0056B3;
    color: #fff;
}
.infofr-cite a:target,
.infofr-footnote:target {
    background: #fff3cd !important;
    box-shadow: 0 0 0 4px #fff3cd;
    animation: highlight-fade 2s ease;
}
@keyframes highlight-fade {
    0%, 30% { background: #fff3cd; }
    100% { background: rgba(0, 86, 179, 0.08); }
}

/* === Section Sources — cards horizontales (style The Atlantic) === */
.infofr-sources-wrap {
    margin: 32px 0;
    padding: 28px 0 8px;
    border-top: 2px solid #e2e8f0;
}
.infofr-sources-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.infofr-sources-title {
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 14px;
    font-weight: 800;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0;
    border: none;
}
.infofr-sources-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #0056B3;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -3px;
}
.infofr-sources-meta {
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}
.infofr-sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.infofr-source-card {
    display: block;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.infofr-source-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0056B3;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s;
}
.infofr-source-card:hover {
    border-color: #0056B3;
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.08);
    transform: translateY(-2px);
}
.infofr-source-card:hover::before {
    transform: scaleY(1);
}
.infofr-source-domain {
    display: block;
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0056B3;
    margin-bottom: 6px;
}
.infofr-source-title-text {
    display: block;
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.infofr-source-meta {
    display: flex;
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}
.infofr-source-arrow {
    color: #0056B3;
    font-size: 14px;
    transition: transform 0.2s;
}
.infofr-source-card:hover .infofr-source-arrow {
    transform: translateX(4px);
}

/* === Détails (cachés sous un <details>) === */
.infofr-footnotes-details {
    margin-top: 24px;
    padding: 18px 24px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.infofr-footnotes-summary {
    font-family: var(--font-sans, -apple-system, sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    list-style: none;
    padding: 4px 0;
    user-select: none;
    transition: color 0.15s;
}
.infofr-footnotes-summary::-webkit-details-marker { display: none; }
.infofr-footnotes-summary::before {
    content: '▶';
    display: inline-block;
    margin-right: 8px;
    color: #94a3b8;
    font-size: 10px;
    transition: transform 0.2s;
}
.infofr-footnotes-details[open] .infofr-footnotes-summary::before {
    transform: rotate(90deg);
}
.infofr-footnotes-summary:hover {
    color: #0056B3;
}
.infofr-footnotes-details .infofr-footnotes-list {
    margin: 16px 0 0 0;
    padding-left: 22px;
    color: #334155;
    counter-reset: footnote;
    font-size: 13px;
    line-height: 1.6;
}
.infofr-footnotes-details .infofr-footnotes-list li {
    margin-bottom: 14px;
    padding-left: 4px;
}
.infofr-footnotes-details .infofr-footnotes-list li::marker {
    color: #94a3b8;
    font-weight: 500;
}
.infofr-fn-context {
    color: #64748b;
    font-style: italic;
}
.infofr-footnote strong {
    color: #1a2332;
    font-weight: 700;
}
.infofr-fn-quote {
    display: block;
    color: #475569;
    font-size: 12px;
    font-style: italic;
    margin-top: 4px;
    padding-left: 8px;
    border-left: 2px solid #cbd5e1;
}
.infofr-fn-source {
    display: inline-block;
    margin-top: 4px;
    color: #0056B3;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    border-bottom: 1px dashed #0056B3;
}
.infofr-fn-source:hover {
    color: #003d82;
    border-bottom-style: solid;
}
.infofr-fn-back {
    display: inline-block;
    margin-left: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
}
.infofr-fn-back:hover {
    color: #0056B3;
}

/* Responsive */
@media (max-width: 720px) {
    .infofr-sources-grid {
        grid-template-columns: 1fr;
    }
    .infofr-cite-toggle-wrap {
        text-align: center;
    }
    .infofr-sources-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .infofr-footnotes-details {
        padding: 14px 16px;
    }
}
