/* Lightbox overlay - injected by site.js, styled here so no inline CSS is needed
   (the Content Security Policy forbids inline styles - PRD 48). */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(7, 9, 12, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  border: 1px solid #2c3a4a;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.85);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2c3a4a;
  background: #141b24;
  color: #f2f5f8;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover { background: #24313f; }
