
  :root{
    --tps-blue:#0b65c2;         /* adjust to match your site blue */
    --tps-border:#e6eef8;
    --tps-soft:#f5faff;
    --tps-text:#1b1f24;
    --tps-muted:#5b6775;
    --tps-radius:14px;
  }
  .tps-desc{font-family:inherit; color:var(--tps-text); line-height:1.6;}
  .tps-desc a{color:var(--tps-blue); text-decoration:underline;}
  .tps-lead{margin:0 0 12px; color:var(--tps-text);}
  .tps-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-top:14px;}
  @media (max-width: 768px){ .tps-grid{grid-template-columns:1fr;} }
  .tps-card{
    border:1px solid var(--tps-border);
    border-radius:var(--tps-radius);
    padding:16px;
    background:#fff;
    box-shadow:0 1px 2px rgba(0,0,0,.04);
  }
  .tps-h{
    margin:0 0 10px;
    font-size:16px;
    font-weight:800;
    color:var(--tps-blue);
  }
  .tps-sub{margin:0 0 10px; color:var(--tps-muted); font-size:13px;}
  .tps-list{margin:0; padding-left:18px;}
  .tps-list li{margin:7px 0;}
  .tps-badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;}
  .tps-badge{
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    background:var(--tps-soft);
    border:1px solid #d8e9ff;
    color:var(--tps-blue);
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
  }
  .tps-note{
    margin-top:12px;
    padding:12px;
    border-radius:12px;
    border:1px dashed #cfe3ff;
    background:var(--tps-soft);
    font-size:13px;
    color:var(--tps-muted);
  }
  .tps-divider{height:1px; background:var(--tps-border); margin:16px 0;}
