/* 풀스크린 세로 스크롤 사진 뷰어 (공통) */

.fp-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  display: flex;
  flex-direction: column;
}
.fp-photo-viewer[hidden] { display: none; }

.fp-photo-viewer__close {
  position: fixed;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2001;
  width: var(--height-lg);
  height: var(--height-lg);
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(8px);
}
.fp-photo-viewer__close:hover { background: rgba(255, 255, 255, 0.25); }

.fp-photo-viewer__counter {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2001;
  font-size: var(--font-size-md);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.fp-photo-viewer__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fp-photo-viewer__hint {
  text-align: center;
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-4) 0 var(--space-2);
}

.fp-photo-viewer__img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2px;
  display: block;
}
.fp-photo-viewer__img:last-child { margin-bottom: 0; }
