/**
 * Global Responsive Visibility Utilities.
 * 
 * These classes allow hiding blocks at specific breakpoints.
 */

/* Desktop only hiding */
@media (min-width: 1025px) {
    .is-hidden-desktop {
        display: none !important;
    }
}

/* Tablet only hiding */
@media (max-width: 1024px) and (min-width: 769px) {
    .is-hidden-tablet {
        display: none !important;
    }
}

/* Mobile only hiding */
@media (max-width: 768px) {
    .is-hidden-mobile {
        display: none !important;
    }
}
