/* Blog post content (prose) */
.blog-content {
  line-height: 1.7;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-family: inherit;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.blog-content h1 { font-size: 1.875rem; }
.blog-content h2 { font-size: 1.5rem; }
.blog-content h3 { font-size: 1.25rem; }
.blog-content h4 { font-size: 1.125rem; }

.blog-content p {
  margin-bottom: 1em;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

.blog-content li {
  margin-bottom: 0.25em;
}

.blog-content img {
  border-radius: 8px;
}

.blog-content a {
  color: #6366f1;
  text-decoration: underline;
}

.blog-content a:hover {
  color: #4f46e5;
}

.blog-content blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1em;
  margin: 1em 0;
  color: #6b7280;
}

.blog-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 1.5em 0;
}

/* Inline code */
.blog-content code:not(pre code) {
  font-family: ui-monospace, monospace;
  font-size: 0.875em;
  background: #f3f4f6;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

/* Code blocks (blog-code wraps pre/code from highlight) */
.blog-code {
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden;
  background: #1e1e1e;
  margin: 1em 0;
}

.blog-code pre {
  padding: 24px;
  margin: 0;
  overflow-x: auto;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-code code {
  color: #d4d4d4;
  background: transparent;
  padding: 0;
}

/* Highlight.js-style classes (highlight package uses hljs-* prefix) */
.blog-code .hljs-comment,
.blog-code .hljs-quote { color: #6a9955; }
.blog-code .hljs-keyword,
.blog-code .hljs-selector-tag { color: #c586c0; }
.blog-code .hljs-string { color: #ce9178; }
.blog-code .hljs-number { color: #b5cea8; }
.blog-code .hljs-title,
.blog-code .hljs-class .hljs-title { color: #dcdcaa; }
.blog-code .hljs-built_in { color: #4ec9b0; }
.blog-code .hljs-attr { color: #9cdcfe; }
.blog-code .hljs-variable { color: #9cdcfe; }
.blog-code .hljs-params { color: #d4d4d4; }
.blog-code .hljs-meta { color: #808080; }
