/* ============================================
   WPBakery Visibility Fix — Manual Override
   Recreates vc_hidden-* responsive classes
   ============================================ */

/* Hide on Mobile (xs) — below 768px */
@media (max-width: 767px) {
  .vc_hidden-xs {
    display: none !important;
  }
}

/* Hide on Tablet (sm) — 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .vc_hidden-sm {
    display: none !important;
  }
}

/* Hide on Small Desktop (md) — 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .vc_hidden-md {
    display: none !important;
  }
}

/* Hide on Large Desktop (lg) — 1200px and up */
@media (min-width: 1200px) {
  .vc_hidden-lg {
    display: none !important;
  }
}

.vc_hidden {
  display: none !important;
}