.cbs-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px; 
    margin: 15px auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none; 
    background: transparent;
}

.cbs-slider-wrapper {
    position: relative;
    width: 100%;
    height: 250px; 
}

.cbs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    visibility: hidden; 
    pointer-events: none; 
}

/* Forzamos que el banner activo pase al frente y reciba los clics */
.cbs-slide.cbs-inicial,
.cbs-slide.active {
    position: relative !important; 
    opacity: 1 !important;
    z-index: 10 !important; 
    visibility: visible !important; 
    pointer-events: auto !important; 
}

.cbs-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.cbs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .cbs-slider-wrapper {
        height: 140px; 
    }
}