/*
 * Elementor's decorative header wave is intentionally wider than 320px.
 * Clip that decoration at the home-page viewport so it cannot create a
 * horizontal scrollbar. Header/footer markup and styling stay untouched.
 */
body.home {
  overflow-x: hidden !important;
}

@supports (overflow: clip) {
  body.home {
    overflow-x: clip !important;
  }
}
