.bandeau-informatif-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 10px; /* un peu de padding horizontal */
}

.bandeau-informatif-text {
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.bandeau-informatif-text a {
    color: #FFF;
    font-weight: 800;
}

.bandeau-informatif-wrapper.oaka-wrapper-animated {
    align-items: unset;
    justify-content: unset;
}

.bandeau-informatif-text.oaka-animated {
    animation: defilement 15s linear infinite;
    white-space: nowrap;
}


@keyframes defilement {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Mobile fix */
@media (max-width: 768px) {
    .bandeau-informatif-wrapper {
        min-height: auto; /* permet au wrapper de s’adapter au contenu */
        padding: 10px 5px;
    }

    .bandeau-informatif-text.oaka-animated {
        font-size: 14px; /* réduire si nécessaire pour écran étroit */
    }
}