h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 8vw, 2.5rem);
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.5em;
}

.article-body > * + * {
  margin-top: 1.5rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 0.35rem;
}

code {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--code-text);
  font-family: var(--font-code);
  font-size: 0.9em;
  padding: 0.1em 0.3em;
}

pre {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--code-text);
  overflow-x: auto;
  padding: 1rem;
}

pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

.muted {
  color: var(--text-muted);
}

.eyebrow {
  color: var(--accent-hover);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
