/* Click-to-enlarge lightbox for software screenshots */
.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
}

.screenshot-lightbox.is-open {
  display: flex;
}

.screenshot-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.screenshot-lightbox__close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.screenshot-lightbox__caption {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  color: #e6e6e6;
  font-size: 0.9rem;
}
