h1 {
  padding: 20px;
}

article {
  padding: 20px;
  display: grid;
  grid-template-columns: 6fr 4fr;
  align-items: center;
  border-top: 1px solid var(--primary);
}

h2 {
    text-transform: uppercase;
    font-weight: lighter;
    color: var(--primary);
    padding-bottom: 20px;
}

.news-text {
  padding-right: 20px;
}

article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-img {
  display: flex;
  justify-content: center;
}

.news-img > div {
  max-width: 400px;
}

@media screen and (max-width: 992px) {
  article {
    grid-template-columns: 1fr;
  }

  .news-text {
  padding-bottom: 20px;
}

  .news-img > div {
    max-width: 100%;
  }
}
