*, *::before, *::after {
    box-sizing: border-box;
}

html {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
}

body {
    margin: 0;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Content typography (replaces Tailwind prose) */
.content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

.content p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.content ul, .content ol {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-muted);
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.content li {
    margin-bottom: 0.25rem;
}

.content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2rem 0;
}

.content strong {
    color: var(--color-text);
}

.content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
