.galleryContainer {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery {
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  display: flex;
  scrollbar-width: none;
}

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

.gallery img {
  scroll-snap-align: center;
  object-fit: cover;
}

.galleryControls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 0 16px;
}

.galleryControls button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  outline: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s ease-in-out;
}

.galleryControls button:hover {
  background: rgba(0, 0, 0, 1);
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}

/* Custom below */

.galleryContainer {
  width: 775px;
}

@media (max-width: 992px) {
  .galleryContainer {
    width: 550px;
  }
}

.galleryControls button {
  font-weight: bolder;
}