/* Blog Article Styles */

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

/* Article Image */
.article-image {
    margin-bottom: 3rem;
    text-align: center;
}

.article-image svg {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.article-content li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.article-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--primary-color), #1e3f70);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.article-cta .btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

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

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

    .article-content h2::before {
        display: none;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 0 1rem;
    }

    .lead {
        padding: 1rem;
        font-size: 1.1rem;
    }
}