/* Prose Typography for article content */
:root { --brand-600: #2563eb; --brand-950: #172554; }

body { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; }

/* Fix for WP Admin Bar overlapping fixed header */
.admin-bar .site-header,
.admin-bar nav.fixed {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header,
    .admin-bar nav.fixed {
        top: 46px;
    }
}

/* Prose Typography */
.prose h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #172554;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.prose h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #172554;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.prose h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #172554;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.prose p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}
.prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}
.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }
.prose li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}
.prose a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.prose a:hover { color: #1d4ed8; }
.prose strong, .prose b {
    font-weight: 600;
    color: #172554;
}
.prose blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}
.prose img {
    border-radius: 1rem;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .prose h2 { font-size: 1.5rem; }
    .prose h3 { font-size: 1.25rem; }
    .prose h4 { font-size: 1.125rem; }
    .prose p, .prose li { font-size: 1rem; }
}