/* TKG News gallery lightbox — scoped to article page only */
.tkg-news-gallery-zoom {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.tkg-news-gallery-zoom:focus {
  outline: 2px solid #315d83;
  outline-offset: 3px;
}
.tkg-news-gallery-zoom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.tkg-news-zoom-mark {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 30, 45, .78);
  color: #fff;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.tkg-news-gallery-zoom:hover .tkg-news-zoom-mark,
.tkg-news-gallery-zoom:focus .tkg-news-zoom-mark {
  opacity: 1;
  transform: translateY(0);
}
.tkg-news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(7, 12, 18, .92);
  backdrop-filter: blur(4px);
}
.tkg-news-lightbox.is-open {
  display: flex;
}
.tkg-news-lightbox-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tkg-news-lightbox-image {
  display: block;
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  user-select: none;
  -webkit-user-drag: none;
}
.tkg-news-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
  cursor: pointer;
}
.tkg-news-lightbox-close:hover,
.tkg-news-lightbox-close:focus {
  background: rgba(255,255,255,.14);
  outline: none;
}
body.tkg-news-lightbox-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  .tkg-news-lightbox { padding: 56px 14px 20px; }
  .tkg-news-lightbox-image { max-width: 96vw; max-height: 82vh; }
  .tkg-news-zoom-mark { opacity: .9; transform: none; width: 30px; height: 30px; font-size: 21px; }
}
