/* Blog Article Styles */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 48px 100px;
}

.article-header {
    margin-bottom: 48px;
}

.back-link {
    display: inline-block;
    color: var(--blue);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 28px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--blue-dark);
}

.article-category {
    display: inline-block;
    font-size: 0.72em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 14px;
}

.article-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8em;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.article-meta {
    font-size: 0.9em;
    color: var(--text-muted);
}

/* Article Content */
.article-content {
    font-size: 1.05em;
    line-height: 1.85;
    color: var(--text-body);
}

.article-content .lead {
    font-size: 1.15em;
    color: var(--text-heading);
    line-height: 1.8;
    margin-bottom: 28px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7em;
    color: var(--text-heading);
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.article-content h3 {
    font-size: 1.15em;
    color: var(--text-heading);
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.75;
}

.article-content a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.article-content a:hover {
    color: var(--blue-dark);
}

.article-content strong {
    color: var(--text-heading);
    font-weight: 600;
}

.article-content table {
    font-size: 0.95em;
}

/* CTA at bottom */
.cta-section {
    padding: 100px 48px;
    text-align: center;
    background: var(--navy);
}

.cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.cta-section p {
    font-size: 1.08em;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-article {
        padding: 32px 20px 60px;
    }

    .article-header h1 {
        font-size: 2em;
    }

    .article-content h2 {
        font-size: 1.4em;
        margin-top: 40px;
    }

    .cta-section {
        padding: 80px 20px;
    }
}
