.mc-carousel-wrapper {
    width: 100%;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    padding: 20px 0; 
}

.mc-carousel-plane {
    width: 100%;
    display: flex;
    flex-direction: column;
    
    --mc-rotate: -10deg;
    --mc-skew: 0deg;
    
    transform: rotate(var(--mc-rotate)) skew(var(--mc-skew)) scale(1.4);
    
    will-change: transform;
}

.mc-carousel-row {
    width: 100%;
    display: flex;
    overflow: visible !important;
}

.mc-carousel-track {
    display: flex;
    width: max-content;
    animation: mc-scroll linear infinite;
    will-change: transform;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.mc-carousel-item {
    flex-shrink: 0;
    overflow: hidden; 
    border-radius: 8px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes mc-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}