/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 42, 98, 0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: 1px solid rgba(135, 174, 206, 0.45);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(29, 42, 98, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #F5F3D8;
  font-size: 36px;
  cursor: pointer;
  font-weight: 300;
  user-select: none;
}

.lightbox-close:hover {
  color: #AFD06E;
}
