/* ========================================
   MARQUEE
   ======================================== */
.marquee-section {
    background: black;
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    direction: ltr;
}

.marquee__track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .marquee__item {
        font-size: 1.25rem;
    }
}

.marquee__item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-orange);
    fill: var(--primary-orange);
}