/*
Theme Name: Kunco Child
Description: Child theme for the Kunco themes
Author: gaviathemes
Template: kunco
*/

/* Donate page — mobile scroll fix
------------------------------------------------*/
/* The WPBakery FlexSlider gallery captures vertical touch-drags as swipes,
   so the page won't scroll when a finger lands on it. pan-y hands vertical
   scrolling back to the browser while keeping horizontal swipe-to-slide. */
.page-id-13 .wpb_flexslider,
.page-id-13 .wpb_flexslider .slides,
.page-id-13 .wpb_flexslider .slides > li {
	touch-action: pan-y;
}

/* Mobile momentum scroll — snap-back fix
------------------------------------------------*/
/* Parent template.css forces overflow-x:hidden on html/body, which makes the
   browser set overflow-y:auto on both — two nested scroll containers that break
   iOS momentum scrolling (page scrolls, then snaps back on release). clip hides
   horizontal overflow WITHOUT creating a scroll container, so overflow-y stays
   visible and native scrolling works. !important is required to beat the parent. */
html,
body {
	overflow-x: clip !important;
}