/* Explain: App-specific component classes (add as needed) */

/* Enhanced typography for rich text / blog posts */
.prose p {
    margin-bottom: 1.75rem;
    line-height: 1.8;
}
.prose h1, .prose h2, .prose h3 {
    color: var(--secondary-hover);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.prose h2 { font-size: 1.875rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.25rem; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; }
.prose a {
    color: var(--text-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    transition: all 0.2s;
}
.prose a:hover {
    color: var(--secondary-hover);
    text-decoration-color: var(--secondary-hover);
}
.prose ul, .prose ol {
    margin-bottom: 1.75rem;
    padding-inline-start: 1.5rem;
}
.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.prose strong, .prose b {
    font-weight: 700;
    color: var(--text-color);
}
.prose blockquote {
    border-inline-start: 4px solid var(--secondary-color);
    padding-inline-start: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 2rem 0;
    font-size: 1.25rem;
}
.prose .cta-box {
    background: rgba(181, 169, 196, 0.15);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}
.prose .cta-box a.btn {
    text-decoration: none !important;
    color: #ffffff !important;
}

/* Override header colors to white when scrolled */
#site-header.header-scrolled .xl\:flex > a:not(.btn),
#site-header.header-scrolled button.btn-ghost {
    color: #ffffff !important;
}
#site-header.header-scrolled .xl\:flex > a:not(.btn):hover {
    border-color: #ffffff !important;
}
