.gallery-grid {
  margin: 0 auto;
  padding: 5px;
  max-width: 1400px;
}

/* Style des colonnes de la grille */
.gallery-grid .views-col {
  width: calc(33.333% - 5px);
  margin-bottom: 5px;
}

/* Style du conteneur de l'image */
.views-field-field-media-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 5px;
}

/* Style pour le div qui contient directement l'image */
.views-field-field-media-image > div {
  width: 100%;
  height: 100%;
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f5f5f5;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-link:hover img {
  transform: scale(1.05);
}

/* PhotoSwipe styles */
.pswp__bg {
  background: rgba(0, 0, 0, 0.9) !important;
}

.pswp__img {
  object-fit: contain !important;
}

.pswp__button {
  background-color: rgba(255, 255, 255, 0.3) !important;
  width: 50px !important;
  height: 50px !important;
}

.pswp__button:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .gallery-grid .views-col {
    width: calc(50% - 5px);
  }
}

@media screen and (max-width: 576px) {
  .gallery-grid .views-col {
    width: 100%;
  }
}
