.news-page {
  min-width: 100vw;
  min-height: 100vh;
  background: var(--color-bg);
}

.news-row {
  width: 100%;
  padding: 1em;
  display: flex;
  gap: 2em;
}

.news {
  flex: 1;
}

.news .news-img {
  height: 400px;
  margin-bottom: 1em;
}

.news .news-date {
  margin-bottom: 0.5em;
}

.news-info {
  font-size: 16px;
  line-height: 1.35em;
}

.news-info h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.4em;
}

.news-row {
  padding-bottom: 2em;
}

@media (max-width: 900px) {
  .news-row {
    flex-direction: column;
  }

  .news .news-img {
    height: 300px;
  }
}
