.bsb-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bsb-slide-split {
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    /* Default height */
    width: 100%;
}

.bsb-slide-image {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bsb-slide-content {
    width: 50%;
    height: 100%;
    justify-content: flex-start;
    /* Changed from center */
    align-items: center;
    /* Vertically center is still good, let user logic decide if top/center */
    background-color: #f9f9f9;
    padding: 60px;
    /* Increased padding */
    box-sizing: border-box;
    text-align: left;
    /* Explicit left align */
}

.bsb-slide-content-inner {
    max-width: 500px;
}

.bsb-slide-title {
    font-size: 2.5rem;
    margin: 0px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.bsb-slide-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.bsb-slide-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.bsb-slide-button:hover {
    background-color: #444;
}

/* Custom Navigation/Timer tweaks */
.bsb-slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    /* Position on the right */
    left: auto;
    width: 45%;
    /* Match the right side width roughly */
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    /* Start from left of the right block */
}

/* Adjust for responsive if needed, the width 45% assumes 50% split. 
   Ideally, we want it inside the right column. 
   But absolute positioning over a 50% width parent is tricky if container is full width.
   Let's assume the container is relative. 
   We might need to adjust 'right' value or width. 
   Actually, let's target 50% + padding. */

.bsb-progress-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

.bsb-progress-bar {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.bsb-progress-bar:hover {
    background: #d0d0d0;
}

.bsb-progress-bar-fill {
    height: 100%;
    background: #000;
    width: 0;
    display: block;
}

/* Splide Overrides */
.splide__arrow {
    background: none;
    border-radius: 0;
    opacity: 1;
}

.splide__arrow--prev {
    left: 52%;
    /* Adjust based on design needs */
}

.splide__arrow--next {
    left: 55%;
    /* Adjust based on design needs */
}





/* Responsive */
@media (max-width: 768px) {
    .bsb-slide-split {
        height: auto;
        flex-direction: column;
    }

    .bsb-slide-image {
        width: 100%;
        height: 300px;
    }

    .bsb-slide-content {
        width: 100%;
        padding: 30px 30px 50px;
    }

    .bsb-slider-controls {
        position: absolute;
        bottom: 25px;
        right: 30px;
        left: auto;
        width: calc(100% - 60px);
        z-index: 10;
        display: flex;
        justify-content: flex-start;
    }
}