.big-slider-lower-title.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.big-slider-lower-title .slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.big-slider-lower-title .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.big-slider-lower-title .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Overlay */
.big-slider-lower-title .slider-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.big-slider-lower-title .slider-title {
    font-size: clamp(32px,  calc(32px + (50 - 32) * ((100vw - 300px) / (1600 - 300))), 50px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1em;
}


.big-slider-lower-title .slider-location {
    font-size: clamp(18px,  calc(18px + (24 - 18) * ((100vw - 300px) / (1600 - 300))), 24px);
    font-weight: 400;
    color:#fff;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 10px 0 0 0;
    padding: 0;
}

.slider-divider{
    width: 270px;
    height: 2px;
    background-color: #fff;
}

/* Navigation Arrows */
.big-slider-lower-title .slider-arrow {
    position: absolute;
    bottom: 80px;
    width: 48px;
    height: 48px;
    background: rgba(255, 254, 254, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.big-slider-lower-title .slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: white;
}

.big-slider-lower-title .slider-arrow-prev {
    left: 50%;
    transform: translateX(calc(-50% - 60px));
    bottom: 20px;
}

.big-slider-lower-title .slider-arrow-next {
    left: 50%;
    transform: translateX(calc(-50% + 60px));
    bottom: 20px;
}

/* Adjust arrow positions for layout like the reference image */
@media (min-width: 768px) {
    .big-slider-lower-title .slider-text {
        bottom: 100px;
    }

    .big-slider-lower-title .slider-arrow {
        bottom: 40px;
    }

    .big-slider-lower-title .slider-arrow-prev {
        transform: translateX(calc(-50% - 40px));
    }

    .big-slider-lower-title .slider-arrow-next {
        transform: translateX(calc(-50% + 40px));
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .big-slider-lower-title .slider-text {
        bottom: 100px;
        width: 90%;
    }

    .big-slider-lower-title .slider-arrow {
        width: 40px;
        height: 40px;
        bottom: 40px;
    }

    .big-slider-lower-title .slider-arrow-prev {
        transform: translateX(calc(-50% - 35px));
    }

    .big-slider-lower-title .slider-arrow-next {
        transform: translateX(calc(-50% + 35px));
    }
}

/* Block editor preview adjustments */
.acf-block-preview .big-slider-lower-title.slider {
    height: 400px;
}
