
  /* 整篇文章：字體 & 行距 */
  .tps-article {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    color: #222222;
    font-size: 16px;
  }

  /* 標題全部 TPS Blue */
  .tps-article h1,
  .tps-article h2,
  .tps-article h3 {
    color: #3598db;
    font-weight: 600;
  }

  /* 內文連結預設也是 TPS Blue */
  .tps-article a {
    color: #3598db;
  }

  /* CTA 按鈕：和 P2 一樣的藍色卡片 */
  .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 卡片：仿照 P2 那塊淡藍框 ====== */
  .tps-toc {
    background-color: #f5fbff;      /* 淺藍底 */
    border: 1px solid #e1efff;      /* 淡淡的邊框 */
    border-radius: 12px;            /* 圓角 */
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
  }

  .tps-toc-title {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #3598db;
  }

  .tps-toc ol {
    margin: 0;
    padding-left: 1.3rem;  /* 讓編號有一點縮排 */
  }

  .tps-toc li {
    margin: 0.2rem 0;
  }

  .tps-toc a {
    color: #3598db;
    text-decoration: none;
  }

  .tps-toc a:hover {
    text-decoration: underline;
  }
