/* Minimal lightbox styles */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  z-index:9999;
  padding:24px;
}
.lightbox.show{display:flex; align-items:center; justify-content:center;}
.lightbox-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.14);
}
.lightbox-close{
  position:absolute;
  right:18px;
  top:18px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  font-weight:900;
  cursor:pointer;
}

/* Tanda bahwa setiap foto dalam kartu galeri dapat dibuka. */
.project-media{cursor:zoom-in;}

