.blog-hero {
    background: linear-gradient(135deg, var(--section-hero-bg1, #e8f7f0), var(--section-hero-bg2, #d5f0e3));
    padding: 36px 0;
    margin-bottom: 28px;
}
.blog-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.blog-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #f3f4f6;
}
.blog-card-body { padding: 18px; }
.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 8px;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary, #2ca66a); }
.blog-meta { font-size: .8rem; color: #6b7280; margin-bottom: 10px; }
.blog-excerpt { font-size: .9rem; color: #4b5563; line-height: 1.6; }
.blog-sidebar-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    margin-bottom: 16px;
}
.blog-sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.blog-cat-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid #f3f4f6; color: #374151; text-decoration: none;
}
.blog-cat-link:last-child { border-bottom: 0; }
.blog-cat-link.active, .blog-cat-link:hover { color: var(--primary, #2ca66a); }
.blog-article-img {
    width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; margin-bottom: 24px;
}
.blog-article-content { font-size: 1rem; line-height: 1.8; color: #374151; }
.blog-article-content img { max-width: 100%; height: auto; border-radius: 8px; }
.blog-recent-item {
    display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f3f4f6;
}
.blog-recent-item:last-child { border-bottom: 0; }
.blog-recent-thumb {
    width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: #f3f4f6;
}
.blog-subscribe-form .form-control { font-size: .9rem; }
