.page-banner {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.banner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.banner-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.banner-breadcrumb {
  font-size: 14px;
  opacity: 0.85;
}

.banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.banner-breadcrumb a:hover {
  color: #fff;
}

.banner-breadcrumb .sep {
  margin: 0 8px;
}

.banner-breadcrumb .current {
  color: #fff;
}

.page-main {
  padding: 40px 0 60px;
  background: #f5f7fa;
  min-height: 60vh;
}

.policy-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, #fff7ed 0%, #ffedd5 100%);
  border-left: 4px solid #f97316;
  border-radius: var(--border-radius);
  padding: 20px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.highlight-content {
  flex: 1;
  min-width: 0;
}

.highlight-tag {
  display: inline-block;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-weight: 500;
}

.highlight-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.highlight-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.highlight-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: #f97316;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.highlight-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.list-section {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.list-toolbar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.toolbar-label {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  line-height: 34px;
  flex-shrink: 0;
}

.list-content .article-card {
  border: 1px solid #eef0f3;
  box-shadow: none;
  margin-bottom: 20px;
}

.list-content .article-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
}

.policy-guide {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: var(--border-radius);
  padding: 36px 40px;
  color: #fff;
}

.guide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.guide-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.guide-text p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.guide-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.guide-actions .btn-primary {
  background: #fff;
  color: var(--primary-color);
}

.guide-actions .btn-primary:hover {
  background: #f0f4ff;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.guide-actions .btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.guide-actions .btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .page-banner {
    height: 240px;
    margin-top: 72px;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-desc {
    font-size: 14px;
  }

  .policy-highlight {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }

  .highlight-icon {
    font-size: 28px;
  }

  .highlight-btn {
    align-self: flex-end;
  }

  .list-section {
    padding: 16px;
  }

  .list-toolbar {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .toolbar-label {
    width: 100%;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .policy-guide {
    padding: 24px 20px;
  }

  .guide-inner {
    flex-direction: column;
    text-align: center;
  }

  .guide-text h3 {
    font-size: 18px;
  }

  .guide-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .article-card {
    flex-direction: column;
  }

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