.news-banner {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 72px;
}
.news-banner .banner-inner h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.news-banner .banner-inner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
}
.breadcrumb a {
  color: #fff;
  transition: opacity 0.2s;
}
.breadcrumb a:hover {
  opacity: 1;
}
.breadcrumb .separator {
  font-size: 12px;
}
.news-main {
  padding: 40px 0 60px;
  background: var(--secondary-color);
}
.category-filter-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hot-news-section {
  margin-bottom: 0;
}
.hot-news-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-list {
  background: transparent;
}
.article-list .article-card:first-child {
  border: 2px solid rgba(30, 64, 175, 0.15);
  background: linear-gradient(to right, rgba(30, 64, 175, 0.04), #fff);
}
.article-list .article-card:first-child .card-body h3 a {
  color: var(--primary-color);
  font-size: 19px;
}
.pagination-wrapper {
  margin-top: 40px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .news-banner {
    height: 240px;
    margin-top: 72px;
  }
  .news-banner .banner-inner h1 {
    font-size: 26px;
  }
  .news-banner .banner-inner p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .news-main {
    padding: 24px 0 40px;
  }
  .category-filter-wrapper {
    padding: 16px;
  }
  .hot-news-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .article-list .article-card:first-child .card-body h3 a {
    font-size: 17px;
  }
}