.photoswipe-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1em;
  padding: 1em;
  pointer-events: none;

  img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: var(--bs-border-radius);
    transition: 250ms 50ms;
    pointer-events: auto;
    margin: 0;
  }

  &:hover img:not(:hover) {
    filter: saturate(.2) opacity(.5);
  }
}
.photoswipe-gallery a {
  position: relative;
}
.photoswipe-gallery a:after {
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    font-size: 1.2rem;
    content:'\f00e';
  }