/* Code block container */
.post-body pre {
  background-color: var(--color-code-bg);
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.post-body pre code {
  font-family: var(--font-mono);
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

/* Prism theme: custom cyan-dark */
code[class*="language-"],
pre[class*="language-"] {
  color: #e2e8f0;
  font-family: var(--font-mono);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  tab-size: 2;
  hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #64748b;
  font-style: italic;
}

.token.punctuation {
  color: #94a3b8;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #67e8f9;
}

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

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #7dd3fc;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #38bdf8;
  font-weight: 600;
}

.token.function,
.token.class-name {
  color: #06b6d4;
  font-weight: 600;
}

.token.regex,
.token.important,
.token.variable {
  color: #e879f9;
}

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

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