/* =========================================================
   DESERT FRAMES HOMEPAGE HERO IMAGE FIX v2.2.8
   Hides the search bar baked into the current hero image.
   ========================================================= */

/* The current source image contains an old search bar at its very top.
   We crop that area visually without changing the uploaded source file. */
.hero-image{
    position:relative !important;
    overflow:hidden !important;
}

.hero-image img{
    width:100% !important;
    height:calc(100% + 54px) !important;
    min-height:calc(100% + 54px) !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:translateY(-54px) !important;
    display:block !important;
}

/* Keep hero dimensions stable after crop. */
.hero-grid{
    overflow:hidden !important;
}

/* Tablet: slightly smaller crop. */
@media(max-width:1050px){
    .hero-image img{
        height:calc(100% + 44px) !important;
        min-height:calc(100% + 44px) !important;
        transform:translateY(-44px) !important;
    }
}

/* Mobile: preserve useful focal area. */
@media(max-width:700px){
    .hero-image img{
        height:calc(100% + 34px) !important;
        min-height:calc(100% + 34px) !important;
        transform:translateY(-34px) !important;
        object-position:center 48% !important;
    }
}
