/* SBK article lightbox - 2026-08-17 */
main article.item-page img.sbk-lightbox-enabled,
main .item-page img.sbk-lightbox-enabled,
main .com-content-article__body img.sbk-lightbox-enabled {
  cursor: zoom-in;
}

.sbk-article-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.sbk-article-lightbox::backdrop {
  background: rgba(5, 17, 31, .92);
}

.sbk-article-lightbox[open] {
  display: grid;
  place-items: center;
}

.sbk-lightbox-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(2.75rem, auto) minmax(0, 1fr) minmax(2.75rem, auto);
  align-items: center;
  width: min(96vw, 1500px);
  height: 96vh;
}

.sbk-lightbox-shell figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  margin: 0;
}

.sbk-lightbox-shell figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(96vh - 4rem);
  object-fit: contain;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .45);
}

.sbk-lightbox-shell figcaption {
  max-width: 80ch;
  padding: .65rem 1rem;
  color: #fff;
  text-align: center;
}

.sbk-lightbox-close,
.sbk-lightbox-prev,
.sbk-lightbox-next {
  z-index: 2;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .58);
  cursor: pointer;
}

.sbk-lightbox-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 2rem;
  line-height: 1;
}

.sbk-lightbox-prev,
.sbk-lightbox-next {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.55rem;
}

.sbk-lightbox-close:hover,
.sbk-lightbox-close:focus-visible,
.sbk-lightbox-prev:hover,
.sbk-lightbox-prev:focus-visible,
.sbk-lightbox-next:hover,
.sbk-lightbox-next:focus-visible {
  outline: 2px solid #fff;
  background: rgba(24, 111, 172, .95);
}

@media (max-width: 640px) {
  .sbk-lightbox-shell {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    width: 100vw;
    height: 100vh;
  }
  .sbk-lightbox-shell figure img { max-height: calc(100vh - 5rem); }
  .sbk-lightbox-prev,
  .sbk-lightbox-next { width: 2.35rem; height: 2.35rem; }
}
