.announcement-marquee-wrapper-b4f6c3a0 {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.announcement-marquee-label-b4f6c3a0 {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.announcement-marquee-scroll-b4f6c3a0 {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.announcement-marquee-track-b4f6c3a0 {
    display: flex;
    width: max-content;
    animation: marquee-b4f6c3a0 var(--marquee-speed, 20s) linear infinite;
    will-change: transform;
}

/* Pause on hover */
.marquee-pause-yes .announcement-marquee-track-b4f6c3a0:hover {
    animation-play-state: paused;
}

.announcement-marquee-items-b4f6c3a0 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.announcement-marquee-item-b4f6c3a0 {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.announcement-marquee-item-b4f6c3a0:hover {
    opacity: 0.8;
}

/* Flawless continuous translate based on repeating 4 times:
   Using 4 sets ensures full screen filling, translate by 25% represents sliding exactly 1 complete set */
@keyframes marquee-b4f6c3a0 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}
