.kw-expandable-shot { cursor: zoom-in; }

.kw-expandable-shot:focus {
  outline: 3px solid rgba(88, 183, 255, .95);
  outline-offset: 4px;
}

.kw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 0;
  background: rgba(2, 14, 38, .78);
  backdrop-filter: blur(16px);
}

.kw-lightbox[hidden] { display: none; }

.kw-lightbox-panel {
  position: relative;
  width: min(1280px, 96vw);
  max-height: 92vh;
  padding: 14px;
  border: 1px solid rgba(214, 242, 255, .72);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(198, 226, 244, .92), rgba(104, 164, 208, .74)),
    rgba(225, 243, 255, .78);
  box-shadow: 0 34px 110px rgba(0, 12, 34, .54), inset 0 1px rgba(255, 255, 255, .46);
}

.kw-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  border-radius: 14px;
  background: rgba(4, 20, 52, .88);
  box-shadow: 0 18px 52px rgba(0, 24, 70, .26);
}

.kw-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 242, 255, .86);
  border-radius: 14px;
  color: #f7fbff;
  background: rgba(7, 34, 77, .92);
  box-shadow: 0 18px 38px rgba(0, 24, 70, .34), inset 0 1px rgba(255, 255, 255, .22);
  cursor: pointer;
}

.kw-lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.3;
  stroke-linecap: round;
}

@media (max-width: 620px) {
  .kw-lightbox { padding: 12px; }
  .kw-lightbox-panel {
    width: 100%;
    padding: 8px;
    border-radius: 16px;
  }
  .kw-lightbox-close {
    top: 8px;
    right: 8px;
  }
}
