/* Partner Ticker Styles */
.partner-ticker-block {
    /* border: 1px solid #ddd;
    background: #f9f9f9; */
    padding: 10px;
    margin-bottom: 80px;
}

/* Swiper specific styles */
.partner-ticker-swiper {
    overflow: hidden;
    width: 100%;
    /* display: flex;
    align-items: stretch;
    All slides will have the same height */
}

.partner-ticker-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    /* display: flex;
    align-items: stretch; */
    /* Ensures all slides have equal height */
}

.partner-ticker-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Width will be determined by content, but set max-width for consistency */
    max-width: 200px;
    min-width: 100px;
    /* Height will be flexible but equal for all slides
    align-self: stretch; */
    height: auto !important;
}

.partner-ticker-swiper .swiper-slide .ticker-media-item {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Horizontal centering */
    align-items: center;
    /* Vertical centering */
    text-align: center;
    /* Additional horizontal centering for inline content */
}

.partner-ticker-swiper .swiper-slide img {


    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: grayscale(100%);
    /* Additional horizontal centering */

    @media all and (min-width: 740px) {
        max-width: 150px;
        max-height: 80px;
    }
}