/* --------------------------------------------------
   article PAGE / ABOUT PAGE STYLING
   Matches main design system
-------------------------------------------------- */

.article-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 16px 70px;
}

/* HERO */
.article-hero {
    text-align: left;
    margin-bottom: 34px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.article-hero h1 {
    font-size: 32px;
    font-weight: 750;
    margin-bottom: 10px;
}

.article-subtitle {
    color: var(--muted);
    font-size: 15px;
    max-width: 680px;
    line-height: 1.6;
}

/* SECTIONS */
.article-section {
    margin-top: 40px;
}

.article-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-section p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-section ul {
    padding-left: 20px;
}

.article-section li {
    margin-bottom: 6px;
}

/* Highlight box stays consistent */
.article-page .highlight-box {
    margin-top: 10px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 26px;
    }

    .article-section h2 {
        font-size: 20px;
    }
}