.feed-photo-grid {
  column-count: 2;
  column-gap: 3px;
  max-height: none;
}
.feed-photo-grid .photo-tile {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 3px;
}
.feed-photo-grid .photo-tile img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0006;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}
.photo-tile {
  cursor: zoom-in;
}
.photo-lightbox {
  position: fixed;
  inset: 0;
  background: #000e;
  z-index: 1000;
  display: grid;
  place-items: center;
}
.photo-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.photo-lightbox button {
  position: absolute;
  background: #fff;
  border: 0;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 24px;
}
.photo-lightbox .close {
  top: 20px;
  right: 24px;
}
.photo-lightbox .prev {
  left: 24px;
}
.photo-lightbox .next {
  right: 24px;
}
.photo-lightbox .count {
  position: absolute;
  bottom: 22px;
  color: #fff;
}
