/* Photo Gallery Styles */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.photo-gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
   display: block;
}

/* Tablet (max width 1024px) */
@media (max-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max width 600px) */
@media (max-width: 600px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

.pswp__button--zoom {
  display: none !important;
}

/* Disable zoom cursor in PhotoSwipe */
.pswp__img {
  cursor: default !important;
}
