.home-news h2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 500px) {
  .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .news-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
  }
}
@media (min-width: 1367px) {
  .news-list {
    gap: 30px;
  }
}
.news-list .post-content .looks-like-h3 {
  color: #1E3243;
  height: 82px;
  margin-bottom: 30px;
}

.news-item img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.news-item .looks-like-h3 {
  color: #234161;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 96px;
}
.news-item .news-date {
  font-size: 0.875em;
  color: #607381;
}