/* 新闻资讯中心 banner 区域 */
.page-banner {
  background: linear-gradient(135deg, #1A365D 0%, #2B4F7A 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-banner h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

/* 列表页标题区域 */
.list-header {
  padding: 40px 0 20px;
}

.list-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: inline-block;
}

.list-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.list-header p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 8px;
}

/* 筛选工具栏间距 */
.list-toolbar {
  margin-bottom: 28px;
}

/* 文章卡片间间距微调 */
.list-content .article-card {
  margin-bottom: 20px;
}

/* 分页区域 */
.list-pagination {
  padding: 20px 0 40px;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 60px 0;
  }
  .page-banner h1 {
    font-size: 30px;
  }
  .list-header h2 {
    font-size: 24px;
  }
}