/**
 * Rekick — rekick-theme.css
 * CSS principal du thème enfant WordPress.
 * Palette, typographie et composants fidèles à la maquette.
 */

/* ════════════════════════════════════════════════════════
   0. VARIABLES & RESET
════════════════════════════════════════════════════════ */

:root {
    --ochre:   #c8882a;
    --rust:    #b84c2a;
    --cream:   #f0e8d8;
    --dark:    #1a1410;
    --brown:   #3d2b1a;
    --tan:     #d4b896;
    --green:   #4a6741;
    --paper:   #e8dfc8;

    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-title:   'Archivo Black', 'Arial Black', sans-serif;
    --font-body:    'Crimson Pro', Georgia, serif;

    --nav-h:     64px;
    --mob-nav-h: 68px;
    --max-w:     1000px;
    --narrow-w:  720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    background: var(--paper);
    color: var(--dark);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ── Masquer le header/footer du thème parent ── */
.wp-block-template-part,
header.wp-block-template-part,
footer.wp-block-template-part,
.site-header, .site-footer,
#masthead, #colophon { display: none !important; }

/* ── Grain overlay ── */
.rk-grain {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.45;
}

/* ════════════════════════════════════════════════════════
   1. NAVIGATION — DESKTOP
════════════════════════════════════════════════════════ */

.rk-topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 64px;
    min-height: 64px;
    background: var(--dark);
    border-bottom: 3px solid var(--ochre);
    z-index: 1000;
}
.admin-bar .rk-topnav { top: 32px; }

.rk-topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo texte */
.rk-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 32px;
}
.rk-logo-text {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--rust);
    line-height: 1;
}
.rk-logo-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--tan);
    opacity: 0.65;
    white-space: nowrap;
}

/* Liens nav */
.rk-nav-links {
    display: flex;
    align-items: stretch;
    height: 100%;
    list-style: none;
    gap: 0;
    flex: 1;
}

.rk-nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 7px;
    padding: 0 18px;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    transition: color 0.2s, background 0.2s;
    position: relative;
    border-right: 1px solid rgba(200,136,42,0.15);
    white-space: nowrap;
}
.rk-nav-links li:first-child .rk-nav-link {
    border-left: 1px solid rgba(200,136,42,0.15);
}
.rk-nav-link svg { opacity: 0.7; flex-shrink: 0; transition: opacity 0.2s; }

.rk-nav-link:hover,
.rk-nav-link.is-active {
    color: var(--ochre);
    background: rgba(200,136,42,0.08);
    text-decoration: none;
}
.rk-nav-link:hover svg,
.rk-nav-link.is-active svg { opacity: 1; }

.rk-nav-link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rust);
}

/* Badge LIVE */
.rk-nav-badge {
    background: var(--rust);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 1px 6px;
    border-radius: 2px;
    animation: rk-pulse 2s ease-in-out infinite;
}

/* Nav right spacer */
.rk-nav-right { margin-left: auto; }

/* ════════════════════════════════════════════════════════
   1b. MOBILE HEADER — Logo compact
════════════════════════════════════════════════════════ */
.rk-mobile-header {
    display: none;
    text-align: left;
    padding: 10px 16px;
    background: var(--dark);
    border-bottom: 2px solid var(--ochre);
    position: sticky;
    top: 0;
    z-index: 999;
}
.rk-mobile-logo {
    text-decoration: none;
}
.rk-mobile-logo .rk-logo-text {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--rust);
    line-height: 1;
}

/* ════════════════════════════════════════════════════════
   2. NAVIGATION — MOBILE BOTTOM NAV
════════════════════════════════════════════════════════ */

.rk-bottomnav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--mob-nav-h);
    background: var(--dark);
    border-top: 2px solid var(--ochre);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.rk-bottomnav-inner {
    display: flex;
    height: 68px;
    align-items: stretch;
}

