
  /* 整篇文章的字體與行距 */
  .tps-article {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    color: #222222;
    font-size: 16px;
  }
  /* 標題：全部用 TPS 藍色 */
  .tps-article h1,
  .tps-article h2,
  .tps-article h3 {
    color: #3598db;
    font-weight: 600;
  }
  /* 內文連結：預設也用 TPS 藍 */
  .tps-article a {
    color: #3598db;
  }
  /* CTA 按鈕風格（像 pre-compliance 那篇一樣的藍色卡片） */
  .tps-cta-button {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    background-color: #3598db;
    color: #ffffff !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  }
  .tps-cta-button:hover {
    opacity: 0.9;
    text-decoration: none;
  }
  /* 目錄 / catalog 卡片 */
  .tps-toc {
    border-left: 3px solid #3598db;
    background-color: #f5fbff;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
  }
  .tps-toc-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .tps-toc ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }
  .tps-toc li {
    margin: 0.15rem 0;
  }
  .tps-toc a {
    text-decoration: none;
  }
  .tps-toc a:hover {
    text-decoration: underline;
  }
