/* Horizontal-scroll gallery override. Scoped to .sb-photo-gallery-strip
 * so it never leaks into other Gallery blocks. */
.sb-photo-gallery-strip .sb-photo-gallery-strip__track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: var(--wp--preset--spacing--xs);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sb-photo-gallery-strip .sb-photo-gallery-strip__track > figure.wp-block-image {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  margin: 0;
}

.sb-photo-gallery-strip .sb-photo-gallery-strip__track > figure.wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}
