/* ===========================
   Article / Blog Post Styles
   =========================== */

.article-page {
    padding: 60px 0 80px;
}

.article-page .container {
    max-width: 780px;
}

.article-header {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-grey);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-back {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
    margin-right: 8px;
}

.article-back:hover {
    color: var(--cyan);
}

.article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-intro {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    border-left: 4px solid var(--cyan);
    padding-left: 20px;
}

/* Article body typography */
.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 48px;
    margin-bottom: 16px;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.article-body strong {
    color: var(--navy);
    font-weight: 600;
}

/* Article callout box */
.article-callout {
    background: var(--light-grey);
    border-left: 4px solid var(--cyan);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

/* Lists */
.article-list {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-list li {
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.article-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.article-list-numbered {
    list-style: none;
    counter-reset: article-counter;
}

.article-list-numbered li {
    counter-increment: article-counter;
    padding-left: 36px;
}

.article-list-numbered li::before {
    content: counter(article-counter) '.';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 700;
    min-width: 28px;
}

/* Article CTA box */
.article-cta {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 36px 40px;
    margin-top: 56px;
    text-align: center;
}

.article-cta h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 12px;
}

.article-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-size: 1rem;
}

.article-cta .btn-primary {
    background: var(--cyan);
    color: var(--navy);
    border-color: var(--cyan);
}

.article-cta .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

@media (max-width: 600px) {
    .article-page {
        padding: 40px 0 60px;
    }

    .article-cta {
        padding: 28px 24px;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }
}
