/*
Theme Name: WP Residence Child
Theme URI: https://yourwebsite.com
Description: Child theme for WP Residence
Author: Your Name
Template: wpresidence
Version: 1.0
Text Domain: wpresidence-child
*/

/* =========================================================
   REMOVE FILTER BAR
========================================================= */

body:not(.home) .listing_filters_head{
    display:none !important;
}


/* =========================================================
   FORCE LIST VIEW ON ALL PAGES EXCEPT HOME
========================================================= */

body:not(.home):not(.front-page) .property_listing{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 100% !important;
}

body:not(.home):not(.front-page) .listing_wrapper{
    width:100% !important;
    display:flex !important;
    align-items:stretch;
}

body:not(.home):not(.front-page) .listing_wrapper .property_unit_v1,
body:not(.home):not(.front-page) .listing_wrapper .property-unit{
    width:100% !important;
    display:flex !important;
    flex-direction:row !important;
}

body:not(.home):not(.front-page) .listing_wrapper .listing-unit-img-wrapper{
    width:35% !important;
    min-width:35% !important;
}

body:not(.home):not(.front-page) .listing_wrapper .listing_content{
    width:65% !important;
    padding-left:20px !important;
}


/* MOBILE */
@media(max-width:768px){

    body:not(.home):not(.front-page) .listing_wrapper .property_unit_v1,
    body:not(.home):not(.front-page) .listing_wrapper .property-unit{
        flex-direction:column !important;
    }

    body:not(.home):not(.front-page) .listing_wrapper .listing-unit-img-wrapper,
    body:not(.home):not(.front-page) .listing_wrapper .listing_content{
        width:100% !important;
    }
}