/* ================================================================
   PhotoSwipe 링크 & 썸네일 스트립
   ================================================================ */

/* PhotoSwipe 썸네일 스트립 */
.pswp-thumb-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pswp-thumb-strip::-webkit-scrollbar {
  display: none;
}
.pswp-thumb-strip__inner {
  display: flex;
  gap: 6px;
  justify-content: center;
  min-width: min-content;
}
.pswp-thumb-strip__item {
  flex: 0 0 auto;
  width: 100px;
  height: 75px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0.55;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  outline: none;
}
.pswp-thumb-strip__item:hover {
  opacity: 0.85;
}
.pswp-thumb-strip__item.is-active {
  opacity: 1;
  border-color: var(--white-color);
  transform: scale(1.08);
}
.pswp-thumb-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media (max-width: 480px) {
  .pswp-thumb-strip__item {
    width: 72px;
    height: 54px;
  }
}
