:root {
  --brand: #3d61f5;
  --brand-dark: #2f4bc4;
  --brand-soft: #eef1fe;
  --ink: #172033;
  --ink-soft: #4b566b;
  --line: #e2e8f0;
  --bg: #f6f8fc;
  --card: #ffffff;
  --fine: #64748b;
  --gap: clamp(0.75rem, 4vw, 1rem);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img, svg, canvas { max-width: 100%; }

a { color: var(--brand-dark); }

.tl-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: clip;
}

.tl-container {
  width: 100%;
  max-width: 64rem;
  min-width: 0;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.tl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.tl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.tl-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.tl-brand-icon {
  display: block;
  height: 44px;
  width: 44px;
  flex: 0 0 auto;
  position: relative;
  top: -3px;
}
@media (min-width: 660px) {
  .tl-brand-icon {
    height: 50px;
    width: 50px;
  }
}

.tl-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.tl-brand-wordmark {
  display: block;
  height: 14px;
  width: auto;
}
@media (min-width: 660px) {
  .tl-brand-wordmark {
    height: 17px;
  }
}

.tl-brand-tag {
  color: #7c3aed;
  font-family: Manrope, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
  max-width: 100%;
}
@media (min-width: 660px) {
  .tl-brand-tag {
    font-size: 13px;
  }
}

.tl-nav {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  margin-left: auto;
}
.tl-nav > a,
.tl-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.tl-nav > a:hover,
.tl-nav-toggle:hover {
  background: var(--brand);
  color: #fff;
}
.tl-nav span { display: none; }
@media (min-width: 480px) { .tl-nav span { display: inline; } }

/* 手机端单行 Header：菜单 + logo + 语种一行展示；语种缩写（如 en）省位 */
.tl-lang-abbr { display: none; }
@media (max-width: 659px) {
  .tl-header-inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .tl-brand { min-width: 0; }
  .tl-brand-icon { height: 32px; width: 32px; top: -2px; }
  .tl-brand-tag { font-size: 10px; white-space: normal; }
  .tl-nav { font-size: 0.82rem; gap: 0.4rem; }
  .tl-nav > a, .tl-nav-toggle { padding: 0.3rem 0.55rem; }
  .tl-lang-selector { flex: 0 0 auto; }
  .tl-lang-current { display: none; }
  .tl-lang-abbr { display: inline; font-size: 0.75rem; }
  .tl-lang-toggle { padding: 0.3rem 0.5rem; }
}
/* 窄屏：Assessments 与 logo 同链，临时隐藏腾位；超窄屏语种仅留国旗 */
@media (max-width: 479px) {
  .tl-nav > a { display: none; }
}
@media (max-width: 359px) {
  .tl-lang-abbr { display: none; }
}

/* Articles nav dropdown - independent from language selector */
.tl-nav-item { position: relative; }
.tl-nav-toggle {
  font: inherit;
  gap: 0.3rem;
  border: 0;
}
.tl-nav-chevron { transition: transform 0.15s; }
.tl-nav-toggle[aria-expanded="true"] .tl-nav-chevron { transform: rotate(180deg); }
.tl-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  padding: 0.35rem;
  z-index: 100;
  min-width: 200px;
  max-height: 320px;
  overflow-y: auto;
}
.tl-nav-item:hover .tl-nav-dropdown,
.tl-nav-toggle[aria-expanded="true"] + .tl-nav-dropdown { display: block; }
.tl-nav-option {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 36px;
}
.tl-nav-option:hover { background: var(--brand-soft); color: var(--brand-dark); }
.tl-nav-option-all { border-top: 1px solid var(--line); margin-top: 0.35rem; padding-top: 0.55rem; }

