/* Base styling to ensure elements are hidden before GSAP takes over to prevent flash of unstyled content (FOUC) */
.angie-gsap-slide-up {
    opacity: 0;
    visibility: hidden;
}

/* Once JS is loaded, we can make it visible as GSAP will handle the initial state */
.js .angie-gsap-slide-up {
    visibility: visible;
}