/* ============================================
   MARQUEE / KAYAN YAZI
   Sürekli sola kayan bant animasyonu
   ============================================ */

.marquee-section {
    position: relative;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* Responsive speed adjustments */
@media (max-width: 768px) {
    .marquee-container {
        animation-duration: 20s;
    }

    .marquee-item {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-container {
        animation: none;
    }
}