/* Lightbox backdrop */
.simple-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

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

/* Image */
.simple-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  border-radius: 6px;
}

/* UX hint */
.ck.ck-content img {
  cursor: zoom-in;
}