/* Fotoalbum — rasterweergave van de Photoswipe-galerij.
   De formatter levert .photoswipe-gallery met per foto een klasseloze div
   en daarin .photoswipe > img. Er zijn geen field--name-/field__item-klassen. */

.photoswipe-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.photoswipe-gallery > * {
  min-width: 0;
}

.photoswipe-gallery .photoswipe {
  display: block;
}

.photoswipe-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.photoswipe-gallery img:hover {
  transform: scale(1.03);
}