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

.news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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