/**
 * GSAP Motion for Elementor — base styles.
 * Keeps animated elements sane before JS initializes, and respects
 * prefers-reduced-motion at the CSS layer too.
 */

.gsme-animate {
	will-change: transform, opacity;
}

@media ( prefers-reduced-motion: reduce ) {
	.gsme-animate {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
}
