/* news.css - Additional styles for News list page */

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

.news-item {
  background: white;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-date {
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-item h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.news-item h2 a {
  color: #2c3e50;
}

.news-item h2 a:hover {
  color: #e74c3c;
  text-decoration: none;
}

.news-excerpt {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: #e74c3c;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination-section {
  text-align: center;
  padding-bottom: 60px;
}

.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0 4px;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 14px;
  background: #f5f7fa;
  color: #2c3e50;
  border-radius: 4px;
  text-decoration: none;
}

.pagination .active span,
.pagination a:hover {
  background: #e74c3c;
  color: white;
}