/* Syntax Highlighting — Prism.js custom theme (light, slate/orange/blue) */
code[class*="language-"],
pre[class*="language-"] {
  color: var(--color-slate-800);
  background: var(--color-pre-bg);
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.6;
  tab-size: 4;
  hyphens: none;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata         { color: #6b7280; font-style: italic; }
.token.punctuation   { color: var(--color-slate-600); }
.token.namespace     { opacity: .75; }
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted       { color: #c2410c; }   /* deep orange */
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted      { color: #0f766e; }   /* teal */
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string { color: var(--color-blue-700); }
.token.atrule,
.token.attr-value,
.token.keyword       { color: var(--color-blue-700); font-weight: 600; }
.token.function,
.token.class-name    { color: var(--color-orange-600); font-weight: 600; }
.token.regex,
.token.important,
.token.variable      { color: #7c3aed; }   /* violet */
.token.important,
.token.bold          { font-weight: bold; }
.token.italic        { font-style: italic; }
.token.decorator     { color: var(--color-orange-500); }

