/* Prism.js light theme — matches site color palette */
code[class*="language-"],
pre[class*="language-"] {
  color: #1e293b;
  background: none;
  text-shadow: none;
  font-family: var(--font-mono, monospace);
  font-size: .9em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.6;
  tab-size: 2;
  hyphens: none;
}

/* Tokens */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata            { color: #475569; font-style: italic; }

.token.punctuation      { color: #64748b; }

.token.namespace        { opacity: .7; }

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted          { color: #e11d48; }

.token.boolean,
.token.number           { color: #d97706; }

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted         { color: #065f46; }

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable         { color: #0284c7; }

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name       { color: #7c3aed; }

.token.keyword          { color: #1e40af; font-weight: 600; }

.token.regex,
.token.important        { color: #f59e0b; }

.token.important,
.token.bold             { font-weight: bold; }

.token.italic           { font-style: italic; }

.token.entity           { cursor: help; }

/* Line highlight */
.line-highlight {
  background: rgba(14,165,233,.08);
  border-left: 4px solid var(--c-primary, #0ea5e9);
  margin-left: -1.5rem;
  padding-left: calc(1.5rem - 4px);
}