.rk-mob-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--tan);
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
    position: relative;
    font-family: var(--font-title);
    font-size: 0.48rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-right: 1px solid rgba(200,136,42,0.12);
}
.rk-mob-link:last-child { border-right: none; }
.rk-mob-link.is-active {
    color: var(--ochre);
    opacity: 1;
}
.rk-mob-link.is-active::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 2px;
    background: var(--rust);
}

.rk-mob-badge {
    position: absolute;
    top: 7px;
    right: calc(50% - 20px);
    background: var(--rust);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.52rem;
    padding: 0 4px;
    border-radius: 2px;
    line-height: 1.4;
    animation: rk-pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════
   3. LAYOUT PRINCIPAL
════════════════════════════════════════════════════════ */

.rk-main {
    padding-top: calc(var(--nav-h) + 1px);
    min-height: 100vh;
}
.admin-bar .rk-main { padding-top: calc(var(--nav-h) + 32px + 1px); }

.rk-page {
    padding: 20px 0 80px;
}

.rk-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.rk-container--narrow {
    max-width: var(--narrow-w);
}

/* ════════════════════════════════════════════════════════
   4. COMPOSANTS COMMUNS
════════════════════════════════════════════════════════ */

/* Section label */
.rk-section-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--rust);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}
.rk-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rust);
    opacity: 0.28;
}

/* Titre de page */
.rk-page-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 0.93;
    color: var(--dark);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.rk-page-title em {
    color: var(--rust);
    font-style: normal;
}

/* Titre de section */
.rk-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 0.95;
    color: var(--dark);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.rk-section-title em { color: var(--rust); font-style: normal; }

/* Hero header — accueil */
.rk-hero-header {
    background: rgba(26, 20, 16, 0.04);
    border-left: 3px solid var(--rust);
    border-radius: 0 6px 6px 0;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.rk-hero-lead {
    font-family: var(--font-title);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 6px;
}
.rk-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--rust);
    margin: 0;
}

/* Ornement */
.rk-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--ochre);
    font-size: 0.55rem;
    opacity: 0.45;
}
.rk-ornament::before, .rk-ornament::after { content: '◆ ◆ ◆'; letter-spacing: 5px; }

/* Hero split : titre à gauche, pitch à droite */
.rk-hero-split {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    text-align: left;
}
.rk-hero-left {
    flex: 0 0 auto;
}
.rk-hero-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    min-height: 100%;
}


/* Match card as link */
a.rk-match-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Boutons */
.rk-btn {
    display: inline-block;
    background: var(--rust);
    color: var(--cream);
    border: none;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.18em;
    padding: 10px 28px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}
.rk-btn:hover { background: var(--ochre); color: var(--cream); text-decoration: none; }

.rk-btn--ghost {
    background: transparent;
    color: var(--rust);
    border: 1px solid var(--rust);
}
.rk-btn--ghost:hover { background: var(--rust); color: var(--cream); }

/* Badges */
.rk-live-badge {
    display: inline-block;
    background: var(--rust);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 2px 8px;
    animation: rk-pulse 2s ease-in-out infinite;
}
.rk-archived-badge {
    display: inline-block;
    border: 1px solid var(--green);
    color: var(--green);
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 2px 8px;
}

/* Chips */
.rk-chip {
    font-family: var(--font-title);
    font-size: 0.57rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid var(--tan);
    color: var(--brown);
    background: var(--paper);
    white-space: nowrap;
}
.rk-chip--live { color: var(--rust); border-color: var(--rust); }
.rk-chip--link {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.rk-chip--link:hover {
    background: var(--rust);
    color: var(--cream);
    border-color: var(--rust);
}

/* État vide */
.rk-empty-state {
    text-align: center;
    padding: 60px 24px;
    background: var(--cream);
    border: 1px solid var(--tan);
}
.rk-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.rk-empty-state h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.rk-empty-state p {
    font-size: 1rem;
    color: var(--brown);
    opacity: 0.75;
    margin-bottom: 8px;
    font-style: italic;
}
.rk-empty-state a { color: var(--rust); }

/* ════════════════════════════════════════════════════════
   5. PAGE ACCUEIL — Grille matchs
════════════════════════════════════════════════════════ */

.rk-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.rk-match-card {
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
}
.rk-match-card:hover {
    border-color: var(--ochre);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,20,16,0.12);
    text-decoration: none;
    color: inherit;
}
.rk-match-card .rk-live-badge {
    position: absolute;
    top: 12px; right: 12px;
}

