/* Burns Effect Slider - cdbc0582 */
.bs-cdbc0582-slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
    background: #000;
}

.bs-cdbc0582-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.bs-cdbc0582-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.bs-cdbc0582-slide.bs-cdbc0582-slide-active {
    opacity: 1;
    z-index: 2;
}

/* Ken Burns background */
.bs-cdbc0582-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: none;
}

.bs-cdbc0582-slide.bs-cdbc0582-slide-active .bs-cdbc0582-bg {
    animation: bsCdbc0582KenBurns 8s ease-in-out forwards;
}

@keyframes bsCdbc0582KenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-1%, -1%);
    }
}

/* Overlay */
.bs-cdbc0582-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content - always center center */
.bs-cdbc0582-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 40px;
    box-sizing: border-box;
}

.bs-cdbc0582-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.bs-cdbc0582-slide-active .bs-cdbc0582-title {
    opacity: 1;
    transform: translateY(0);
}

.bs-cdbc0582-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.bs-cdbc0582-slide-active .bs-cdbc0582-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.bs-cdbc0582-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.bs-cdbc0582-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.bs-cdbc0582-arrow-prev {
    left: 20px;
}

.bs-cdbc0582-arrow-next {
    right: 20px;
}

/* Dots */
.bs-cdbc0582-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.bs-cdbc0582-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #FFFFFF;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bs-cdbc0582-dot.bs-cdbc0582-active {
    opacity: 1;
    transform: scale(1.25);
}

.bs-cdbc0582-dot:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .bs-cdbc0582-title {
        font-size: 28px;
    }
    .bs-cdbc0582-desc {
        font-size: 16px;
    }
    .bs-cdbc0582-content {
        padding: 24px;
    }
    .bs-cdbc0582-arrow {
        width: 40px;
        height: 40px;
    }
    .bs-cdbc0582-arrow-prev {
        left: 10px;
    }
    .bs-cdbc0582-arrow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .bs-cdbc0582-title {
        font-size: 22px;
    }
    .bs-cdbc0582-desc {
        font-size: 14px;
    }
}
