/* Article Header */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4a7c59;
}

.breadcrumb span {
    color: #666;
}

.breadcrumb i {
    font-size: 0.7rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-category {
    background: #2c5530;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.article-date,
.article-read-time {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-title {
    color: #2c5530;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-subtitle {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.author-name {
    color: #2c5530;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* Article Content */
.article-content {
    padding: 4rem 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-body {
    max-width: none;
}

.featured-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.article-text h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    padding-top: 1rem;
}

.article-text h3 {
    color: #2c5530;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text ul,
.article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-text blockquote {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border-left: 4px solid #2c5530;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    position: relative;
}

.article-text blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2c5530;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

/* Article Tags */
.article-tags {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-tags h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #2c5530;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.25rem 0.5rem 0.25rem 0;
    border: 1px solid rgba(44, 85, 48, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    margin: 2rem 0;
}

.article-share h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.widget-title {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8f5e8;
}

/* Author Widget */
.author-widget {
    text-align: center;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #e8f5e8;
}

.author-widget h5 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-widget p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Related Articles Widget */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-article:hover {
    background: #f8f9fa;
    border-color: rgba(44, 85, 48, 0.1);
    transform: translateX(5px);
}

.related-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h6 {
    color: #2c5530;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-date {
    color: #666;
    font-size: 0.8rem;
}

/* Category List Widget */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #2c5530;
}

.category-list span {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Related Articles Section */
.related-articles-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-articles-section .blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-articles-section .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-articles-section .blog-image {
    position: relative;
    overflow: hidden;
}

.related-articles-section .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-articles-section .blog-card:hover .blog-img {
    transform: scale(1.05);
}

.related-articles-section .blog-content {
    padding: 1.5rem;
}

.related-articles-section .blog-title {
    color: #2c5530;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-articles-section .blog-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-articles-section .blog-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-articles-section .blog-link:hover {
    color: #4a7c59;
}

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

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

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .article-sidebar {
        position: static;
        order: -1;
    }

    .article-text {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

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

    .related-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 100px 0 40px;
    }

    .article-title {
        font-size: 1.6rem;
    }

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

    .article-img {
        height: 250px;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .related-article {
        flex-direction: column;
        text-align: center;
    }

    .related-article img {
        width: 100%;
        height: 120px;
    }
}