/* RZ Content Channels - 频道页正文排版（仅频道页加载） */
.rz-prose {
  color: #334155;
  font-size: 16px;
  line-height: 1.85;
}
.rz-prose h1, .rz-prose h2, .rz-prose h3, .rz-prose h4 {
  color: #1f2d3d;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.6em 0 .6em;
}
.rz-prose h2 { font-size: 1.5rem; }
.rz-prose h3 { font-size: 1.25rem; }
.rz-prose h4 { font-size: 1.1rem; }
.rz-prose p { margin: .8em 0; }
.rz-prose ul, .rz-prose ol { margin: .8em 0; padding-left: 1.4em; }
.rz-prose ul { list-style: disc; }
.rz-prose ol { list-style: decimal; }
.rz-prose li { margin: .4em 0; }
.rz-prose blockquote {
  margin: 1.2em 0;
  padding: .8em 1.2em;
  border-left: 4px solid #b8860b;
  background: #fff8ec;
  border-radius: 8px;
  color: #5b4a23;
}
.rz-prose a { color: #b8860b; text-decoration: underline; }
.rz-prose hr { border: 0; border-top: 1px solid #e2e8f0; margin: 2em 0; }
.rz-prose strong { color: #1f2d3d; }
.rz-prose code {
  background: #f1f5f9;
  padding: .1em .35em;
  border-radius: 4px;
  font-size: .9em;
}

/* 真格子表格（Markdown | 列 | 列 | 渲染） */
.rzcc-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.4em 0;
  -webkit-overflow-scrolling: touch;
}
.rzcc-table {
  width: 100%;
  min-width: 440px;
  border-collapse: collapse;
  font-size: .95rem;
  line-height: 1.6;
  color: #334155;
}
.rzcc-table th, .rzcc-table td {
  border: 2px solid #6b7a90 !important;
  padding: .6rem .85rem;
  text-align: left;
  vertical-align: top;
}
.rzcc-table thead th {
  background: #1e3a5f;
  color: #ffffff;
  font-weight: 700;
  border: 2px solid #143055 !important;
  white-space: nowrap;
}
.rzcc-table tbody tr:nth-child(even) {
  background: #f5f8fc;
}
.rzcc-table tbody tr:hover {
  background: #eaf1f9;
}
.rzcc-table td strong { color: #1e3a5f; }

/* 全站兜底：万一老页面或别处页面也有 <table>，统一给格子框 */
.entry-content table, .page-content table, .post-content table, article table, main table, .rz-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: .95rem;
  color: #334155;
}
.entry-content table th, .entry-content table td,
.page-content table th, .page-content table td,
.post-content table th, .post-content table td,
article table th, article table td,
main table th, main table td,
.rz-prose table th, .rz-prose table td {
  border: 2px solid #6b7a90;
  padding: .55rem .8rem;
  text-align: left;
  vertical-align: top;
}
.entry-content table thead th,
.page-content table thead th,
.post-content table thead th,
article table thead th,
main table thead th,
.rz-prose table thead th {
  background: #1e3a5f;
  color: #fff;
  font-weight: 700;
  border-color: #143055;
}
