/* ═══════════════════════════════════════════
   MAILLOT 2026 — bannière promo, juste avant
   la section Joueurs de l'accueil.
═══════════════════════════════════════════ */
.asa-maillot {
    background: linear-gradient(135deg, #051a0c 0%, #0D5C2E 100%);
    padding: 64px 20px;
    overflow: hidden;
}
.asa-maillot-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
}

/* ── Média (gauche) ── */
.asa-maillot-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.asa-maillot-media img {
    max-width: 100%;
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .45));
}

/* ── Texte (droite) ── */
.asa-maillot-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F5C518;
    margin-bottom: 10px;
}
.asa-maillot-text h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.asa-maillot-text p {
    color: rgba(255, 255, 255, .78);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 480px;
}
.asa-maillot-champion {
    display: inline-block;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #051a0c;
    background: #F5C518;
    padding: 8px 22px;
    border-radius: 8px;
    margin-bottom: 26px;
    transform: rotate(-2deg);
    box-shadow: 0 10px 26px rgba(245, 197, 24, .3);
}

/* ── CTA + réseaux ── */
.asa-maillot-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.asa-maillot-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #F5C518;
    color: #051a0c;
    border-radius: 30px;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .3px;
    text-decoration: none;
    transition: background .18s, transform .18s;
}
.asa-maillot-cta:hover {
    background: #ffd83d;
    transform: translateY(-2px);
    text-decoration: none;
    color: #051a0c;
}
.asa-maillot-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.asa-maillot-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1rem;
    transition: background .18s, transform .18s;
}
.asa-maillot-socials a:hover {
    background: #F5C518;
    color: #051a0c;
    transform: translateY(-2px);
}

/* ── Animation : convergence gauche/droite (même technique que Notre histoire) ── */
.asa-maillot-anim {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.asa-maillot-from-left  { transform: translateX(-70px); }
.asa-maillot-from-right { transform: translateX(70px); }
.asa-maillot-anim.asa-maillot-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 860px) {
    .asa-maillot-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .asa-maillot-media img { max-height: 280px; }
    .asa-maillot-text p { margin-left: auto; margin-right: auto; }
    .asa-maillot-ctas { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .asa-maillot-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
