.lightbox {
  width: min(92vw, 1200px);
  max-width: min(92vw, 1200px);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--rounded);
  background: transparent;
  overflow: visible;
  box-shadow: none;
}
.lightbox::backdrop {
  background: rgba(15, 18, 28, 0.8);
  backdrop-filter: blur(4px);
}

.lightbox-frame {
  position: relative;
  margin: 0;
  padding: 18px 18px 14px;
  background: var(--background);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 12px;
  color: var(--text-light, var(--gray-600));
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-gray);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-gray);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

@media (max-width: 700px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
}

/*# sourceMappingURL=lightbox.css.map */