.rk-mc-header {
    margin-bottom: 10px;
    margin-top: 8px;
    padding-right: 65px;
}
.rk-mc-team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}
.rk-mc-team-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    color: var(--dark);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rk-mc-team-score {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--rust);
    letter-spacing: 0.05em;
    line-height: 1;
    min-width: 1.2em;
    text-align: right;
}
.rk-mc-pen {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--brown);
    opacity: 0.6;
    font-weight: normal;
}
.rk-mc-excerpt {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--brown);
    opacity: 0.75;
    line-height: 1.5;
    margin-bottom: 12px;
}
.rk-mc-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px dashed var(--tan);
    margin-top: auto;
}
.rk-mc-meta {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--brown);
    opacity: 0.6;
    font-style: italic;
}
.rk-mc-cta {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.rk-mc-cta:hover { color: var(--ochre); text-decoration: none; }

/* Archives mini */
.rk-recent-archives { margin-top: 16px; }
.rk-archive-mini-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.rk-archive-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s;
}
.rk-archive-mini:hover { border-color: var(--ochre); text-decoration: none; color: inherit; }

.rk-am-teams {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--dark);
    flex: 1;
}
.rk-am-meta {
    font-size: 0.88rem;
    color: var(--brown);
    opacity: 0.55;
    font-style: italic;
    flex: 2;
}
.rk-am-score {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--rust);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.rk-see-all { margin-top: 12px; }

/* ════════════════════════════════════════════════════════
   6. PAGE JEU — Onglets + match
════════════════════════════════════════════════════════ */

/* Barre onglets */
.rk-tabs-bar {
    display: flex;
    border-bottom: 2px solid var(--ochre);
    margin-bottom: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.rk-tabs-bar::-webkit-scrollbar { display: none; }

.rk-tab-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    border: none;
    background: transparent;
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.3;
}
.rk-tab-btn:hover { color: var(--ochre); background: rgba(200,136,42,0.05); }
.rk-tab-btn.is-active {
    color: var(--rust);
    border-bottom-color: var(--rust);
    background: rgba(184,76,42,0.05);
}

.rk-tab-label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rk-live-dot {
    width: 6px; height: 6px;
    background: var(--rust);
    border-radius: 50%;
    animation: rk-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
.rk-tab-score {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: var(--dark);
    line-height: 1;
}
.rk-tab-btn.is-active .rk-tab-score { color: var(--rust); }

/* Panneaux */
.rk-panel { display: none; }
.rk-panel.is-active { display: block; }

/* ════════════════════════════════════════════════════════
   7. CARTE MATCH COMPLÈTE (jeu + single)
════════════════════════════════════════════════════════ */

.rk-match-full-card {
    background: var(--cream);
    border: 1px solid var(--tan);
    border-left: 4px solid var(--rust);
    padding: 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.rk-match-full-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 140px; height: 140px;
    background: radial-gradient(circle at top right, rgba(200,136,42,0.07), transparent 70%);
    pointer-events: none;
}
.rk-match-full-card::after {
    content: '◆';
    position: absolute;
    bottom: 12px; right: 16px;
    color: var(--ochre);
    font-size: 0.55rem;
    opacity: 0.28;
    pointer-events: none;
}

.rk-mfc-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
    flex-wrap: wrap;
}
.rk-mfc-teams {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: normal;
}
.rk-mfc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.rk-mfc-score {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--rust);
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Texte du match */
.rk-match-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--brown);
}
.rk-match-text p { margin-bottom: 1em; }
.rk-match-text p:last-child { margin-bottom: 0; }

/* Drop cap */
.rk-dropcap::first-letter,
.rk-match-text .rk-dropcap::first-letter {
    font-size: 3rem;
    font-weight: 600;
    color: var(--rust);
    float: left;
    line-height: 0.8;
    margin-right: 7px;
    margin-top: 5px;
    font-family: var(--font-title);
}

