/* =========================================================
   HERO TRICOLORE COMPACT — compatible avec homepage-compact.css
   ========================================================= */

.hero-live-promo{
    display:flex;
    align-items:center;
    gap:7px;
    margin:6px 0 8px;
    color:#0751a1;
    font-size:.72rem;
    font-weight:900;
}

.hero-live-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:19px;
    padding:0 6px;
    border-radius:4px;
    background:#0b63b6;
    color:#fff;
    font-size:.56rem;
    font-weight:900;
    letter-spacing:.04em;
}

.hero-actions-tricolor{
    display:flex;
    align-items:stretch;
    gap:9px !important;
    flex-wrap:wrap;
}

.hero-actions-tricolor .hero-btn{
    min-width:0 !important;
    min-height:46px !important;
    padding:7px 13px !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:2px solid transparent;
    border-radius:9px;
    font-size:.68rem !important;
    font-weight:900;
    line-height:1.1;
    text-align:left;
    text-transform:uppercase;
    letter-spacing:.02em;
    box-shadow:0 7px 16px rgba(15,23,42,.12);
}

.hero-btn-icon{
    width:20px;
    flex:0 0 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:.95rem;
}

/* Bleu */
.hero-btn-annonces{
    background:linear-gradient(145deg,#0b63b6,#0751a1) !important;
    color:#fff !important;
    border-color:#0751a1 !important;
}

/* Blanc */
.hero-btn-concours{
    background:#fff !important;
    color:#d01824 !important;
    border-color:#d01824 !important;
}

/* Rouge */
.hero-btn-resultats{
    background:linear-gradient(145deg,#e21b2d,#c81020) !important;
    color:#fff !important;
    border-color:#c81020 !important;
}

.hero-actions-tricolor .hero-btn:hover{
    transform:translateY(-1px);
    filter:brightness(1.03);
}

/* Sur grand écran, les 3 boutons restent sur une seule ligne */
@media(min-width:1200px){
    .hero-actions-tricolor{
        flex-wrap:nowrap;
    }

    .hero-actions-tricolor .hero-btn{
        flex:0 1 auto;
        max-width:210px;
    }
}

/* Tablette */
@media(max-width:1199px){
    .hero-actions-tricolor .hero-btn{
        flex:1 1 180px;
    }
}

/* Mobile */
@media(max-width:620px){
    .hero-live-promo{
        align-items:flex-start;
    }

    .hero-actions-tricolor{
        display:grid;
        grid-template-columns:1fr;
        width:100%;
    }

    .hero-actions-tricolor .hero-btn{
        width:100%;
        justify-content:flex-start;
    }
}
