/* Insights article typography. Long-form prose styles scoped to .article-body,
   reusing the existing --tt-* design tokens so articles match the site. */

.cs-index-card .art-card-meta {
  font-size: 13px;
  color: var(--tt-fg-muted);
  margin-bottom: 8px;
}

.art-back { margin-bottom: 10px; font-size: 14px; }
.art-back a { color: var(--tt-fg-muted); text-decoration: none; }
.art-back a:hover { color: var(--tt-orange); }

.art-meta { margin-top: 18px; font-size: 15px; color: var(--tt-fg-muted); }
.art-meta a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.art-meta a:hover { color: var(--tt-orange); }

.article-body {
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.7;
}
.article-body > * + * { margin-top: 1.1em; }
.article-body h2 {
  font-size: 27px;
  line-height: 1.25;
  margin-top: 1.9em;
  margin-bottom: 0.1em;
}
.article-body h3 {
  font-size: 21px;
  line-height: 1.3;
  margin-top: 1.5em;
}
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li + li { margin-top: 0.5em; }
.article-body a { color: var(--tt-teal); text-underline-offset: 2px; }
.article-body a:hover { color: var(--tt-orange); }
.article-body strong { font-weight: 650; }
.article-body blockquote {
  margin-left: 0;
  padding-left: 20px;
  border-left: 3px solid var(--tt-orange);
  color: var(--tt-fg-muted);
  font-style: italic;
}
.article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(127,127,127,0.14);
}

.art-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-top: 34px;
}
.art-tags li {
  font-size: 13px;
  color: var(--tt-fg-muted);
  border: 1px solid var(--tt-border, rgba(127,127,127,0.28));
  border-radius: 999px;
  padding: 4px 12px;
}

@media (max-width: 640px) {
  .article-body { font-size: 17px; }
  .article-body h2 { font-size: 23px; }
}
