/**
 * Visibility (for meta filter hoc group-block-inspector-controls)
 */

.is-meta-empty-hide:has(.easy-architect-meta:empty) {
	display: none;
}



/**
 * Responsive visibility utilities (from visibility-hoc)
 */

// Mobile: Hide on screens smaller than 600px
@media (max-width: 599px) {
    .ea-hide-mobile {
        display: none !important;
    }
}

// Tablet: Hide on screens between 600px and 960px
@media (min-width: 600px) and (max-width: 960px) {
    .ea-hide-tablet {
        display: none !important;
    }
}

// Desktop: Hide on screens larger than 960px
@media (min-width: 961px) {
    .ea-hide-desktop {
        display: none !important;
    }
}
