/* Project gallery modal */
#projectGalleryModal { position:fixed; inset:0; z-index:12000; display:none; }
#projectGalleryModal .pgm-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.6); cursor:pointer; }
#projectGalleryModal .pgm-dialog { position:relative; max-width:920px; margin:6vh auto; background:#fff; border-radius:8px; padding:12px; box-shadow:0 24px 60px rgba(0,0,0,0.45); }
.pgm-close { position:absolute; right:10px; top:8px; background:transparent; border:0; font-size:28px; cursor:pointer; line-height:1; }
.pgm-image-wrap img { max-width:100%; height:auto; display:inline-block; border-radius:6px; }
.pgm-caption { color:#666; font-size:14px; margin-top:6px; }
.pgm-controls { margin-top:10px; }
.pgm-prev, .pgm-next { background:#111; color:#fff; border:0; padding:8px 12px; border-radius:6px; cursor:pointer; font-weight:600; }
body.pgm-open { overflow:hidden; }
@media (max-width:768px) {
  #projectGalleryModal .pgm-dialog { margin:4vh 12px; padding:10px; }
  .pgm-prev, .pgm-next { padding:6px 10px; }
}