
.blog-hero {
    background: linear-gradient(120deg, #198754 60%, #43c59e 100%), url('https://res.cloudinary.com/dti3zwfma/image/upload/v1753129926/__ugea5w_1_dmahxe.webp') center/cover no-repeat;
    color: #fff;
    min-height: 320px;
    display: flex;
    align-items: center;
    position: relative;
}
.blog-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(25,135,84,0.55); z-index: 1;
}
.blog-hero-content {
    position: relative; z-index: 2; text-align: center; width: 100%;
}
.blog-hero-content h1 { font-size: 2.5rem; font-weight: 700; }
.blog-meta { font-size: 1rem; color: #e0f2e9; margin-bottom: 0.5rem; }
.blog-main img { max-width: 100%; border-radius: 1rem; margin: 1.5rem 0; }
.blog-main blockquote {
    border-left: 4px solid #198754;
    background: #e9f7ef;
    color: #198754;
    font-style: italic;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}
.blog-main h2, .blog-main h3 { color: #198754; font-weight: 600; margin-top: 2.5rem; }
.sidebar-card {
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    background: #fff;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}
.category-icon { color: #198754; margin-right: 8px; }
.author-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin: 2.5rem 0 1.5rem 0;
}
.author-box img {
    width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-right: 1.5rem;
}
.author-box h6 { margin-bottom: 0.2rem; font-weight: 600; }
.comments-section {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}
.related-posts .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.related-posts .card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}


@media (max-width: 768px) {
    .blog-hero-content h1 { font-size: 1.5rem; }
    .author-box { flex-direction: column; text-align: center; }
    .author-box img { margin-bottom: 1rem; margin-right: 0; }
}
