/*
 * Keep the page's horizontal clipping without creating an ancestor scroll
 * container. `overflow-x: hidden` computes to `overflow-y: auto` and prevents
 * the CHEZHIGU intro's sticky stage from sticking to the viewport.
 */
html,
body,
#root {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* Keep the blue hero description legible over the daytime road image. */
.intro-day-content .hero-lead {
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 2px 12px rgba(3, 38, 66, 0.38);
}
