@media (prefers-reduced-motion: no-preference) {
  .venue-card {
    will-change: transform;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 38, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__dialog {
  background: #f7f9fb;
  max-width: min(56rem, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 1rem;
  outline: 2px solid #b8e63a;
  outline-offset: 4px;
}

.lightbox__dialog img,
.lightbox__dialog svg {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox__close {
  margin-top: 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid #2a4060;
  background: #fff;
  cursor: pointer;
}

.lightbox__caption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: #5a6573;
  margin-top: 0.75rem;
}

body.lightbox-open {
  overflow: hidden;
}
