/* ── Portfolio slideshow touch fix ──
   Allow horizontal swipe on the slideshow without fighting body's pan-y */
.portfolio-slide-track-wrap {
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

/* Also allow swipe on lightbox */
.portfolio-lightbox {
    touch-action: pan-x;
}