.dp-mlogos {
    margin: 40px 0;
    background: #ffffff;
}

.dp-mlogos__bar {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 20px 40px;
    gap: 0;
}

.dp-mlogos__label {
    flex-shrink: 0;
    padding-right: 30px;
    max-width: 114px;
    text-align: right;
}

.dp-mlogos__label-text {
    color: #A9BFCC;
    font-size: 24px;
    font-weight: 600;
}

.dp-mlogos__divider {
    flex-shrink: 0;
    width: 1px;
    height: 64px;
    background: #CEE7EB;
}

.dp-mlogos__slider-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 0 45px;
}

.dp-mlogos__swiper {
    overflow: hidden;
}

.dp-mlogos__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
}

.dp-mlogos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    width: 100%;
    height: 100%;
}

.dp-mlogos__item:hover {
    opacity: 0.7;
}

.dp-mlogos__item img {
    max-height: 85px;
    max-width: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.dp-mlogos__item:hover img {
    filter: grayscale(0%);
}

.dp-mlogos__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #A9BFCC;
    transition: color 0.2s ease;
    background: none;
    border: none;
}

.dp-mlogos__nav:hover {
    color: #1b3a5c;
}

.dp-mlogos__nav--prev {
    left: 0;
}

.dp-mlogos__nav--next {
    right: 0;
}

.dp-mlogos__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

@media (max-width: 991px) {
    .dp-mlogos__bar {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .dp-mlogos__label {
        padding-right: 20px;
        max-width: 100%;
    }

    .dp-mlogos__label-text {
        font-size: 18px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .dp-mlogos__slider-wrap {
        padding: 0 35px;
    }

    .dp-mlogos__slide {
        height: 50px;
    }

    .dp-mlogos__item img {
        max-height: 35px;
    }
}

@media (max-width: 575px) {
    .dp-mlogos__bar {
        flex-direction: column;
        gap: 12px;
    }

    .dp-mlogos__label {
        padding-right: 0;
    }

    .dp-mlogos__divider {
        width: 80%;
        height: 1px;
    }

    .dp-mlogos__slider-wrap {
        width: 100%;
        padding: 0 35px;
    }

    .dp-mlogos__slide {
        height: 45px;
    }

    .dp-mlogos__item img {
        max-height: 40px;
    }
}
