
/* Gallery modal */
.gallery-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,0.8);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.gallery-modal img{
max-width:90%;
max-height:90%;
border-radius:6px;
box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.gallery-modal.active{
display:flex;
}

.gallery-close{
position:absolute;
top:30px;
right:40px;
font-size:28px;
color:#fff;
cursor:pointer;
}

/* modal click-through fix */
.gallery-modal.active{
  pointer-events:auto;
}

/* modal robust close */
body.modal-open{
  overflow:hidden;
}
.gallery-modal{
  cursor: zoom-out;
}
.gallery-modal img{
  cursor: zoom-out;
}