/* Barre de statut */
.rk-rewrite-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px dashed var(--tan);
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--brown);
    opacity: 0.75;
}
.rk-rewrite-bar strong {
    color: var(--ochre);
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-style: normal;
}
.rk-archived-notice {
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
}

/* ════════════════════════════════════════════════════════
   8. FORMULAIRE COMMENTAIRE
════════════════════════════════════════════════════════ */

.rk-comment-zone {
    background: var(--paper);
    border: 1px solid var(--tan);
    padding: 24px;
    margin-bottom: 28px;
}
.rk-comment-title {
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 6px;
    font-weight: normal;
}
.rk-comment-intro {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--brown);
    opacity: 0.7;
    margin-bottom: 16px;
}
.rk-comment-form-row { margin-bottom: 10px; }
.rk-input {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 9px 13px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
}
.rk-input:focus { border-color: var(--ochre); }

.rk-comment-textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    resize: vertical;
    outline: none;
    min-height: 84px;
    transition: border-color 0.2s;
}
.rk-comment-textarea:focus { border-color: var(--ochre); }

.rk-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 12px;
    flex-wrap: wrap;
}
.rk-word-count {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--brown);
    opacity: 0.6;
    font-style: italic;
}
.rk-word-count.is-over { color: var(--rust); opacity: 1; font-weight: 600; }

.rk-btn-submit {
    background: var(--rust);
    color: var(--cream);
    border: none;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    padding: 9px 26px;
    cursor: pointer;
    transition: background 0.2s;
}
.rk-btn-submit:hover { background: var(--ochre); }
.rk-btn-submit:disabled { background: #aaa; cursor: not-allowed; }

/* Notices */
.rk-notice {
    padding: 10px 14px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 0;
}
.rk-notice--success { background: rgba(74,103,65,0.1); border: 1px solid var(--green); color: var(--green); }
.rk-notice--error   { background: rgba(184,76,42,0.1); border: 1px solid var(--rust); color: var(--rust); }

/* ════════════════════════════════════════════════════════
   9. COMMENTAIRES
════════════════════════════════════════════════════════ */

.rk-comments-section { margin-top: 8px; }
.rk-comments-title {
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
    border-bottom: 1px solid var(--tan);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}
.rk-comments-count {
    background: var(--tan);
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    padding: 1px 7px;
    border-radius: 2px;
}

.rk-comments-list { list-style: none; }
.rk-comment-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(212,184,150,0.4);
}
.rk-comment-item:last-child { border-bottom: none; }
.rk-ci-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.rk-ci-author {
    font-family: var(--font-title);
    font-size: 0.78rem;
    color: var(--ochre);
    letter-spacing: 0.04em;
}
.rk-ci-date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--brown);
    opacity: 0.55;
    font-style: italic;
}
.rk-ci-used {
    font-size: 0.55rem;
    color: var(--rust);
    opacity: 0.7;
    title: 'Utilisé dans une réécriture';
}
.rk-ci-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--brown);
    margin: 0;
}

/* ════════════════════════════════════════════════════════
   10. PAGE HISTORIQUE
════════════════════════════════════════════════════════ */

/* Filtre */
.rk-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.rk-filter-label {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    opacity: 0.7;
    flex-shrink: 0;
}
.rk-filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.rk-filter-chip {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--tan);
    color: var(--brown);
    background: var(--cream);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.rk-filter-chip:hover { border-color: var(--ochre); color: var(--ochre); text-decoration: none; }
.rk-filter-chip.is-active {
    border-color: var(--rust);
    color: var(--rust);
    background: rgba(184,76,42,0.06);
}

/* Liste historique */
.rk-history-list { display: flex; flex-direction: column; gap: 10px; }

.rk-history-item { background: var(--cream); border: 1px solid var(--tan); }
.rk-hi-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s;
    flex-wrap: wrap;
}
.rk-history-item:hover { border-color: var(--ochre); }
.rk-hi-inner:hover { text-decoration: none; color: inherit; }

