/* Mobile Map Gap Fix - Remove gap between filter section and map */

@media (max-width: 1027px) {
    /* Remove gaps from listing content body - main container for cards and map */
    .listing__content-body {
        margin-top: 0 !important;
        padding-top: 0 !important;
        gap: 0 !important;
        display: flex;
        flex-direction: column;
    }

    /* Ensure content inner sits flush */
    .listing__content--inner {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Ensure map container sits flush with content section */
    .listing__content--map {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Remove spacing from listing layout */
    .listing-layout {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Ensure section inner has no gap */
    .listing--section__inner {
        gap: 0 !important;
    }

    /* Remove spacing from listing content */
    .listing__content {
        gap: 0 !important;
    }
}