/* Language selector - idrlabs.com inspired */
.tl-lang-selector { position: relative; }
.tl-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  min-height: 36px;
  transition: border-color 0.12s, color 0.12s;
}
.tl-lang-toggle:hover { border-color: var(--brand); color: var(--brand-dark); }
.tl-lang-toggle .tl-lang-flag { font-size: 1.1rem; line-height: 1; }
.tl-lang-toggle .tl-lang-current { font-size: 0.8rem; }
.tl-lang-chevron { transition: transform 0.15s; }
.tl-lang-toggle[aria-expanded="true"] .tl-lang-chevron { transform: rotate(180deg); }
.tl-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  padding: 0.35rem;
  z-index: 100;
  min-width: 200px;
  max-width: calc(100vw - 1rem);
  max-height: 320px;
  overflow-y: auto;
}
.tl-lang-toggle[aria-expanded="true"] + .tl-lang-dropdown { display: block; }
.tl-lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.1s;
  min-height: 36px;
  white-space: nowrap;
}
.tl-lang-option:hover { background: var(--brand-soft); color: var(--brand-dark); }
.tl-lang-option.is-active { background: var(--brand-soft); color: var(--brand-dark); font-weight: 700; }
.tl-lang-option .tl-lang-flag { font-size: 1.15rem; line-height: 1; }
.tl-lang-option .tl-lang-name { flex: 1; }
.tl-lang-option .tl-lang-code { font-size: 0.75rem; color: var(--fine); font-weight: 500; }

.tl-main { flex: 1 1 auto; min-width: 0; padding-top: clamp(1.25rem, 5vw, 2rem); padding-bottom: 2.5rem; }

h1 { font-size: clamp(1.55rem, 6vw, 1.9rem); line-height: 1.2; margin: 0.4rem 0; letter-spacing: -0.01em; }
h2 { font-size: 1.25rem; margin: 0 0 0.5rem; }
h3 { font-size: 1rem; margin: 0; }

.tl-hero { text-align: center; }
.tl-eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.tl-lede { color: var(--ink-soft); margin: 0.75rem auto 0; max-width: 46rem; }

/* Catalog */
.tl-banner {
  background: var(--brand-soft);
  border: 1px solid #c7d2fe;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.tl-banner a { font-weight: 600; }
.tl-cat { margin-bottom: 2rem; }
.tl-cat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.tl-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .tl-card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .tl-card-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1280px) { .tl-card-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.tl-test-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.tl-test-card:hover { transform: translateY(-2px); border-color: #b9c6f8; box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08); }
.tl-test-card h3 { font-size: 1rem; line-height: 1.35; }
.tl-test-meta { color: var(--brand-dark); font-weight: 600; font-size: 0.85rem; margin: 0.5rem 0 0; }
.tl-test-desc { color: var(--ink-soft); font-size: 0.9rem; margin: 0.5rem 0 0; flex: 1 1 auto; }
.tl-badge {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-top: 0.5rem;
  width: fit-content;
}
.tl-bigfive { border-left: 3px solid var(--brand); }
.tl-test-card.is-coming-soon { opacity: 0.55; }

.tl-mode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .tl-mode-grid { grid-template-columns: 1fr 1fr; } }

.tl-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: clamp(1rem, 4vw, 1.25rem);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  min-width: 0;
}

.tl-mode-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.tl-mode-card:hover { transform: translateY(-2px); border-color: #b9c6f8; box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08); }
.tl-mode-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0.25rem 0; }
.tl-mode-meta { color: var(--brand-dark) !important; font-weight: 600; }
.tl-mode-card .tl-button { margin-top: 1.25rem; text-align: center; }

