.ua-content {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #5a6478; /* neutral-600 */
}

/* ── Headings ──────────────────────────────────────────────────────────── */
.ua-content h1,
.ua-content h2,
.ua-content h3,
.ua-content h4,
.ua-content h5,
.ua-content h6 {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    color: #1e3460; /* primary-900 */
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

.ua-content h1 { font-size: 2rem; }
.ua-content h2 { font-size: 1.5rem; }
.ua-content h3 { font-size: 1.25rem; }
.ua-content h4 { font-size: 1.125rem; }
.ua-content h5,
.ua-content h6 { font-size: 1rem; }

/* First heading needs no top margin */
.ua-content > h1:first-child,
.ua-content > h2:first-child,
.ua-content > h3:first-child {
    margin-top: 0;
}

/* ── Paragraphs ────────────────────────────────────────────────────────── */
.ua-content p {
    margin-top: 0;
    margin-bottom: 1.25em;
}

.ua-content p:last-child {
    margin-bottom: 0;
}

/* ── Lists ─────────────────────────────────────────────────────────────── */
.ua-content ul,
.ua-content ol {
    margin-top: 0;
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}

.ua-content ul { list-style-type: disc; }
.ua-content ol { list-style-type: decimal; }

.ua-content li {
    margin-bottom: 0.4em;
}

.ua-content li:last-child {
    margin-bottom: 0;
}

/* Nested lists */
.ua-content li > ul,
.ua-content li > ol {
    margin-top: 0.4em;
    margin-bottom: 0;
}

/* ── Links ─────────────────────────────────────────────────────────────── */
.ua-content a {
    color: #30539a; /* primary-700 */
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.ua-content a:hover {
    color: #1e3460; /* primary-900 */
}

/* ── Blockquote ────────────────────────────────────────────────────────── */
.ua-content blockquote {
    border-left: 4px solid #8fa6d4; /* primary-300 */
    margin: 1.5em 0;
    padding: 0.75em 1.25em;
    background: #f8f9fc; /* neutral-50 */
    border-radius: 0 0.5rem 0.5rem 0;
    color: #181c2a; /* neutral-900 */
    font-style: italic;
}

/* ── Horizontal rule ───────────────────────────────────────────────────── */
.ua-content hr {
    border: none;
    border-top: 1px solid #eef1f6; /* neutral-100 */
    margin: 2em 0;
}

/* ── Strong & Em ───────────────────────────────────────────────────────── */
.ua-content strong { font-weight: 600; color: #181c2a; }
.ua-content em     { font-style: italic; }

/* ── Code ──────────────────────────────────────────────────────────────── */
.ua-content code {
    background: #eef1f6;
    border-radius: 0.25rem;
    padding: 0.125em 0.375em;
    font-size: 0.875em;
    color: #1e3460;
}

.ua-content pre {
    background: #eef1f6;
    border-radius: 0.5rem;
    padding: 1.25em;
    overflow-x: auto;
    margin-bottom: 1.25em;
}

.ua-content pre code {
    background: none;
    padding: 0;
    font-size: 0.875em;
}

/* ── WordPress block spacing ───────────────────────────────────────────── */
.ua-content .wp-block-heading { margin-top: 2em; margin-bottom: 0.6em; }
.ua-content .wp-block-heading:first-child { margin-top: 0; }
