/* Article Header */
.article-header {
    background: linear-gradient(135deg, #6356e6, #8c82ec);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.article-meta .blog-category {
    background: rgba(255, 255, 255, 0.2);
}

.article-meta .date,
.article-meta .read-time {
    color: rgba(255, 255, 255, 0.8);
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.article-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 800px;
    margin-bottom: 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-hero {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #333;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

blockquote cite {
    font-weight: 600;
    color: #666;
}

/* Article CTA */
.article-cta {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.article-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-cta p {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header {
        padding: 3rem 0;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    blockquote {
        padding: 1.5rem;
    }

    blockquote p {
        font-size: 1.1rem;
    }

    .article-cta {
        padding: 2rem;
    }
}

/* Animation */
.blog-article>*,
.related-articles {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}