.tl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--brand);
  border-radius: 0.75rem;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  cursor: pointer;
}
.tl-button:hover { background: var(--brand-dark); color: #fff; }
.tl-button-ghost {
  background: #fff;
  color: var(--ink);
  border-color: #cbd5e1;
}
.tl-button-ghost:hover { background: #f1f5f9; color: var(--ink); }
.tl-button.is-disabled { opacity: 0.4; pointer-events: none; }

.tl-feature-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.tl-feature-grid strong { color: var(--ink); display: block; margin-bottom: 0.15rem; }
@media (min-width: 640px) { .tl-feature-grid { grid-template-columns: 1fr 1fr; } }

.tl-fineprint {
  font-size: 0.78rem;
  color: var(--fine);
  text-align: center;
  margin: 1.25rem auto 0;
  max-width: 46rem;
}

/* Citations 列表：source 为文献正文，note 为小号灰色标签 */
.tl-fineprint .tl-citation-source { color: inherit; }
.tl-fineprint .tl-citation-note {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
}

.tl-footer {
  background: #141a26;
  color: #cbd5e1;
  margin-top: 1.25rem;
}
.tl-footer .tl-container {
  padding-top: 0;
  padding-bottom: 0;
}
.tl-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 1.75rem 0 1.25rem;
}
@media (min-width: 640px) {
  .tl-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
}
.tl-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.12s ease;
}
.tl-footer a:hover { color: #fff; }
.tl-footer-brand p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0.5rem 0 0;
  max-width: 24rem;
  line-height: 1.45;
}
.tl-footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.tl-footer-logo-icon {
  display: block;
  height: 38px;
  width: 38px;
  flex: 0 0 auto;
  position: relative;
  top: -3px;
}
@media (min-width: 640px) {
  .tl-footer-logo-icon {
    height: 44px;
    width: 44px;
  }
}

.tl-footer-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.tl-footer-logo-wordmark {
  display: block;
  height: 9px;
  width: auto;
}
@media (min-width: 640px) {
  .tl-footer-logo-wordmark {
    height: 11px;
  }
}

.tl-footer-logo-tag {
  color: #a78bfa;
  font-family: Manrope, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: 11px;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .tl-footer-logo-tag {
    font-size: 12px;
  }
}
.tl-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.88rem;
}
.tl-footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin: 0 0 0.125rem;
}
.tl-footer-col a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
/* 移动端（<640px）footer 垂直节奏收紧：缩小列间距与链接行高 */
@media (max-width: 639px) {
  .tl-footer-grid { gap: 1.25rem; }
  .tl-footer-col a { min-height: 32px; }
  .tl-footer-col h3 { display: none; }
  .tl-footer-col { gap: 0.25rem; }
  .tl-footer-brand p { font-size: 0.82rem; margin-top: 0.4rem; }
  .tl-footer-logo-icon { height: 32px; width: 32px; }
  .tl-footer-logo-wordmark { height: 8px; }
  .tl-footer-logo-tag { font-size: 10px; }
}
.tl-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: #64748b;
}
.tl-footer-bottom p { margin: 0; }

/* Test flow */
.tl-test-head h1 { font-size: clamp(1.35rem, 5vw, 1.6rem); }
.tl-test-head p { color: var(--ink-soft); font-size: 0.92rem; }

.tl-progress { margin: 1.25rem 0; }
.tl-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.tl-progress-track {
  margin-top: 0.35rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}
.tl-progress-bar { height: 100%; background: var(--brand); border-radius: 999px; transition: width 0.15s ease; }

