/* Article Detail Page Styles */
.article-header {
    background: linear-gradient(135deg, #1b5e20 0%, #388e3c 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1920') center/cover;
    opacity: 0.1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.article-meta-item i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.article-category-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.article-body {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.article-body h2, .article-body h3, .article-body h4 {
    color: #2e7d32;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.article-body p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-body strong {
    color: #2e7d32;
    font-weight: 600;
}

.article-body ul, .article-body ol {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.back-btn {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
}

.back-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(46,125,50,0.3);
    color: white;
}

.back-btn i {
    margin-right: 8px;
}

.related-articles {
    background: #f8f9fa;
    padding: 60px 0;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(46,125,50,0.15);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 20px;
}

.related-title {
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.share-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.share-btn {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: #666;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #2e7d32;
}

.share-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .article-body {
        padding: 30px 20px;
    }
    
    .article-header {
        padding: 40px 0 30px;
    }
}
