/* Blog prose (pairs with site /styles.css) */
.blog-prose h2 {
  margin-top: 3rem;
  scroll-margin-top: 6rem;
  border-bottom: 1px solid hsl(var(--border) / 0.7);
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.blog-prose h2:first-child {
  margin-top: 0;
}
.blog-prose h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.blog-prose p {
  max-width: 70ch;
  margin-bottom: 2rem;
  line-height: 1.85;
  color: hsl(var(--foreground) / 0.95);
}
.blog-prose ul {
  max-width: 70ch;
  margin: 1rem 0 2rem;
  padding-left: 1.25rem;
  list-style: disc;
  line-height: 1.85;
}
.blog-prose li {
  margin-bottom: 0.5rem;
}
.blog-prose a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 4px;
}
.blog-prose pre {
  max-width: 70ch;
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 0.5rem;
  border: 1px solid #3f3f46;
  background: #09090b;
  padding: 1rem;
  font-size: 0.8125rem;
  line-height: 1.625;
}
.blog-prose code {
  font-family: ui-monospace, monospace;
}
.blog-prose :not(pre) > code {
  border-radius: 0.25rem;
  background: hsl(var(--muted) / 0.8);
  padding: 0.125rem 0.375rem;
  font-size: 0.9em;
}
.blog-prose blockquote {
  max-width: 70ch;
  margin: 2rem 0;
  display: flex;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(199 89% 48% / 0.35);
  background: hsl(199 89% 48% / 0.08);
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
}
.blog-prose blockquote.is-warning {
  border-color: hsl(38 92% 50% / 0.35);
  background: hsl(38 92% 50% / 0.08);
}
.blog-prose blockquote p {
  margin-bottom: 0;
}
