/* Prevent horizontal scroll sitewide — especially mobile video landing */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body,
#root {
  overflow-x: hidden;
  max-width: 100%;
}

/* Mobile: video landing drops position:fixed — oversized YouTube iframe was leaking */
@media (max-width: 900px) {
  .video-landing {
    overflow-x: hidden !important;
    max-width: 100%;
  }

  .video-landing__yt-shell {
    overflow: hidden !important;
    max-width: 100%;
  }

  .video-landing__columns {
    max-width: 100%;
    overflow-x: hidden;
  }

  .video-landing .video-landing__yt-core {
    width: calc(max(100%, 177.78vh) + 48px);
    height: calc(max(56.25vw, 100vh) + 48px);
  }
}

.newton-tech__logo-strip {
  overflow: hidden;
  max-width: 100%;
}

.company-page,
.company-page__layout,
.intro-video-page {
  overflow-x: hidden;
  max-width: 100%;
}
