.alc-carousel {
    overflow: hidden;
    width: 100%;
}

.alc-track {
    display: flex;
    gap: 60px;
}

/* 🔥 CRITICAL FIX */
.alc-item {
    flex: 0 0 auto; /* prevents shrinking */
}

/* 🔥 FORCE consistent logo size */
.alc-item img {
    height: 60px;   /* your base size */
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* Optional: grayscale */
.alc-carousel.grayscale-enabled img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.alc-carousel.grayscale-enabled img:hover {
    filter: grayscale(0%);
    opacity: 1;
}