/* ── Masquer visuellement la barre de défilement (Scrollbar masquée) ──── */
html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
    width: 0 !important;
    height: 0 !important;
}

/* ── Palette partagée des pages publiques (accueil, résultats...) ────── */
:root {
    --lk-navbar-bg:   #1e2d3d; /* Slate Navy Ligue */
    --lk-footer-bg:   #1e2d3d;
    --lk-slate-card:  #1E293B;
    --lk-rouge:       #DC2626; /* Rouge Cramoisi Martial */
    --lk-rouge-fonce: #991B1B;
    --lk-or:          #F59E0B; /* Doré / Warm Gold */
}

/* ── Logo cercle tournant et agrandi (effleure les bordures du header) ── */
@keyframes lk-spin-logo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lk-logo-tournant {
    height: 52px !important;
    width: 52px !important;
    object-fit: contain;
    border-radius: 50% !important;
    background: #1e2d3d;
    border: 2.5px solid #F59E0B;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.55);
    padding: 2px;
    animation: lk-spin-logo 12s linear infinite;
    transition: box-shadow 0.3s ease;
    margin-top: -2px;
    margin-bottom: -2px;
}

.lk-logo-tournant:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.9);
    animation-duration: 4s;
}

.lk-user-avatar-tournant {
    height: 44px !important;
    width: 44px !important;
    object-fit: cover;
    border-radius: 50% !important;
    background: #0F172A;
    border: 2.5px solid #F59E0B;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    padding: 2px;
    animation: lk-spin-logo 12s linear infinite;
    transition: box-shadow 0.3s ease;
    flex-shrink: 0;
}

.lk-user-avatar-tournant:hover {
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.9);
    animation-duration: 4s;
}

/* ── Navbar publique ─────────────────────────────────────────────────── */
.lk-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    background-color: var(--lk-navbar-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    padding: 0.2rem 0 !important; /* Padding minimal pour que le cercle effleure la bordure sans agrandir le header */
    border-bottom: 2px solid #ffffff;
    backdrop-filter: blur(10px);
}
.lk-navbar .navbar-brand {
    color: #fff !important;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
    white-space: nowrap !important;
}
.lk-navbar .navbar-brand i { font-size: 1.5rem; color: var(--lk-or); }
.lk-navbar .navbar-nav {
    white-space: nowrap !important;
}
.lk-navbar .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap !important;
}
.lk-navbar .nav-link:hover {
    color: var(--lk-or) !important;
    background-color: rgba(255, 255, 255, 0.08);
}
.lk-navbar .nav-link.active {
    color: #FCD116 !important;
    background-color: rgba(252, 209, 22, 0.18) !important;
    font-weight: 800 !important;
    border-bottom: 3px solid #FCD116 !important;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 12px rgba(252, 209, 22, 0.2);
}

