/* Blog Single Page Styles */
.blog-single-hero {
    background: linear-gradient(135deg, #5AAC4E, #234821);
    padding: 80px 0 60px;
    color: white;
}

.blog-single-hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-meta-header {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 15px;
    opacity: 0.95;
}

.blog-meta-header span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-single-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-content-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-content-wrapper h2,
.blog-content-wrapper h3 {
    color: #0D210B;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-content-wrapper h2 {
    font-size: 32px;
}

.blog-content-wrapper h3 {
    font-size: 26px;
}

.blog-content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content-wrapper li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.blog-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.blog-share h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0D210B;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-whatsapp {
    background: #25d366;
}

.share-linkedin {
    background: #0077b5;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #0D210B;
    text-align: center;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.related-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 25px;
}

.related-post-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.related-post-content h4 a {
    color: #0D210B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #5AAC4E;
}

.related-post-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0D210B;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.recent-post-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-info h5 a {
    color: #0D210B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h5 a:hover {
    color: #5AAC4E;
}

.recent-post-date {
    font-size: 13px;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-single-hero h1 {
        font-size: 28px;
    }

    .blog-featured-image {
        height: 250px;
    }

    .blog-content-wrapper {
        padding: 30px 20px;
    }

    .blog-content-wrapper h2 {
        font-size: 24px;
    }

    .blog-content-wrapper h3 {
        font-size: 20px;
    }

    .blog-content-wrapper p,
    .blog-content-wrapper li {
        font-size: 15px;
    }
}