.news-banner {
  height: 300px;
  background: url("../images/news-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  margin-bottom: 50px;
}

.news-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.news-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
}

.news-banner-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.news-list {
  padding: 50px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-item {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.news-content h2 a {
  color: #1a5276;
  text-decoration: none;
}

.news-meta {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.news-meta span {
  margin-right: 15px;
}

.news-excerpt {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 5px 10px;
  background-color: #1a5276;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #154360;
}

