/*
 * Homepage-only horizontal overflow containment.
 * Keep navigation menus and trust-bar artwork vertically visible while
 * preventing decorative animations from widening the document canvas.
 */
body.home-glass-ui #site-nav.nav-wrapper::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

body.home-glass-ui main#main {
  overflow-x: clip;
  overflow-y: visible;
}
