/* Encadrement global de la bannière */
.site-header-banner-wrapper {
    width: 100%;
    background: #0f172a; /* Fond sombre de sécurité */
    padding: 0;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Boîte interne qui fixe la largeur maximale de la bannière sur toutes les pages */
.container-banner-inner {
    width: 100%;
    max-width: 1200px; /* Tu peux ajuster cette valeur (ex: 1100px ou 1300px) selon la largeur de ton application */
    overflow: hidden;
}

.header-banner-img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain !important;
}