/* ═══════════════════════════════════════════════════════════════
   Prism Vintage Light Theme — cross-origin.com
   Palette: olive #6b7c4b | gold #c9a84c | taupe #8c7b6b | umber #5c4033
   ═══════════════════════════════════════════════════════════════ */

code[class*="language-"],
pre[class*="language-"] {
  color: #2e2a24;
  background: none;
  font-family: "Fira Code", "Cascadia Code", Consolas, "Courier New", monospace;
  font-size: 0.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;
}

pre[class*="language-"] {
  padding: 1.25em 1.5em;
  margin: 1.5rem 0;
  overflow: auto;
  border-radius: 8px;
  background: #ede8dc;
  border: 1px solid #d4ccc0;
  position: relative;
}

:not(pre) > code[class*="language-"] {
  padding: 0.2em 0.45em;
  border-radius: 4px;
  background: #ede8dc;
  white-space: normal;
}

/* Tokens */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata            { color: #9a8f7e; font-style: italic; }
.token.punctuation      { color: #8c7b6b; }
.token.namespace        { opacity: 0.85; }
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol           { color: #5c4033; }
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin          { color: #6b7c4b; }
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string    { color: #8c7b6b; }
.token.atrule,
.token.attr-value,
.token.keyword          { color: #c9a84c; font-weight: 600; }
.token.function,
.token.class-name       { color: #5c4033; }
.token.regex,
.token.important,
.token.variable         { color: #a0522d; }
.token.important,
.token.bold             { font-weight: bold; }
.token.italic           { font-style: italic; }
.token.entity           { cursor: help; }

/* Line numbers plugin */
pre[class*="language-"].line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}

