/* BASE */
.article-page {
    font-family: 'Lora', sans-serif; 
    color: #111;
    line-height: 1.8;
    font-size: 19px;
}

.article-page .section-inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* left + right padding */
}

/* HEADINGS */
.section-inner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1D2E5C;
}

.section-inner h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-page p {
    font-size: 20px;
    margin-bottom: 16px;
}

/* PULL QUOTES */
.pull-quote {
    font-size: 24px;
    font-weight: 600;
    color: #0a1a3c;
    border-left: 4px solid #0a1a3c;
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.4;
}

/* HIGHLIGHT */
.highlight {
    background: #fff7c2;
    padding: 2px 6px;
    border-radius: 4px;
}

/* LISTS */
.article-inner ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-inner li {
    margin-bottom: 10px;
}

/* =========================================================
   MOBILE RESPONSIVE FIX – ARTICLE PAGE
   ========================================================= */
@media (max-width: 900px) {

    /* Base scale */
    .article-page {
        font-size: 16px;
        line-height: 1.7;
    }

    .article-page .section-inner {
        width: 92%;
    }

    /* Headings */
    .section-inner h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .section-inner h3 {
        font-size: 18px;
    }

    .article-page p {
        font-size: 16px;
    }

    /* Pull quotes */
    .pull-quote {
        font-size: 18px;
        padding-left: 16px;
        margin: 24px 0;
    }

    /* Lists */
    .article-inner ul {
        padding-left: 18px;
    }

    .article-inner li {
        font-size: 16px;
    }

}
