/* Default: desktop visible, mobile hidden */

.image_carousel.with_mobile_image .mobile-img {
  display: none !important;
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .image_carousel.with_mobile_image .desktop-img {
    display: none !important;
  }

  .image_carousel.with_mobile_image .mobile-img {
    display: block !important;
  }
}
