.gallery-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.thumbnails {
  position: absolute;
  bottom: 8px;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.thumbnails div {
  width: 8px;
  height: 8px;
  cursor: pointer;
  background: #aaa;
  border-radius: 100%;
}

.thumbnails div.highlighted {
  background-color: #777;
}

slides {
  margin: 0 16px;
  display: grid;
  grid-auto-flow: row dense;
  gap: 1rem;
  width: 540px;
  padding: 0 0.25rem;
  height: 200px;
  overflow-y: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  /*scrollbar-width: none;*/
}

.slides > div {
  scroll-snap-align: start;
}

.slides img {
  width: 150px;
  object-fit: contain;
}

.slides::-webkit-scrollbar {
  display: none;
}

