/* ── Article Detail Styles ── */
.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-header {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.article-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 1rem 0 1.5rem;
    line-height: 1.25;
}

.article-meta {
    font-size: .9rem;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 500;
}

.article-meta i {
    color: var(--primary);
}

.article-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: -40px auto 3rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.article-body {
    padding: 0 0 100px;
}

.article-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--text);
}

.article-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: .65rem;
}

.article-body li strong {
    color: var(--text);
}

/* Mobile Article Adjustments */
@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 30px;
    }
    .article-header h1 {
        font-size: 1.65rem;
    }
    .article-featured-img {
        max-height: 250px;
        margin: -20px auto 2rem;
        border-radius: 12px;
    }
    .article-meta {
        gap: 0.75rem;
        flex-direction: column;
    }
    .article-container {
        padding: 0 20px;
    }
    .article-body {
        padding: 0 0 60px;
    }
    .article-body h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
    .article-body p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .article-body ul, .article-body ol {
        padding-left: 1.25rem;
        font-size: 1rem;
    }
    .article-body li {
        margin-bottom: 0.75rem;
    }
    /* Fix the hardcoded inline padding on the soft-selling CTA box */
    .article-body div[style*="padding: 2.5rem"] {
        padding: 1.5rem 1rem !important;
        margin-top: 2.5rem !important;
    }
    .article-body div[style*="padding: 2.5rem"] h3 {
        font-size: 1.25rem !important;
        line-height: 1.4;
    }
}
