/* visibility.css */
@media (min-width: 782px) { /* ≥ Desktop */
  .is-style-hide-desktop { display: none !important; }
}

@media (min-width: 600px) and (max-width: 781px) { /* Tablet */
  .is-style-hide-tablet  { display: none !important; }
}

@media (max-width: 599px) { /* Mobile */
  .is-style-hide-mobile  { display: none !important; } 
}

