/* ──────────────────────────────────────────────────────────────────
   Reseaulution — Bandeau frontend
   ────────────────────────────────────────────────────────────────── */

.rsl-bandeau {
    width: 100%;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    box-sizing: border-box;
}

/* ── Bandeau fixe ── */
.rsl-bandeau--fixed {
    padding: 10px 24px;
    text-align: center;
}

/* ── Bandeau défilant ── */
.rsl-bandeau--scrolling {
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.rsl-bandeau__track {
    display: inline-block;
    white-space: nowrap;
    /* --rsl-speed est injecté inline par PHP (défaut 25s) */
    animation: rsl-marquee var(--rsl-speed, 25s) linear infinite;
    will-change: transform;
}

.rsl-bandeau__track span {
    display: inline-block;
    padding: 0 3em;
    white-space: nowrap;
}

/*
 * Part de 100vw (hors écran à droite) et va jusqu'à -100% (largeur du texte)
 * moins encore 100vw → garantit que le texte sort complètement à gauche
 * quel que soit le contexte (Elementor, full-width, etc.)
 */
@keyframes rsl-marquee {
    from { transform: translateX(100vw); }
    to   { transform: translateX(calc(-100% - 100vw)); }
}

/* Pause au survol */
.rsl-bandeau--scrolling:hover .rsl-bandeau__track {
    animation-play-state: paused;
}
