/* Layout do Artigo */
.post-header {
  margin-bottom: 3rem;
  text-align: center;
  border-bottom: 1px solid var(--ui-border);
  padding-bottom: 2rem;
}

.post-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.post-meta {
  font-family: var(--font-stack-mono);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.post-content h2 {
  margin-top: 2.5rem;
  border-left: 4px solid var(--accent-primary);
  padding-left: 1rem;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content blockquote {
  border-left: 3px solid var(--accent-action);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Blocos de Código (Pandoc) */
pre {
  background: #1e1e1e;
  color: #dcdcdc;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 0.9rem;
}
code {
  font-family: var(--font-stack-mono);
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 0.9em;
}
pre code {
  background: none;
  padding: 0;
}
