/* Page11 专属样式 */
.page11-banner::before {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(30, 64, 175, 0.5));
}

.page-main {
  padding: 60px 20px;
}

.list-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* 列表网格布局 */
.page11-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 针对网格布局调整卡片为上下结构 */
.page11-list-grid .article-card {
  flex-direction: column;
  margin-bottom: 0;
}

.page11-list-grid .article-card .card-thumb {
  width: 100%;
  height: 200px;
}

.page11-list-grid .article-card .card-thumb img {
  width: 100%;
  height: 100%;
}

.page11-list-grid .article-card .card-body {
  padding: 16px 20px;
}

@media (max-width: 1024px) {
  .page11-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-main {
    padding: 40px 20px;
  }
  .section-title {
    font-size: 26px;
  }
  .page11-list-grid {
    grid-template-columns: 1fr;
  }
  .page11-list-grid .article-card .card-thumb {
    height: 180px;
  }
}