.rk-hi-main { flex: 1; min-width: 200px; }
.rk-hi-teams {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: normal;
}
.rk-hi-excerpt {
    font-size: 0.83rem;
    font-style: italic;
    color: var(--brown);
    opacity: 0.65;
    line-height: 1.45;
    margin-bottom: 6px;
}
.rk-hi-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--brown);
    opacity: 0.6;
    font-style: italic;
    flex-wrap: wrap;
}
.rk-hi-comp-link {
    color: var(--brown);
    text-decoration: none;
    transition: color 0.2s;
}
.rk-hi-comp-link:hover {
    color: var(--rust);
}
.rk-hi-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.rk-hi-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--rust);
    letter-spacing: 0.1em;
}
.rk-hi-badge {
    font-family: var(--font-title);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid var(--green);
    color: var(--green);
}

/* Pagination */
.rk-pagination { margin-top: 40px; }
.rk-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    gap: 4px;
    padding: 0;
    flex-wrap: wrap;
}
.rk-pagination .page-numbers li a,
.rk-pagination .page-numbers li span {
    display: inline-block;
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--brown);
    border: 1px solid var(--tan);
    background: var(--cream);
    transition: all 0.15s;
}
.rk-pagination .page-numbers li a:hover { border-color: var(--ochre); color: var(--ochre); }
.rk-pagination .page-numbers .current {
    background: var(--rust);
    color: var(--cream);
    border-color: var(--rust);
}

/* ════════════════════════════════════════════════════════
   11. PAGE SINGLE MATCH — Layout 2 colonnes
════════════════════════════════════════════════════════ */

.rk-page--single-match {
    padding-top: 16px;
}
.rk-single-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

/* Breadcrumb */
.rk-breadcrumb {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--brown);
    opacity: 0.65;
    margin-bottom: 16px;
    font-style: italic;
}
.rk-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}
.rk-breadcrumb a:hover { color: var(--rust); text-decoration: none; }

/* Hero match */
.rk-match-hero {
    margin-bottom: 28px;
}
.rk-mh-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.rk-mh-date {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--brown);
    opacity: 0.65;
}
.rk-mh-championship {
    text-align: center;
    margin: 12px 0 8px;
}
.rk-mh-championship a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--brown);
    opacity: 0.7;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.rk-mh-championship a:hover {
    color: var(--rust);
    opacity: 1;
}

.rk-match-hero-title {
    font-family: var(--font-display);
    display: flex;
    flex-direction: column;
    gap: 6px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    font-weight: normal;
    line-height: 1;
}
.rk-mht-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.rk-mht-team {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rk-mht-score {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--rust);
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}
.rk-mht-pen {
    font-size: 0.45em;
    color: var(--brown);
    font-family: var(--font-body);
    letter-spacing: normal;
    vertical-align: middle;
}

.rk-mh-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--brown);
    opacity: 0.7;
    font-style: italic;
}
.rk-mh-stats strong { color: var(--ochre); font-style: normal; }

/* Texte single */
.rk-match-text--single {
    background: var(--cream);
    border: 1px solid var(--tan);
    border-left: 4px solid var(--rust);
    padding: 28px 28px 20px;
    margin-bottom: 0;
    position: relative;
}
.rk-match-text--single::after {
    content: '◆';
    position: absolute;
    bottom: 12px; right: 14px;
    color: var(--ochre);
    font-size: 0.55rem;
    opacity: 0.28;
}

/* Sidebar */
.rk-single-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.admin-bar .rk-single-sidebar { top: calc(var(--nav-h) + 32px + 20px); }

.rk-sidebar-block {
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 18px;
    margin-bottom: 16px;
}
.rk-sidebar-cta-btn {
    display: block;
    text-align: center;
    font-family: var(--font-title);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff !important;
    background: #b32d2e;
    padding: 14px 16px;
    margin-bottom: 16px;
    text-decoration: none !important;
    transition: background 0.15s;
    border-radius: 0;
}
.rk-sidebar-cta-btn:hover {
    background: #1a1a1a;
    color: #fff !important;
}
.rk-sidebar-title {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--tan);
    font-weight: normal;
}

