.photo-thumb-button {
  display: block;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: zoom-in;
}

.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 12, 16, 0.78);
}

.photo-viewer-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(820px, 92vh);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.photo-viewer-panel img {
  width: 100%;
  max-height: calc(92vh - 82px);
  object-fit: contain;
  background: #13090d;
}

.photo-viewer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.64);
  color: white;
  font-size: 1.35rem;
  line-height: 1;
}

.photo-viewer-caption {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--muted);
}

.photo-viewer-caption strong {
  color: var(--ink);
}
