/* Keep original book illustrations fully visible at every screen size. */
.hero-art img,
.book-art img,
.gallery img {
  object-fit: contain;
  object-position: center;
  background: #fff9ed;
}

.book-art img {
  aspect-ratio: 4 / 3;
}

.gallery img {
  aspect-ratio: 4 / 3;
}

.visit-photo img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 540px) {
  .hero-art img,
  .book-art img,
  .gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .visit-photo img {
    max-height: none;
  }

  .hero-art,
  .book-art,
  .gallery figure {
    overflow: visible;
  }
}
