.news {
  padding: 80px 0;
  background-color: #D0F8D2;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 165px;
  overflow: hidden;
}

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

.news-content {
  padding: 24px;
}

.news-title {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 26.25px;
  color: #000000;
  margin-bottom: 12px;
}

.news-excerpt {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 26.25px;
  color: #000000;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-date {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 26.25px;
  color: #BDBDBD;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .news-content {
    padding: 16px;
  }
  
  .news-title,
  .news-excerpt,
  .news-date {
    font-size: 12px;
    line-height: 18px;
  }
}