/* ── Bannière Verte Institutionnelle (Modèle Standardisé sur toutes les pages) ── */
.lk-banner-header {
    background: linear-gradient(135deg, #043e1d 0%, #009E49 100%) !important;
    color: #ffffff !important;
    padding: 4rem 0 3.5rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.lk-banner-header::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 90% 20%, rgba(252, 209, 22, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.lk-page-title-accent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 2.2rem;
    color: #ffffff !important;
}
.lk-page-title-accent::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 2.2rem;
    background-color: #FCD116 !important;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(252, 209, 22, 0.5);
}
.lk-breadcrumb {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 0.75rem;
    font-weight: 500;
}
.lk-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.lk-breadcrumb a:hover {
    color: #FCD116;
    text-decoration: underline;
}

/* ── Hover Dropdown sur Desktop & Compatibility Mobile ────────────────── */
@media (min-width: 992px) {
    .lk-dropdown-hover:hover .dropdown-menu {
        display: block;
        margin-top: 0.3rem;
        animation: lkFadeInUp 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }
}
@keyframes lkFadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-outline-blanc {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    background: transparent !important;
    transition: all 0.25s ease-in-out;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important;
}
.btn-outline-blanc:hover, .btn-outline-blanc:focus {
    background-color: #ffffff !important;
    color: #0F172A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}
.lk-navbar .btn-portail {
    background: linear-gradient(135deg, var(--lk-or) 0%, #D97706 100%);
    color: #0F172A;
    font-weight: 700;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: all 0.2s ease;
}
.lk-navbar .btn-portail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45);
    color: #0F172A;
}

/* ── Drapeau flottant (Burkina Faso) ──────────────────────────────────── */
/* ── Animation Mouvement de Vent réaliste sur les Drapeau(x) ───────────── */
@keyframes lk-drapeau-vent {
    0% {
        transform: perspective(300px) rotateY(0deg) skewY(0deg) scale(1);
    }
    25% {
        transform: perspective(300px) rotateY(16deg) skewY(-3deg) translateY(-1px) scale(1.02);
    }
    50% {
        transform: perspective(300px) rotateY(0deg) skewY(0deg) scale(1);
    }
    75% {
        transform: perspective(300px) rotateY(-14deg) skewY(2.5deg) translateY(1px) scale(0.98);
    }
    100% {
        transform: perspective(300px) rotateY(0deg) skewY(0deg) scale(1);
    }
}

.lk-drapeau {
    display: inline-block;
    transform-origin: left center;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
    animation: lk-drapeau-vent 3.2s ease-in-out infinite;
    backface-visibility: hidden;
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .lk-drapeau { animation: none; }
}
.lk-footer-devise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 700;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    color: var(--lk-or);
    margin: 1.2rem 0 1.6rem;
}
.lk-footer-devise .lk-drapeau {
    width: 65px !important;
    height: 44px !important;
    vertical-align: middle;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1.5px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* ── Sections génériques ───────────────────────────────────────────────── */
.lk-section { padding: 4rem 1rem; }
.lk-section.lk-alt { background-color: #F8FAFC; }
.lk-section h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0F172A;
    text-align: left;
    margin-bottom: 0.4rem;
}
.lk-section .lk-soustitre {
    text-align: left;
    color: #64748B;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}
.lk-vide {
    text-align: center;
    color: #94A3B8;
    font-style: italic;
    padding: 2rem 0;
}

/* ── Bascule d'affichage responsive pour les boutons d'action de section ── */
@media (max-width: 991.98px) {
    .lk-btn-header-desktop { display: none !important; }
    .lk-btn-footer-mobile  { display: block !important; }
}
@media (min-width: 992px) {
    .lk-btn-header-desktop { display: inline-block !important; }
    .lk-btn-footer-mobile  { display: none !important; }
}

/* ── Page publique en hauteur pleine ──────────────────────────────────── */
.lk-public-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 65px;
}

/* ── Cartes d'Actualités en mouvement & Carousel ─────────────────────── */
.lk-card-actu {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
}

.lk-card-actu:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.16);
    border-color: var(--lk-or);
}

.lk-card-actu .img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lk-card-actu .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lk-card-actu:hover .img-wrapper img {
    transform: scale(1.08);
}

.lk-card-actu .tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--lk-rouge) 0%, #991B1B 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 2;
}

.lk-card-actu .body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lk-card-actu .body h5 {
    font-weight: 800;
    font-size: 1.15rem;
    color: #0F172A;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}

.lk-card-actu:hover .body h5 {
    color: var(--lk-rouge);
}

.lk-actu-carousel-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0F172A;
    color: var(--lk-or);
    border: 2px solid var(--lk-or);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
    opacity: 0.95;
    cursor: pointer;
}
.lk-actu-carousel-control:hover {
    background: var(--lk-or);
    color: #0F172A;
    transform: scale(1.1);
}

