/* Keep horizontal gestures inside the gallery, without widening the page. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.marquee {
  contain: inline-size;
}
