/* ==========================================================================
   MW LOGO CAROUSEL WIDGET
   ========================================================================== */

.mw-logo-carousel {
    position: relative;
    padding: 30px 20px;
}

@media (min-width: 1024px) {
    .mw-logo-carousel {
        padding: 40px 20px;
    }
}

.mw-logo-carousel__liner {
    max-width: 1350px;
    margin: 0 auto;
    overflow: hidden;
}

/* Swiper container */
.mw-logo-carousel__swiper {
    overflow: hidden;
}

/* Swiper slide - ensure proper sizing */
.mw-logo-carousel__swiper .swiper-slide {
    height: auto;
}

/* Slide */
.mw-logo-carousel__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Link wrapper */
.mw-logo-carousel__link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Logo image */
.mw-logo-carousel__image {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Grayscale modifier */
.mw-logo-carousel--grayscale .mw-logo-carousel__image {
    filter: grayscale(100%);
}

.mw-logo-carousel--grayscale-hover .mw-logo-carousel__slide:hover .mw-logo-carousel__image {
    filter: grayscale(0%);
}