/* ── Footer Multi-colonnes Modernisé ─────────────────────────────────────── */
.lk-footer {
    margin-top: auto;
    background-color: var(--lk-footer-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 3.5rem 1rem 1.6rem;
    font-size: 0.92rem;
    border-top: 3px solid #ffffff;
}

.lk-footer-logo-img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: #ffffff;
    padding: 3px;
    border-radius: 50%;
    border: 2px solid var(--lk-or, #F59E0B);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 10px rgba(245, 158, 11, 0.3);
    animation: lkSpinLogo 15s linear infinite;
    flex-shrink: 0;
}

@keyframes lkSpinLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.lk-footer-brand {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0;
}

.lk-footer-brand-title {
    font-weight: 800;
    font-size: clamp(0.78rem, 2.2vw, 1.05rem);
    white-space: nowrap;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lk-footer-brand i { color: var(--lk-or); font-size: 1.4rem; }

.lk-footer-texte {
    color: #94A3B8;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ── Social Media Buttons ────────────────────────────────────────── */
.lk-footer-social-link {
    color: #CBD5E1;
    font-size: 1.15rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lk-footer-social-link.facebook:hover {
    background: #1877F2;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.lk-footer-social-link.whatsapp:hover {
    background: #25D366;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.lk-footer-social-link.youtube:hover {
    background: #FF0000;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* ── Section Title Block ─────────────────────────────────────────── */
.lk-footer-titre-block {
    display: flex;
    align-items: center;
    min-height: 70px;
    width: 100%;
    margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
    .lk-footer {
        padding: 2.5rem 1rem 1.5rem !important;
        text-align: center !important;
    }
    .lk-footer-titre-block {
        justify-content: center !important;
        min-height: auto !important;
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    .lk-footer-brand {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .lk-footer-brand-title {
        white-space: normal !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        line-height: 1.35;
    }
    .lk-footer-logo-img {
        margin-right: 0 !important;
        margin-bottom: 4px !important;
        width: 52px !important;
        height: 52px !important;
    }
    .lk-footer-list-wrapper {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .lk-footer-liens {
        display: inline-block !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    .lk-footer-liens li {
        text-align: left !important;
        margin-bottom: 0.65rem !important;
    }
    .lk-footer-texte {
        text-align: center !important;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .lk-navbar .container, .lk-navbar .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .lk-logo-tournant {
        height: 40px !important;
        width: 40px !important;
    }
    .lk-user-avatar-tournant {
        height: 38px !important;
        width: 38px !important;
    }
    .lk-footer-devise {
        font-size: 0.92rem !important;
        flex-direction: column !important;
        gap: 0.4rem !important;
        text-align: center !important;
        margin: 1rem 0 1.2rem !important;
    }
    .lk-footer-devise .lk-drapeau {
        width: 50px !important;
        height: 33px !important;
    }
}

.lk-footer-titre {
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.4rem;
    display: inline-block;
}

.lk-footer-titre::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--lk-or, #F59E0B);
    border-radius: 2px;
}

/* ── List Wrapper ────────────────────────────────────────────────── */
.lk-footer-list-wrapper {
    display: block;
    width: 100%;
}

.lk-footer-liens {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.lk-footer-liens li {
    margin-bottom: 0.65rem;
    font-size: 0.89rem;
}

.lk-footer-liens a {
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lk-footer-liens a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.lk-footer-separateur {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 2.2rem 0 1.2rem;
}

.lk-footer-bas {
    text-align: center;
    color: #94A3B8;
    font-size: 0.82rem;
}

/* ── Offcanvas Panneau de Connexion Innovant ───────────────────────── */
.lk-login-offcanvas {
    background: linear-gradient(175deg, #0F172A 0%, #1E293B 100%) !important;
    color: #ffffff !important;
    border-left: 2px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6) !important;
    width: 100% !important;
    max-width: 440px !important;
    backdrop-filter: blur(16px);
}
.lk-login-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem 1.8rem;
}
.lk-login-offcanvas .offcanvas-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.lk-login-offcanvas .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.lk-role-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 0.8rem;
}
.lk-role-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateX(6px);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.lk-role-card .role-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
}
.lk-role-card:hover .role-icon {
    background: var(--lk-rouge);
    color: #ffffff;
}

/* ── Boutons Modèle "Se Connecter" Harmonisés ──────────────────────────── */
.btn-voir-plus, a.btn-voir-plus, .filter-btn-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: max-content !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    transition: all 0.25s ease-in-out !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.filter-btn-pill.btn-outline-secondary {
    border: 2px solid #64748B !important;
    color: #0F172A !important;
    background: #ffffff !important;
}
.filter-btn-pill.btn-outline-secondary:hover, .filter-btn-pill.btn-outline-secondary.active {
    background-color: #0F172A !important;
    color: #ffffff !important;
    border-color: #0F172A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2) !important;
}

.filter-btn-pill.btn-outline-dark {
    border: 2px solid #0F172A !important;
    color: #0F172A !important;
    background: #ffffff !important;
}
.filter-btn-pill.btn-outline-dark:hover, .filter-btn-pill.btn-outline-dark.active {
    background-color: #0F172A !important;
    color: #ffffff !important;
    border-color: #0F172A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2) !important;
}

.filter-btn-pill.btn-outline-danger, .btn-danger.btn-voir-plus {
    border: 2px solid var(--lk-rouge) !important;
    color: var(--lk-rouge) !important;
    background: #ffffff !important;
}
.filter-btn-pill.btn-outline-danger:hover, .filter-btn-pill.btn-outline-danger.active,
.btn-danger.btn-voir-plus:hover, .btn-danger.btn-voir-plus.active {
    background-color: var(--lk-rouge) !important;
    color: #ffffff !important;
    border-color: var(--lk-rouge) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3) !important;
}

/* ── Cartes d'Actualités Horizontales Modernes ───────────────────────── */
.lk-card-actu-horiz {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (min-width: 768px) {
    .lk-card-actu-horiz {
        flex-direction: row;
        min-height: 220px;
    }
    .lk-card-actu-horiz .img-container {
        width: 40%;
        min-width: 40%;
        height: auto;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    }
    .lk-card-actu-horiz .content-container {
        width: 60%;
        padding: 1.5rem 1.8rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
.lk-card-actu-horiz:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.14);
    border-color: rgba(220, 38, 38, 0.4);
}
.lk-card-actu-horiz .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lk-card-actu-horiz:hover .img-container img {
    transform: scale(1.08);
}
.badge-source-ligue {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge-source-club {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: #ffffff;
}

/* ── Responsivité 100% Mobile & Tablette ───────────────────────────────── */
@media (max-width: 991.98px) {
    .lk-navbar .navbar-collapse {
        background-color: var(--lk-navbar-bg);
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        margin-top: 0.5rem;
    }
    .lk-navbar .nav-link {
        padding: 0.6rem 1rem !important;
        white-space: normal !important;
    }
    .lk-page-title-accent {
        font-size: 1.6rem !important;
    }
    .lk-banner-header {
        padding: 3.5rem 0 2.5rem 0 !important;
    }
}

@media (max-width: 575.98px) {
    .lk-page-title-accent {
        font-size: 1.25rem !important;
        gap: 0.5rem !important;
    }
    .lk-page-title-accent::before {
        height: 1.3rem !important;
        width: 4px !important;
    }
    .lk-logo-tournant {
        height: 40px !important;
        width: 40px !important;
    }
    .lk-user-avatar-tournant {
        height: 36px !important;
        width: 36px !important;
    }
    .lk-navbar .navbar-brand {
        font-size: 0.95rem !important;
    }
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .card {
        border-radius: 10px !important;
    }
    .btn-lg {
        font-size: 1rem !important;
        padding: 0.6rem 1rem !important;
    }
    table:not(.no-responsive) {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

