.news-gallery {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  color: #1a3b8b;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 3px solid #1a3b8b;
  padding-bottom: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.news-card {
  background: #f9faff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(58, 92, 168, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(58, 92, 168, 0.25);
}

.news-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 15px 20px 10px;
}

.news-description {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 20px 20px;
  flex-grow: 1;
  color: #3b4c87;
}

.read-more {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 600;
  color: #1a3b8b;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.read-more:hover {
  border-color: #1a3b8b;
}
