/* ================================
   Article Page Styles
   ================================ */

/* Article Header */
.article-page {
    padding-top: 100px;
}

.article-header {
    padding: 60px 0 40px;
    text-align: center;
}

.article-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.read-time {
    font-size: 13px;
    color: var(--text-muted);
}

/* Article Hero Image */
.article-hero-image {
    padding-bottom: 60px;
}

.article-hero-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

/* Article Content */
.article-content {
    padding: 0 0 100px;
}

.content-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.content-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.content-wrapper p.lead {
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 500;
    border-left: 4px solid var(--accent-primary);
    padding-left: 24px;
    margin-bottom: 32px;
}

.content-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-top: 56px;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-goal {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent-primary) !important;
}

.content-wrapper ul {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.content-wrapper ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
}

.content-wrapper ul li strong {
    color: var(--text-primary);
}

.content-wrapper strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Article CTA Box */
.article-cta-box {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 102, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    text-align: center;
}

.article-cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-primary);
}

.article-cta-box p {
    font-size: 17px !important;
    max-width: 550px;
    margin: 0 auto 32px !important;
}

.article-cta-box .btn-primary {
    display: inline-flex;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header {
        padding: 40px 0 30px;
    }

    .article-subtitle {
        font-size: 17px;
    }

    .article-meta {
        gap: 12px;
    }

    .content-wrapper p {
        font-size: 16px;
    }

    .content-wrapper p.lead {
        font-size: 18px;
        padding-left: 20px;
    }

    .content-wrapper h2 {
        margin-top: 40px;
    }

    .article-cta-box {
        padding: 32px 24px;
    }

    .article-cta-box h3 {
        font-size: 24px;
    }
}