/*
 * Scope horizontal overflow clipping to the homepage.
 * This file loads after the design system to neutralize the legacy global body overflow rule on documentation pages.
 */
body {
  overflow-x: visible;
}

body:has(.ls-home) {
  overflow-x: hidden;
}
