/* Homepage PC-only scroll snap enhancement */
@media (min-width: 1024px) {
  html.home-scroll-snap,
  body.home-scroll-snap {
    height: 100%;
    overflow: hidden;
  }

  body.home-scroll-snap #root {
    height: 100%;
  }

  body.home-scroll-snap [data-home-scroll-container] {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  body.home-scroll-snap [data-home-scroll-section] {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  body.home-scroll-snap [data-home-scroll-section] > * {
    width: 100%;
  }

  body.home-scroll-snap [data-home-scroll-section="hero"] {
    justify-content: stretch;
  }

  body.home-scroll-snap [data-home-scroll-section="footer"] {
    min-height: auto;
    scroll-snap-align: end;
    justify-content: flex-end;
  }
}

@media (max-width: 1023.98px) {
  html.home-scroll-snap,
  body.home-scroll-snap {
    overflow: auto;
    height: auto;
  }
}