.tl-fieldset { padding: clamp(1rem, 4.5vw, 1.4rem); min-width: 0; }
.tl-fieldset legend {
  font-size: clamp(1.05rem, 4.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  padding: 0;
  max-width: 100%;
}
.tl-error {
  margin: 0.75rem 0 0;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  font-size: 0.88rem;
}

.tl-likert { display: grid; gap: 0.6rem; margin-top: 1.1rem; }
.tl-likert-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.tl-likert-btn:hover { border-color: #93aaf7; background: var(--brand-soft); }
.tl-likert-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 1px; }
.tl-likert-btn.is-selected { border-color: var(--brand); background: var(--brand-soft); }
.tl-likert-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.tl-test-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.tl-test-controls .tl-button { flex: 0 1 auto; }
.tl-test-links {
  display: flex;
  gap: 1rem;
  font-size: 0.88rem;
  align-items: center;
}
.tl-link-btn {
  background: none;
  border: 0;
  padding: 0;
  min-height: 44px;
  font: inherit;
  color: var(--ink-soft);
  cursor: pointer;
}
.tl-test-links a { display: inline-flex; align-items: center; min-height: 44px; }
.tl-link-btn:hover { color: var(--brand-dark); text-decoration: underline; }
kbd {
  font-family: inherit;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 0.3rem;
  padding: 0 0.35rem;
  font-size: 0.75rem;
}
@media (max-width: 429px) {
  .tl-test-controls .tl-button { flex: 1 1 100%; }
  .tl-test-links { justify-content: space-between; width: 100%; }
}

/* Result */
.tl-result { min-width: 0; }
.tl-result h1 { font-size: clamp(1.6rem, 7vw, 2rem); overflow-wrap: anywhere; }
.tl-radar-card { margin-top: 1.5rem; text-align: center; }
.tl-radar-wrap { position: relative; width: 100%; max-width: 28rem; margin: 1rem auto 0; }
#radar-canvas { width: 100% !important; height: auto !important; max-width: 28rem; display: block; margin: 0 auto; }

.tl-domains { display: grid; gap: 1rem; margin-top: 1.5rem; }
.tl-domain-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}
.tl-domain-head h3 { display: flex; align-items: center; flex-wrap: wrap; }
.tl-domain-percent { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark); }
.tl-domain-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  margin-right: 0.4rem;
}
.tl-domain-short { font-size: 0.8rem; color: var(--ink-soft); margin: 0.35rem 0 0; }
.tl-bar-track { height: 0.65rem; border-radius: 999px; background: #e2e8f0; overflow: hidden; margin-top: 0.75rem; }
.tl-bar-fill { height: 100%; background: var(--brand); border-radius: 999px; }
.tl-domain-text { font-size: 0.9rem; color: var(--ink-soft); margin: 0.75rem 0 0; }

.tl-share-card { margin-top: 1.5rem; }
.tl-share-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.tl-share-actions .tl-button { flex: 1 1 14rem; }
.tl-retake-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.tl-retake-links a { min-height: 36px; display: inline-flex; align-items: center; }

/* Privacy */
.tl-prose { margin-top: 1.5rem; display: grid; gap: 1.25rem; font-size: 0.92rem; color: var(--ink-soft); }
.tl-prose h2 { font-size: 1rem; color: var(--ink); }
.tl-prose p, .tl-prose ul { margin: 0.35rem 0 0; }
.tl-prose ul { padding-left: 1.25rem; display: grid; gap: 0.3rem; }
.tl-prose code { word-break: break-all; }

.tl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Articles 模块 ---- */
.tl-article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.tl-article-card:hover { transform: translateY(-2px); border-color: #b9c6f8; box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08); }
.tl-article-card h2 { margin: 0; font-size: 1.1rem; }
.tl-article-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0.4rem 0 0; }
.tl-article-count { color: var(--brand-dark) !important; font-weight: 600; margin-bottom: 0 !important; }

.tl-article-title { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--ink); margin: 0.25rem 0; }
.tl-article-date { color: var(--ink-soft); font-size: 0.85rem; margin: 0.5rem 0 0; }
.tl-article-body { margin-top: 1.5rem; display: grid; gap: 1.1rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.tl-article-body h2 { font-size: 1.25rem; color: var(--ink); margin: 0.5rem 0 -0.4rem; }
.tl-article-body h3 { font-size: 1.05rem; color: var(--ink); margin: 0.4rem 0 -0.4rem; }
.tl-article-body p, .tl-article-body ul { margin: 0; }
.tl-article-body ul { padding-left: 1.4rem; }
.tl-article-back { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--brand-dark); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.tl-article-back:hover { text-decoration: underline; }
