/*
 * Portfolio single-page gallery overrides.
 *
 * The parent theme hides all Owl carousel arrows on screens ≤767px via:
 *   .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next
 *     { opacity: 0; visibility: hidden; }
 * On the project single page (`.project-gallery`) we want the arrows to
 * stay visible on mobile, since the gallery is the primary way to flip
 * through repair photos and swipe alone isn't discoverable enough.
 */

@media screen and (max-width: 767px) {
	.project-gallery .owl-carousel .owl-nav .owl-prev,
	.project-gallery .owl-carousel .owl-nav .owl-next {
		opacity: 1 !important;
		visibility: visible !important;
	}
}
