/*----------------- Inner Pages -----------------*/

#innerBanner {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-between-sections);
    height: calc(100vh - 106px);
}

#innerBanner .owl-carousel img {
    height: calc(100vh - 106px);
    object-fit: cover;
}

body:has(.caption) #innerBanner,
body:has(.caption) #innerBanner .owl-carousel img {
    height: 100vh;
}

body:has(.main-with-aside) #innerBanner {
    margin-bottom: 30px;
}

#innerBanner .banner {
    position: relative;
    background-color: #45c2cc;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#innerBanner .banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

#innerBanner .banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nueva estructura del slider-section: propaga el 100% a través de Owl */
#innerBanner .banner .landing-slider,
#innerBanner .banner .owl-stage-outer,
#innerBanner .banner .owl-stage,
#innerBanner .banner .owl-item {
    height: 100%;
}

#innerBanner .banner .banner__item {
    position: relative;
    width: 100%;
    height: 100%;
}

#innerBanner .banner__item picture {
    display: block;
    width: 100%;
    height: 100%;
}

#innerBanner .banner-video,
#innerBanner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#innerBanner .banner-video {
    position: absolute;
    top: 0;
    left: 0;
}


@media (max-width: 992px) {
    #innerBanner,
    body:has(.main-with-aside) #innerBanner {
        margin-bottom: calc(var(--space-between-sections) + 50px);
    }

    body:has(.caption) #innerBanner,
    body:has(.caption) #innerBanner .owl-carousel img {
        max-height: 80dvh;
    }
}