/* Responsive Explore editorial hero images. */
.article-hero {
  width: min(calc(100% - 2rem), 60rem);
  margin: 0 auto 2rem;
}

.article-hero picture,
.article-hero img {
  display: block;
  width: 100%;
}

.article-hero img {
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface-soft);
}

/* Keep the Intro anchor below the sticky desktop header. */
.article-body #intro {
  scroll-margin-top: 6.5rem;
}

@media screen and (max-width: 48rem) {
  .article-body #intro {
    scroll-margin-top: 0;
  }

  .article-hero {
    margin-bottom: 1.5rem;
  }

  .article-hero img {
    border-radius: var(--radius-medium);
  }
}

@media print {
  .article-hero {
    display: none;
  }
}
