        /* Article Page Styles */
.article-page {
    max-width: 900px;
    margin: 50px auto 60px auto;
    padding: 35px 30px;
    background: rgba(252, 252, 252, 0.85);
    border-radius: 20px;
    border: 1.2px solid var(--border-light);
    box-shadow: 0 10px 25px rgba(43, 43, 43, 0.1);
}

.article-page h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--pepper-dark);
    margin-bottom: 25px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--pepper-medium);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

/* Article Image */
.article-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: 0 8px 20px rgba(43, 43, 43, 0.12);
}

/* Article Content */
.article-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--pepper-dark);
    margin-top: 30px;
    margin-bottom: 18px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--pepper-steel);
    margin-bottom: 22px;
}

.article-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
    color: var(--pepper-steel);
    font-size: 1.05rem;
}

.article-content ul li {
    margin-bottom: 12px;
}

.back-to-blog {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: var(--accent-blue);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.back-to-blog:hover {
    background: var(--pepper-charcoal);
}

/* Responsive */
@media (max-width: 720px) {
    .article-page {
        margin: 25px 20px 40px 20px;
        padding: 25px 20px;
    }

    .article-page h1 {
        font-size: 2.2rem;
    }

    .article-image {
        height: 250px;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }
}

    .article-cta {
    background: rgba(22, 102, 228, 0.1);
    border: 1px solid rgba(22, 102, 228, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.article-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--pepper-dark);
}

.article-cta .cta-button {
    background: var(--accent-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.article-cta .cta-button:hover {
    background: var(--pepper-charcoal);
    transform: translateY(-2px);
}