.article {
  max-width: 1220px;
}

.article-head {
  max-width: 1000px;
  margin-bottom: 42px;
}

.article h1 {
  font-size: clamp(42px, 6vw, 82px);
  margin-bottom: 24px;
}

.article > .hero-image {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  max-height: none;
  object-fit: cover;
  object-position: center 38%;
}

.article-body {
  max-width: 920px;
  margin: 58px auto;
}

@media (max-width: 760px) {
  .article {
    display: flex;
    flex-direction: column;
    padding: 20px 18px 60px;
  }

  .article-head {
    order: 2;
    width: 100%;
    margin: 22px 0 28px;
    text-align: left;
  }

  .article h1 {
    font: 700 39px/1.06 "Roboto Condensed", Arial, sans-serif;
    margin: 12px 0;
  }

  .article-head .byline {
    margin-top: 18px;
  }

  .article > .hero-image {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    max-width: 100%;
    max-height: none;
    margin: 0;
    object-fit: contain;
  }

  .article-body {
    order: 3;
    width: 100%;
    margin: 0 auto;
  }

  .article-body img {
    max-width: 100%;
    height: auto;
  }
}
