/* NOROS Marquee Widget Styles */

.noros-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.noros-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.noros-marquee-content {
    flex-shrink: 0;
    white-space: nowrap;
    padding-right: 20px;
    margin: 0;
}

.noros-marquee-text {
    display: inline-block;
}

.noros-marquee-separator {
    display: inline-block;
}

/* Animation fluide */
.noros-marquee-track {
    animation: none;
}

/* Pause au survol (géré par JS mais fallback CSS) */
.noros-marquee-wrapper[data-pause-hover="true"]:hover .noros-marquee-track {
    animation-play-state: paused;
}