.rk-sidebar-list { list-style: none; }
.rk-sidebar-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(212,184,150,0.35);
    text-decoration: none;
    color: inherit;
    transition: color 0.15s;
}
.rk-sidebar-link:last-of-type { border-bottom: none; }
.rk-sidebar-link:hover { text-decoration: none; color: inherit; }
.rk-sl-teams {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--dark);
    transition: color 0.15s;
}
.rk-sidebar-link:hover .rk-sl-teams { color: var(--rust); }
.rk-sl-score {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--rust);
    letter-spacing: 0.08em;
}
.rk-sl-date {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--brown);
    opacity: 0.55;
    font-style: italic;
}
.rk-sidebar-more {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    transition: color 0.15s;
}
.rk-sidebar-more:hover { color: var(--ochre); text-decoration: none; }

.rk-sidebar-about p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--brown);
    opacity: 0.8;
    line-height: 1.55;
    margin-bottom: 6px;
}
.rk-sidebar-ornament {
    font-size: 0.5rem;
    color: var(--ochre);
    opacity: 0.35;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

/* ════════════════════════════════════════════════════════
   12. PAGE RÈGLES — Contenu
════════════════════════════════════════════════════════ */

.rk-rules-list { display: flex; flex-direction: column; gap: 16px; }
.rk-rules-cta {
    text-align: center;
    padding: 40px 0 10px;
}
.rk-rules-cta-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brown);
    opacity: 0.8;
    margin-bottom: 16px;
}
.rk-page-content {
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--brown);
}
.rk-page-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--ochre);
    margin: 2em 0 0.6em;
    line-height: 1.1;
}
.rk-page-content h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tan);
    margin: 1.8em 0 0.5em;
}
.rk-page-content h4 {
    font-family: var(--font-title);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ochre);
    margin: 1.5em 0 0.4em;
}
.rk-page-content p {
    margin: 0 0 1em;
}
.rk-page-content ul,
.rk-page-content ol {
    margin: 0 0 1.2em 1.4em;
    padding: 0;
}
.rk-page-content li {
    margin-bottom: 0.4em;
}
.rk-page-content ol {
    list-style: none;
    counter-reset: rk-ol;
    margin-left: 0;
}
.rk-page-content ol > li {
    counter-increment: rk-ol;
    padding-left: 2.2em;
    position: relative;
}
.rk-page-content ol > li::before {
    content: counter(rk-ol);
    position: absolute;
    left: 0; top: 0;
    width: 1.6em; height: 1.6em;
    background: var(--rust);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.6em;
    text-align: center;
    border-radius: 50%;
}
.rk-page-content ul > li {
    position: relative;
    padding-left: 1.2em;
    list-style: none;
}
.rk-page-content ul > li::before {
    content: '◆';
    position: absolute;
    left: 0; top: 0;
    color: var(--rust);
    font-size: 0.5em;
    line-height: 3.5em;
}
.rk-page-content strong {
    color: var(--ochre);
    font-weight: 600;
}
.rk-page-content em {
    font-style: italic;
    color: var(--tan);
}
.rk-page-content a {
    color: var(--ochre);
    text-decoration: underline;
    text-decoration-color: rgba(200,136,42,0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.rk-page-content a:hover {
    text-decoration-color: var(--ochre);
}
.rk-page-content blockquote {
    border-left: 3px solid var(--rust);
    margin: 1.5em 0;
    padding: 0.8em 1.2em;
    background: rgba(200,136,42,0.05);
    font-style: italic;
    color: var(--tan);
}
.rk-page-content hr {
    border: none;
    height: 1px;
    background: rgba(200,136,42,0.2);
    margin: 2em 0;
}

/* ════════════════════════════════════════════════════════
   13. PAGE À PROPOS
════════════════════════════════════════════════════════ */

.rk-about-card .rk-about-link {
    color: var(--ochre);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.15s;
}
.rk-about-link:hover { color: var(--rust); }

.rk-stats-section { margin-top: 48px; }
.rk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}
.rk-stat-item {
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 20px 16px;
    text-align: center;
}
.rk-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--rust);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.rk-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--brown);
    opacity: 0.65;
    font-style: italic;
}

