/* ============================================================
   Blog Article Page — article content, typography
   ============================================================ */

.article-content-section {
    background: var(--lh-white);
}

.article-main-content {
    background: var(--lh-white);
    border-radius: var(--lh-radius-xl);
    border: 1px solid var(--lh-border);
    box-shadow: var(--lh-shadow);
    padding: 2.5rem;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--lh-ink);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: "Handlee", cursive;
    color: var(--lh-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content img {
    border-radius: var(--lh-radius-lg);
    box-shadow: var(--lh-shadow);
    margin: 1.5rem auto;
}

.article-content a {
    color: var(--lh-blue);
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid var(--lh-blue);
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: var(--lh-soft-blue);
    border-radius: 0 var(--lh-radius-md) var(--lh-radius-md) 0;
    color: var(--lh-muted);
    font-style: italic;
}

.article-content pre,
.article-content code {
    background: var(--lh-soft-blue);
    border-radius: 8px;
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .article-hero-parallax {
        min-height: 280px;
    }

    .article-hero-bg-parallax {
        background-attachment: scroll;
    }

    .article-main-content {
        padding: 1.5rem;
    }
}
