/* Keep the featured blog artwork fully visible on narrow screens. */
section[aria-labelledby="featured-article-heading"] a > div > div:first-child > img {
  object-fit: contain;
  background: #fff;
}

section[aria-labelledby="featured-article-heading"] a:hover > div > div:first-child > img {
  transform: none;
}

section[aria-labelledby="featured-article-heading"] a > div > div:first-child {
  height: auto;
  min-height: 0;
  /* aspect-ratio: 16 / 9; */
}

@media (min-width: 1024px) {
  section[aria-labelledby="featured-article-heading"] a > div > div:first-child {
    height: 100%;
    min-height: 24rem;
    aspect-ratio: auto;
  }

  section[aria-labelledby="featured-article-heading"] a > div > div:first-child > img {
    object-fit: cover;
  }

  section[aria-labelledby="featured-article-heading"] a:hover > div > div:first-child > img {
    transform: scale(1.05);
  }
}
