/*! PhotoSwipe CSS for galleries layout */

.pswp-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* wrap for multi-line, nowrap for one line */
  gap: 8px;
  overflow-x: auto; /* horizontal scroll if needed */
}

.pswp-gallery a {
  flex-shrink: 0;
}

.pswp-gallery img {
  width: 220px;  /* fixed thumbnail width */
  height: 160px;
  object-fit: cover;
  display: block;
}