
/* Digitalix image lightbox */
.dx-zoomable-image{
  cursor:zoom-in;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.dx-zoomable-image:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 42px rgba(12,38,68,.18);
}
.dx-zoomable-image:focus{
  outline:3px solid rgba(13,102,255,.35);
  outline-offset:4px;
}
.dx-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(1,8,18,.92);
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease, visibility .2s ease;
}
.dx-lightbox.is-open{
  opacity:1;
  visibility:visible;
}
.dx-lightbox-image{
  display:block;
  max-width:min(96vw,1800px);
  max-height:90vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:10px;
  box-shadow:0 28px 90px rgba(0,0,0,.55);
  cursor:zoom-out;
}
.dx-lightbox-close{
  position:fixed;
  top:16px;
  right:20px;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  background:rgba(0,0,0,.38);
  color:#fff;
  font-size:34px;
  line-height:1;
  cursor:pointer;
}
.dx-lightbox-caption{
  position:fixed;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  max-width:min(90vw,900px);
  padding:8px 14px;
  border-radius:8px;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:14px;
  text-align:center;
}
body.dx-lightbox-open{overflow:hidden}
@media(max-width:640px){
  .dx-lightbox{padding:12px}
  .dx-lightbox-image{max-width:98vw;max-height:86vh;border-radius:6px}
  .dx-lightbox-close{top:8px;right:8px}
}
