/* Prevent horizontal scroll from off-screen AOS animations (fade-left,
   fade-right, slide-*). clip is preferred over hidden because hidden creates
   a new scroll container which breaks position:sticky on child elements. */
html,
body {
    overflow-x: hidden; /* fallback for older browsers */
    overflow-x: clip;
}
