
.mcb-carousel .mcb-swiper-main,
.mcb-carousel .mcb-swiper-main .swiper-wrapper,
.mcb-carousel .mcb-swiper-main .swiper-slide,
.mcb-carousel .mcb-swiper-main .swiper-slide img {
    margin: 0;
}

.mcb-carousel .mcb-swiper-main img {
    width: 100%;
    height: auto;
    display: block;
}

/* thumbs */
.mcb-carousel .mcb-swiper-thumbs {
    margin-top: 12px;
}

.mcb-carousel .mcb-swiper-thumbs .swiper-wrapper {
    margin: 0;
}

.mcb-carousel .mcb-swiper-thumbs .swiper-slide {
    width: 110px;
    height: 70px; 
    opacity: 0.6;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden; 
    margin: 0;
}

.mcb-carousel .mcb-swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: block;
    margin: 0;
    border-radius: 8px;
}


/* thumb ativa (Swiper aplica essa classe automaticamente) */
.mcb-carousel .mcb-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* legenda + contador 1/3 */
.mcb-carousel .mcb-caption {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 8px 0 0;
}

.mcb-carousel .mcb-caption-index {
    background: #222;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
    margin: 0;
}

.mcb-carousel .mcb-caption-text {
    font-size: 14px;
    opacity: 0.7;
    color: #000;
    margin: 0;
}

/* preview no editor 
.mcb-carousel-preview img {
    border: 1px solid #ddd;
    border-radius: 4px;
}*/


.mcb-carousel .swiper-button-prev,
.mcb-carousel .swiper-button-next {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 11px;
    justify-content: center;
    align-items: center;
    background: #14225D;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 0;
}

    .mcb-carousel .swiper-button-prev:after,
    .mcb-carousel .swiper-button-next:after {
        display: none;
    }

    .mcb-carousel .swiper-button-prev .icon,
    .mcb-carousel .swiper-button-next .icon {
        display: block;
        width: 100%;
        height: 100%;
        fill: #fff;
        margin: 0;
        transition: all .3s ease
    }

    .mcb-carousel .swiper-button-prev .icon {
        transform: rotate(180deg)
    }

        .mcb-carousel .swiper-button-prev.swiper-button-disabled,
        .mcb-carousel .swiper-button-next.swiper-button-disabled {
            background: transparent;
            cursor: default;
        }

    @media(min-width: 992px) {
        .mcb-carousel .swiper-button-prev:hover .icon {
            transform:rotate(225deg)
        }

        .mcb-carousel .swiper-button-next:hover .icon {
            transform:rotate(45deg)
        }
    }     


@media (max-width: 767px) {
    .mcb-swiper-thumbs .swiper-slide {
        width: 60px;
        height: 40px; 
    }

    .mcb-caption-text {
        font-size: 12px;
    }
}