.content {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem !important;
}

figure img {
  height: 350px;
  aspect-ratio: 16/9;
  border-radius: 1.2rem;
}

.article-content {
  display: flex;
  column-gap: 1.5rem;
  margin-top: 3rem;
}


.article-content article {
  width: 100%;
}

article h2 {
  padding-top: .8rem;
  line-height: 2.5rem;
}

article p:first-of-type {
  padding-top: 5rem;
}

@media screen and (max-width: 650px) {
  figure img {
    width: 100%;
    height: auto;
    margin-bottom: var(--indent-3);
  }

  .article-content {
    column-gap: 0;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 850px) and (min-width: 650px) {
  figure img {
    height: 250px;
  }
  .article-content {
    flex-wrap: wrap;
  }

}

@media screen and (max-width: 1280px) and (min-width: 850px) {
  figure img {
    height: 350px;
  }
  .article-content {
    flex-wrap: wrap;
  }

}

@media screen and (min-width: 1280px) {
  figure img {
    height: 350px;
  }

}
