/* Große Albumvorschauen: zwei Bilder am Desktop, ein Bild pro Zeile auf dem Handy. */
.photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 32px;
}
.photo-button {
  height: auto;
  aspect-ratio: 3 / 2;
}
.photo-card:nth-child(3n+2) { transform: none; }
.photo-card:nth-child(2n) { transform: translateY(32px); }
.photo-card figcaption { margin-top: 15px; font-size: 12px; }
.photo-card figcaption > span:last-child { font-size: 10px; }
@media (max-width: 800px) {
  .photo-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .photo-card:nth-child(n) { transform: none; }
  .photo-card figcaption { font-size: 11px; margin-top: 12px; }
  .photo-card figcaption > span:last-child { font-size: 9px; }
  .album-bottom { margin-top: 34px; }
}
