/* ========== H2标题样式（最终版）========== */
.zhenghe-page-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #23436E;
  margin: 36px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zhenghe-page-content h2::before {
  content: "";
  width: 6px;
  height: 22px;
  background: #23436E;
  border-radius: 3px;
}

/* ========== 案由分类区域（简化版）========== */
.case-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}

.case-category-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  background: #ffffff;
  transition: all 0.3s ease;
}

.case-category-card:hover {
  border-color: #23436E;
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(35, 67, 110, 0.1);
}

.case-category-card a {
  color: #23436E;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.case-category-card:hover a {
  color: #c9a557;
}

/* ========== 最新判例区域（去掉移动效果）========== */
.case-list {
  margin: 24px 0;
}

.case-list-item {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  transition: background-color 0.3s ease;
}

.case-list-item:hover {
  background: #fafbfc;
}

.case-list-item:last-child {
  border-bottom: none;
}

.case-list-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}

.case-list-title a {
  color: #23436E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.case-list-title a:hover {
  color: #c9a557;
}

.case-list-meta {
  font-size: 13px;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========== 响应式适配 ========== */
@media (max-width: 768px) {
  .zhenghe-page-content h2 {
    font-size: 19px;
    margin: 28px 0 18px;
  }
  
  .case-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .case-category-card {
    padding: 18px 12px;
  }
  
  .case-category-card a {
    font-size: 14px;
  }
  
  .case-list-item {
    padding: 14px 16px;
  }
  
  .case-list-title {
    font-size: 15px;
  }
  
  .case-list-meta {
    flex-direction: column;
    gap: 6px;
  }
}