/* ===================
   MARQUEE
   =================== */
.marquee {
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: var(--white);
}
.marquee__track {
    display: flex;
    gap: 44px;
    animation: marquee-scroll 22s linear infinite;
    width: max-content;
}
.marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Unbounded", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.marquee__item svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

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

@media (max-width: 600px) {
    .marquee {
        padding: 16px 0;
    }
    .marquee__item {
        font-size: 11px;
    }
}
