/* Square photo crop, replacing the old server-side resize_cover sizes
   (/pictures/500/... and /pictures/250/...) with pure CSS. */
.square-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
