/*********************************
 SHORT HEADER – 99.9% WIDTH
*********************************/

/* Almost full-width header carousel */
.header-carousel {
    width: 99.9%;
    max-width: 99.9%;
    height: 65vh;
    max-height: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
}

/* Carousel item */
.header-carousel .owl-carousel-item {
    height: 65vh;
    max-height: 520px;
    position: relative;
}

/* Image fit */
.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Maintain overlay content */
.header-carousel .owl-carousel-inner {
    height: 100%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header-carousel {
        width: 100%;
        height: 50vh;
        border-radius: 12px;
    }

    .header-carousel .owl-carousel-item {
        height: 50vh;
        min-height: 320px;
    }
}
