/* Moving Carousel Styles */
.mc-carousel-wrapper-c76a834e {
    --mc-height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: var(--mc-height);
    margin: 20px 0;
}

.mc-carousel-wrapper-c76a834e::before,
.mc-carousel-wrapper-c76a834e::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.mc-carousel-wrapper-c76a834e::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.mc-carousel-wrapper-c76a834e::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.mc-carousel-track-c76a834e {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
    will-change: transform;
}

.mc-carousel-slide-c76a834e {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-carousel-slide-c76a834e img {
    height: 100%;
    width: auto;
    max-height: var(--mc-height);
    object-fit: contain;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.mc-carousel-slide-c76a834e img:hover {
    transform: scale(1.05);
}

/* Pause on hover */
.mc-carousel-wrapper-c76a834e:hover .mc-carousel-track-c76a834e {
    animation-play-state: paused !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .mc-carousel-wrapper-c76a834e {
        --mc-height: 220px;
    }
    .mc-carousel-wrapper-c76a834e::before,
    .mc-carousel-wrapper-c76a834e::after {
        width: 40px;
    }
}

@media (max-width: 600px) {
    .mc-carousel-wrapper-c76a834e {
        --mc-height: 160px;
    }
    .mc-carousel-track-c76a834e {
        gap: 12px;
    }
    .mc-carousel-wrapper-c76a834e::before,
    .mc-carousel-wrapper-c76a834e::after {
        width: 20px;
    }
}
