/* Banner container */
.banner-slider {
    width: 100%;
    max-width: 2362px;
    height: 740px;
    margin: auto;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Responsive ratio */
@media (max-width: 2362px) {
    .banner-slider {
        height: calc(100vw * (740 / 2362));
    }
}

/* Track */
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 1s ease;
}

/* Slide */
.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption */
.caption {
    position: absolute;
    left: 40px;
    bottom: 40px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 20px;
    border-radius: 6px;
}

/* Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 10;
}

.banner-arrow.left { left: 15px; }
.banner-arrow.right { right: 15px; }

/* Pause button */
.banner-pause {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
}