.expandable-image {
  cursor: zoom-in;
}
.expandable-image:focus-visible {
  outline: 2px solid var(--bs-primary, #0d6efd);
  outline-offset: 2px;
}

body.fullscreen-lock {
  overflow: hidden;
}

.fullscreen-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.fullscreen-overlay[hidden] {
  display: none;
}

.fullscreen-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4.5rem;
  box-sizing: border-box;
  pointer-events: none;
}

.fullscreen-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  cursor: pointer;
}

.fullscreen-spinner {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
}

.fullscreen-spinner[hidden] {
  display: none;
}

.fullscreen-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.fullscreen-close:hover, .fullscreen-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}
.fullscreen-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.fullscreen-image-caption {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.fullscreen-hint {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fullscreen-hint-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fullscreen-image,
  .fullscreen-hint,
  .fullscreen-close {
    transition: none;
  }
}/*# sourceMappingURL=fullscreen-image-overlay.css.map */