/* assets/css/block-theme-compat.css */
.wp-site-blocks {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* .connect-main-content {
    flex: 1;
} */

/* Ensure compatibility with block theme spacing */
.section-property-map {
    margin: var(--wp--style--block-gap) 0;
}

/* Fix for block theme container styles */
.content-right {
    /* max-width: var(--wp--style--global--content-size); */
    margin: 0 auto;
    padding: 0 var(--wp--style--root--padding-left, 1rem);
}

/* Responsive adjustments for block themes */
@media (max-width: 782px) {
    .section-property-map.list {
        flex-direction: column;
    }
    
    .wrap-map {
        height: 300px;
    }
    
    .content-right {
        width: 100%;
        padding: 1rem;
    }
}