.bcs-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 300px;
}
.bcs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.bcs-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.bcs-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}
.bcs-caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 8px;
    font-size: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}
