/* =========================================================
   MARQUEE — infinite scrolling strip
   ========================================================= */
.marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: marquee-scroll var(--mq-duration, 30s) linear infinite;
}

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

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #f2f4fb;
    border: 1px solid #e6eaf5;
    font-weight: 600;
    font-size: 0.98rem;
    color: #1a2340;
    white-space: nowrap;
}

.marquee-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mq-accent, #2a63ff);
    flex: 0 0 auto;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}
