
.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.carousel-row:last-child {
    margin-bottom: 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    align-items: center;
}

.carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.carousel-item img {
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .carousel-row {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .carousel-row {
        margin-bottom: 5px;
    }
}
