/* Blog Article Styles */

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem 4rem;
}

.blog-article {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.article-header {
    padding: 3rem 0 0;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.article-date::before {
    content: "📅";
    margin-right: 6px;
}

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

.article-author::before {
    content: "✍️";
    margin-right: 6px;
}

.article-category {
    display: flex;
    align-items: center;
    color: var(--dark-purple);
    background-color: rgba(108, 92, 231, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.article-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-content {
    padding: 3rem 3rem 4rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2.5rem 0 1.2rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0 2rem 1.5rem;
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.article-content blockquote {
    background-color: #f8f9ff;
    border-left: 4px solid var(--dark-purple);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.article-content blockquote cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    display: block;
    text-align: right;
}

.article-image {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.article-cta {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0 1rem;
    text-align: center;
}

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

.article-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.article-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1E88E5, var(--dark-purple));
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.article-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(108, 92, 231, 0.4);
}

.article-footer {
    padding: 2rem 3rem 3rem;
    border-top: 1px solid #eee;
    background-color: #f8f9ff;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tag {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.article-share {
    margin-bottom: 2rem;
}

.share-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.share-link {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease;
}

.share-link.twitter {
    background-color: #1DA1F2;
}

.share-link.facebook {
    background-color: #4267B2;
}

.share-link.linkedin {
    background-color: #0077B5;
}

.share-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.related-articles h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.related-articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.8rem;
}

.related-articles a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.05rem;
}

.related-articles a:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}

.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    margin-right: 1rem;
    border-radius: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.site-footer p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
    }
    
    .article-content p, 
    .article-content li {
        font-size: 1rem;
    }
    
    .article-cta {
        padding: 1.5rem;
    }
    
    .article-footer {
        padding: 1.5rem;
    }
}