/* Micropet lightbox — graduates page & gallery */
.mp-lightbox{
  position:fixed; inset:0; z-index:9999; background:rgba(20,12,8,.92);
  display:none; align-items:center; justify-content:center;
  padding: 24px; cursor: zoom-out;
  animation: mpLbFade .18s ease both;
}
.mp-lightbox.is-open{ display:flex; }
.mp-lightbox img{
  max-width: 100%; max-height: 92vh; object-fit: contain;
  box-shadow: 0 30px 60px -16px rgba(0,0,0,.5);
  cursor: default;
}
.mp-lightbox-close{
  position:absolute; top:18px; right:22px;
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.35); background:transparent; color:#fff;
  font-size:22px; line-height:1; cursor:pointer;
}
.mp-lightbox-prev,.mp-lightbox-next{
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,.35);
  background:transparent; color:#fff; font-size:22px; cursor:pointer;
}
.mp-lightbox-prev{ left:18px; } .mp-lightbox-next{ right:18px; }
@keyframes mpLbFade{ from{opacity:0} to{opacity:1} }

.grad-grid img{ cursor: zoom-in; }
