/* Article Specific Styles */
.article-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 120px 0 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.article-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

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

.article-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.2;
}

.article-hero {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.article-hero-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.article-content {
    padding: 80px 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
}

.article-body {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-green);
    background: var(--light-gray);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-body h2 i {
    color: var(--primary-green);
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
}

.article-body p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-body li strong {
    color: var(--primary-green);
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.article-cta .btn:hover {
    background: var(--cream);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: var(--primary-green);
}

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

.related-articles li {
    border-bottom: 1px solid var(--medium-gray);
    padding: 12px 0;
}

.related-articles li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: var(--primary-green);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        gap: 15px;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-body {
        padding: 30px 20px;
    }
    
    .article-cta {
        padding: 30px 20px;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}