h1, h2, h3, h4 {
    font-weight: var(--weight-semibold);
    line-height: var(--leading-tight);
    color: var(--text);
}

h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-base); }

p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    padding: 0.125em 0.375em;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

small {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: var(--space-6) 0;
}

::selection {
    background: var(--primary-light);
    color: var(--primary-dark);
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
