.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9,22,41,.96);
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.lightbox.open { display: flex; }
.lightbox-inner, .lb-inner {
  width: 100%;
  position: relative;
  margin-block: auto;
  padding-top: 52px;
}
.lightbox img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close, .lb-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox button:focus-visible { outline: 2px solid #E0AA45; outline-offset: 2px; }
.lightbox-cap, .lb-cap { margin-top: 1rem; }
#lb-area {
  color: #E0AA45;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}
#lb-cap { color: rgba(255,255,255,.75); font-size: .9375rem; line-height: 1.6; }
