/*
GPRO CSS: Responsive Visibility
Description: Utility classes that hide an element on a given device width band. Divi breakpoints: mobile ≤767px, tablet 768–980px, desktop ≥981px.
Classes: .gpro-hide-mobile, .gpro-hide-tablet, .gpro-hide-desktop
Version: 1.0
Order: 10
*/

/* Hide on mobile (max 767px) */
@media (max-width: 767px) {
    .gpro-hide-mobile {
        display: none !important;
    }
}

/* Hide on tablet (768px - 980px) */
@media (min-width: 768px) and (max-width: 980px) {
    .gpro-hide-tablet {
        display: none !important;
    }
}

/* Hide on desktop (min 981px) */
@media (min-width: 981px) {
    .gpro-hide-desktop {
        display: none !important;
    }
}