.rk-tech-section { margin-top: 12px; }
.rk-tech-list {
    list-style: none;
    background: var(--cream);
    border: 1px solid var(--tan);
    padding: 18px 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.rk-tech-list li {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--brown);
    opacity: 0.85;
}
.rk-tech-list strong {
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-right: 4px;
}

/* ════════════════════════════════════════════════════════
   14. FOOTER
════════════════════════════════════════════════════════ */

.rk-footer {
    background: var(--dark);
    border-top: 3px solid var(--ochre);
    padding: 32px 0 24px;
    margin-top: auto;
}
.rk-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.rk-footer-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rk-footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--ochre);
}
.rk-footer-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--tan);
    opacity: 0.65;
}

.rk-footer-ornament {
    font-size: 0.5rem;
    color: var(--ochre);
    letter-spacing: 5px;
    opacity: 0.35;
}

.rk-footer-links {
    display: flex;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}
.rk-footer-links li a,
.rk-footer-links a {
    font-family: var(--font-title);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    opacity: 0.65;
    text-decoration: none;
    padding: 4px 14px;
    border-right: 1px solid rgba(200,136,42,0.2);
    transition: opacity 0.15s, color 0.15s;
}
.rk-footer-links li:last-child a,
.rk-footer-links a:last-child { border-right: none; }
.rk-footer-links li a:hover,
.rk-footer-links a:hover { opacity: 1; color: var(--ochre); text-decoration: none; }

.rk-footer-copy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--tan);
    opacity: 0.4;
    font-style: italic;
}
.rk-footer-copy a { color: var(--ochre); text-decoration: none; opacity: 1; }
.rk-footer-copy a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════
   15. WIDGETS
════════════════════════════════════════════════════════ */

.rk-widget { margin-bottom: 20px; }
.rk-widget-title {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--tan);
    font-weight: normal;
}

/* ════════════════════════════════════════════════════════
   16. ANIMATIONS
════════════════════════════════════════════════════════ */

@keyframes rk-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}

/* ════════════════════════════════════════════════════════
   17. RESPONSIVE
════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .rk-single-layout {
        grid-template-columns: 1fr;
    }
    .rk-single-sidebar {
        position: static;
    }
    .rk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rk-topnav { display: none; }
    .rk-bottomnav { display: block; }
    .rk-mobile-header { display: block; }

    .rk-main { padding-top: 0; }
    .rk-page { padding: 12px 0 calc(var(--mob-nav-h) + 24px); }

    .rk-home-grid {
        grid-template-columns: 1fr 1fr;
    }
    .rk-match-hero-title {
        gap: 10px;
    }
    .rk-mfc-header {
        flex-direction: column;
    }
    .rk-mfc-score { font-size: 2.2rem; }
    .rk-filter-chips { gap: 4px; }
    .rk-logo-tagline { display: none; }
    .rk-hero-header { padding: 14px 16px; margin-bottom: 16px; }
    .rk-hero-headline { font-size: 5vw; }
    .rk-hi-inner { flex-wrap: wrap; }
    .rk-tech-list { flex-direction: column; gap: 8px; }
}

@media (max-width: 540px) {
    .rk-home-grid { grid-template-columns: 1fr; }
    .rk-mht-score { font-size: 2.8rem; }
    .rk-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Admin bar mobile (WP réduit à 46px sous 783px) */
@media (max-width: 782px) {
    .admin-bar .rk-main { padding-top: 0; }
    .admin-bar .rk-mobile-header { top: 46px; }
}

/* Barre de progression de lecture — injectée dynamiquement par le JS */
.rk-read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--rust, #b84c2a);
    z-index: 1001;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   18. PAGE 404
════════════════════════════════════════════════════════ */

