.amb-vc-wrapper {
    width: 100%;
    position: relative;
}

.amb-vc-carousel {
    position: relative;
    overflow: hidden;
}

.amb-vc-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.amb-vc-slide {
    box-sizing: border-box;
}

.amb-vc-video-inner {
    position: relative;
    width: 100%;
}

.amb-vc-video-inner::before {
    content: "";
    display: block;
    width: 100%;
    /* La altura se ajusta vía JS con el aspect-ratio */
}

.amb-vc-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flechas */
.amb-vc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amb-vc-prev {
    left: 10px;
}

.amb-vc-next {
    right: 10px;
}

/* Puntos */
.amb-vc-dots {
    text-align: center;
    margin-top: 12px;
}

.amb-vc-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}

.amb-vc-dot.is-active {
    background: rgba(0,0,0,0.6);
}

/* Responsive básico: a pantallas pequeñas fuerza 1 columna */
@media (max-width: 767px) {
    .amb-vc-carousel[data-columns] .amb-vc-slide {
        flex: 0 0 100% !important;
    }
}
