/* blog.css — prose styles for blog post pages */

.prose {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #c8d8e8;
  max-width: 680px;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.prose h1 { font-size: 1.6rem; }
.prose h2 { font-size: 1.25rem; border-bottom: 1px solid #1a3048; padding-bottom: 6px; }
.prose h3 { font-size: 1rem; color: #9ab8d0; }
.prose h4 { font-size: 0.9rem; color: #6a8aaa; }

.prose p {
  margin-bottom: 1.25em;
  color: #c8d8e8;
}

.prose a {
  color: #00c8f0;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  font-weight: 600;
  color: #fff;
}

.prose em {
  font-style: italic;
  color: #9ab8d0;
}

.prose ul,
.prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-bottom: 0.5em;
  color: #c8d8e8;
}

.prose li::marker {
  color: #00c8f0;
}

.prose blockquote {
  border-left: 3px solid #00c8f0;
  padding: 12px 18px;
  margin: 1.5em 0;
  background: #0d1f30;
  border-radius: 0 6px 6px 0;
}

.prose blockquote p {
  margin-bottom: 0;
  color: #8aa8c8;
  font-style: italic;
}

.prose code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  background: #0d1f30;
  border: 1px solid #1a3048;
  border-radius: 4px;
  padding: 1px 6px;
  color: #00c8f0;
}

.prose pre {
  background: #0d1f30;
  border: 1px solid #1a3048;
  border-radius: 8px;
  padding: 16px 20px;
  overflow-x: auto;
  margin-bottom: 1.25em;
}

.prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: #c8d8e8;
  font-size: 0.85rem;
  line-height: 1.6;
}

.prose hr {
  border: none;
  border-top: 1px solid #1a3048;
  margin: 2em 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25em;
  font-size: 0.88rem;
}

.prose th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a8aaa;
  border-bottom: 1px solid #1a3048;
  padding: 8px 12px;
  text-align: left;
}

.prose td {
  padding: 10px 12px;
  border-bottom: 1px solid #0d1f30;
  color: #c8d8e8;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5em 0;
}