.news-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  max-width: 100%;
}

.news-item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border: thin solid white;
  padding: 18px;
}

.news-preview {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 20px;
}

.news-summary {
  display: flex;
  flex-direction: column;
  row-gap: 10px;  
}

.news-title, .news-author, .news-description {
  margin: 0;
}

@media screen and (min-width: 600px) {

  .news-preview {
    flex-direction: row;
    column-gap: 20px;
    padding: 20px;
  }

  .news-image > img {
    max-height: 225px;
    float: right;
  }

  .news-image {
    min-width: 40%;
    max-width: 40%;
  }

}