.rk-404-hero {
    text-align: center;
    padding: 40px 0 48px;
}
.rk-404-number {
    font-family: var(--font-display);
    font-size: clamp(6rem, 16vw, 11rem);
    color: var(--ochre);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -20px;
    letter-spacing: 0.08em;
    user-select: none;
}
.rk-404-msg {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--brown);
    opacity: 0.75;
    margin-bottom: 24px;
}
.rk-404-suggestions { margin-top: 16px; }

/* ════════════════════════════════════════════════════════
   19. ENCART D'EXPLICATION — single match (live)
════════════════════════════════════════════════════════ */

.rk-explain-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    border-left: 3px solid var(--rust);
    padding: 10px 16px;
    margin-bottom: 24px;
}

.rk-eb-dot {
    width: 7px;
    height: 7px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    animation: rk-pulse 1.5s ease-in-out infinite;
}

.rk-eb-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--tan);
    line-height: 1.45;
    flex: 1;
    margin: 0;
}

.rk-eb-text strong {
    color: var(--ochre);
    font-style: normal;
    font-family: var(--font-title);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.rk-eb-cta {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ochre);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.15s;
}
.rk-eb-cta:hover {
    color: var(--rust);
    text-decoration: none;
}

@media (max-width: 540px) {
    .rk-eb-cta { display: none; }
}

/* ════════════════════════════════════════════════════════
   SIDEBAR — BLOCS COMMENTAIRES & CONTRIBUTEURS
════════════════════════════════════════════════════════ */

/* Option B — Barre de progression */
.progress-block {
    background: var(--paper);
    border: 1px solid var(--tan);
    padding: 16px 20px;
}
.prog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.prog-title {
    font-family: var(--font-title);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown);
}
.prog-count {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--rust);
    letter-spacing: 0.08em;
    line-height: 1;
}
.prog-of {
    font-family: var(--font-title);
    font-size: 0.65rem;
    color: var(--brown);
    letter-spacing: 0.1em;
    opacity: 0.6;
}
.prog-track {
    height: 6px;
    background: var(--tan);
    overflow: hidden;
}
.prog-fill {
    height: 100%;
    background: var(--rust);
    transition: width 0.5s ease;
}
.prog-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}
.prog-tick {
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--brown);
    opacity: 0.45;
}
.prog-tick.target {
    color: var(--rust);
    opacity: 0.9;
}
.prog-cta {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--brown);
    font-style: italic;
    opacity: 0.75;
}
.prog-cta strong {
    font-style: normal;
    font-family: var(--font-title);
    font-size: 0.7rem;
    color: var(--ochre);
    letter-spacing: 0.06em;
}

/* Option A — Voix des fans */
.fans-block {
    background: var(--paper);
    border: 1px solid var(--tan);
    border-left: 3px solid var(--ochre);
    padding: 14px 16px;
}
.fans-label {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fans-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ochre);
    opacity: 0.3;
}
.fan-quote {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}
.fan-quote:last-child { margin-bottom: 0; }
.fan-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rust);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fan-text {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--brown);
    line-height: 1.55;
    flex: 1;
    margin: 0;
}

/* Option D — Wall of contributors */
.wall-block {
    background: var(--paper);
    border: 1px solid var(--tan);
    padding: 20px;
}
.wall-label {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    opacity: 0.6;
    margin-bottom: 14px;
    text-align: center;
}
.wall-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}
.wall-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.wall-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.wall-avatar.top1 {
    background: var(--rust);
    width: 42px;
    height: 42px;
    font-size: 0.8rem;
}
.wall-avatar.top2 { background: var(--ochre); }
.wall-avatar.extra { opacity: 0.5; }
.wall-crown {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 1;
}
.wall-nick {
    font-family: var(--font-title);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
    opacity: 0.6;
}
.wall-footer {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--brown);
    opacity: 0.65;
    text-align: center;
}
.wall-footer strong {
    font-style: normal;
    font-family: var(--font-title);
    font-size: 0.68rem;
    color: var(--ochre);
    letter-spacing: 0.06em;
}
