.photoGalleryBack {
  border-radius: 8px;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.photoGalleryBack:hover {
  border-color: rgba(93, 235, 229, 0.72);
  background: rgba(93, 235, 229, 0.12);
  color: #fff;
  transform: translateX(-2px);
}

.photoGalleryBack:active {
  transform: translateX(0) scale(0.96);
}

.photoGalleryScrollButton {
  font-size: 0;
  line-height: 0;
}

.photoGalleryScrollButton::before {
  display: block;
  color: currentColor;
  font-family: Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
}

.photoGalleryScrollButton[data-scroll-prev]::before {
  content: '\2190';
  transform: translate(1px, 2px);
}

.photoGalleryScrollButton[data-scroll-next]::before {
  content: '\2192';
  transform: translate(-1px, 2px);
}

.photoGalleryThumbs {
  grid-auto-columns: clamp(132px, 10.5vw, 180px);
}

.photoGalleryThumb {
  width: 100%;
  height: auto;
  min-width: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  border: 0;
  background: rgba(5, 8, 9, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.photoGalleryThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.photoGalleryThumb:hover,
.photoGalleryThumb.is-active {
  border-color: transparent;
  outline: 1px solid rgba(85, 240, 232, 0.92);
  outline-offset: -1px;
}
