/* JP Engine V4 hero viewport sizing */
.hero.hero-v4{
    --v4-hero-height:100vh;
    --v4-hero-height:100svh;
    width:100%;
    height:var(--v4-hero-height);
    min-height:var(--v4-hero-height);
    max-height:var(--v4-hero-height);
}

.hero-v4-media,
.hero-v4-overlay{
    width:100%;
    height:100%;
    min-height:0;
    max-height:100%;
}

.hero-v4-media .hero-v4-image{
    width:100%;
    height:100%;
    min-height:0;
    max-height:100%;
    object-fit:cover;
}

.hero-v4 .hero-content{
    height:100%;
    min-height:0;
    max-height:100%;
    box-sizing:border-box;
}

@media(max-width:991px){
    .hero.hero-v4{
        --v4-hero-height:calc(100vh - var(--building-nav-height,0px));
        --v4-hero-height:calc(100svh - var(--building-nav-height,0px));
    }
}
