.marquee-container-5344b72c {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.marquee-track-5344b72c {
    display: flex;
    width: max-content;
    animation-name: marquee-scroll-5344b72c;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-track-5344b72c:hover {
    animation-play-state: paused;
}

.marquee-track-5344b72c.dir-reverse {
    animation-direction: reverse;
}

.marquee-content-5344b72c {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding-right: var(--gap, 24px); /* Fallback, handled by elementor gap control */
}

/* Fix gap spacing between the two duplicate containers */
.marquee-container-5344b72c .marquee-content-5344b72c:first-child {
    padding-right: inherit;
}

.marquee-pill-5344b72c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Default soft shadow */
    font-weight: 500;
}

@keyframes marquee-scroll-5344b72c {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
