
.cbs-slider {
    position: relative;
    overflow: hidden;
    height: 400px;
}
.cbs-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}
.cbs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cbs-content {
    position: absolute;
    top: 50%;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    max-width: 80%;
}
.text-left .cbs-content { left: 0; text-align: left; }
.text-right .cbs-content { right: 0; text-align: right; }
.text-center .cbs-content { left: 50%; transform: translate(-50%, -50%); text-align: center; }
.cbs-button {
    display: inline-block;
    padding: 10px 20px;
    background: #d40000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
.cbs-prev, .cbs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.cbs-prev { left: 10px; }
.cbs-next { right: 10px; }

.cbs-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.cbs-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}
.cbs-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .cbs-content { font-size: 14px; padding: 10px; max-width: 90%; }
    .cbs-button { padding: 8px 16px; font-size: 14px; }
}
