/* Consistent uploaded-image presentation */
.image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile > img {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.gallery-grid img,
.gallery-page img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 520px) {
  .gallery-grid img,
  .gallery-page img { aspect-ratio: 3 / 2; }
  .profile > img { max-height: 560px; }
}
