@import url("https://cdn.jsdelivr.net/npm/lightgallery@2.9.0/css/lightgallery-bundle.min.css");

.photo-album {
  margin-bottom: 56px;
}

.photo-album > .date:first-child {
  margin-top: 0;
}

.photo-album > h1 {
  margin-top: 0;
}

.photo-album-title {
  margin-bottom: 8px;
}

.photo-album-title a,
.photo-album-title a:visited {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}

.photo-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.photo-card {
  margin: 0;
}

.photo-card a {
  display: block;
}

.photo-card img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media screen and (max-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
