/**
 * GSAP Elementor — supporting styles.
 * Only loaded on pages that actually contain the widget (see
 * Animation_Widget::get_style_depends()).
 */

/* Ensure elements about to be scroll/mouse animated get GPU-accelerated
   transforms and don't cause layout jank while GSAP is mid-tween. */
.gsap-anim-el {
	will-change: transform, opacity;
}

/* Split-text units default to inline-block so transforms apply per piece. */
.gsap-split-unit {
	display: inline-block;
}

/* Prevents horizontal scrollbars while slide/parallax offsets are applied
   before their ScrollTrigger/tween has run once. */
.gsap-anim-el[data-gsap-settings] {
	overflow: visible;
}
