/* ── Locations Marquee ─────────────────────────────────────────── */

.cew-marquee {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    padding: 20px 0;
    background-color: #FDEAEA;
}

/* Edge fade mask */
.cew-marquee--faded {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black var(--cew-marquee-fade, 12%),
        black calc(100% - var(--cew-marquee-fade, 12%)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black var(--cew-marquee-fade, 12%),
        black calc(100% - var(--cew-marquee-fade, 12%)),
        transparent 100%
    );
}

.cew-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    --cew-marquee-shift: 50%;
    animation: cew-marquee-scroll 30s linear infinite;
    will-change: transform;
}

.cew-marquee__set {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

/* Pause on hover */
.cew-marquee--pausable:hover .cew-marquee__track {
    animation-play-state: paused;
}

/* Right-to-left direction */
.cew-marquee--rtl .cew-marquee__track {
    animation-name: cew-marquee-scroll-rtl;
}

/* ── Keyframes ─────────────────────────────────────────────────── */

@keyframes cew-marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(calc(-1 * var(--cew-marquee-shift)), 0, 0); }
}

@keyframes cew-marquee-scroll-rtl {
    from { transform: translate3d(calc(-1 * var(--cew-marquee-shift)), 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
}

/* ── Items ─────────────────────────────────────────────────────── */

.cew-marquee__item {
    white-space: nowrap;
    color: #D1736D;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.48px;
    margin-inline-end: 20px;
    flex-shrink: 0;
}

.cew-marquee__sep {
    color: #D1736D;
    font-size: 24px;
    margin-inline-end: 20px;
    flex-shrink: 0;
    line-height: 1;
}

/* Honour reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
    .cew-marquee__track {
        animation: none;
    }
}
