/**
 * Moyo Reveal — Shared scroll-reveal base animation
 * File: masterstudy-child/inc/pages/home/moyo-reveal.css
 *
 * Base opacity/transform styles for .moyo-reveal elements.
 * JS (moyo-reveal.js) adds .is-visible via IntersectionObserver.
 * !important overrides Elementor inline styles that may set opacity/transform.
 */

.moyo-reveal {
	opacity: 0 !important;
	transform: translateY(30px) !important;
	transition: opacity 0.6s ease, transform 0.6s ease !important;
}
.moyo-reveal.is-visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}
