.photo-grid .photo[data-photo-viewer-ready] {
  cursor: zoom-in;
}

.photo-grid .photo[data-photo-viewer-ready]:focus-visible {
  outline: 3px solid rgba(255, 180, 58, .72);
  outline-offset: 4px;
}

.site-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 76px 82px;
  background: rgba(5, 6, 13, .94);
  color: #fff;
}

.site-photo-viewer.open {
  display: flex;
}

.site-photo-viewer__figure {
  display: grid;
  max-width: min(1180px, 100%);
  max-height: 100%;
  margin: 0;
  justify-items: center;
}

.site-photo-viewer__image {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 170px);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  user-select: none;
}

.site-photo-viewer__caption {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
  font: 600 14px/1.45 "Manrope", sans-serif;
  text-align: center;
}

.site-photo-viewer__count {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .64);
  font: 700 12px/1 "Manrope", sans-serif;
}

.site-photo-viewer__button {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font: 400 28px/1 Arial, sans-serif;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}

.site-photo-viewer__button:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .18);
}

.site-photo-viewer__button:focus-visible {
  outline: 3px solid rgba(255, 180, 58, .72);
  outline-offset: 3px;
}

.site-photo-viewer__close {
  top: 18px;
  right: 18px;
  font-size: 20px;
}

.site-photo-viewer__prev,
.site-photo-viewer__next {
  top: 50%;
  transform: translateY(-50%);
}

.site-photo-viewer__prev {
  left: 16px;
}

.site-photo-viewer__next {
  right: 16px;
}

body.site-photo-viewer-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .site-photo-viewer {
    padding: 64px 12px 96px;
  }

  .site-photo-viewer__image {
    max-height: calc(100dvh - 190px);
    border-radius: 8px;
  }

  .site-photo-viewer__caption {
    margin-top: 12px;
    padding: 0 10px;
    font-size: 13px;
  }

  .site-photo-viewer__prev,
  .site-photo-viewer__next {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .site-photo-viewer__prev {
    left: 20px;
  }

  .site-photo-viewer__next {
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-photo-viewer__button {
    transition: none;
  }
}
