/**
 * EDS Motion Effects — CSS
 * Entrance animation base styles (uses Animate.css class names)
 */

/* Ensure animated elements are ready */
[data-eds-motion] {
  will-change: transform;
}

/* Entrance animation base — visibility hidden until intersected */
[data-eds-motion].animated {
  animation-fill-mode: both;
}
/* Ensure elements with motion effects don't clip their animations */
[data-settings] { will-change: auto; }
