.blog-hero {
    background: linear-gradient(135deg, #f6f8ff 0%, #eef2f7 100%);
    border-bottom: 1px solid #e5e7eb;
}

.blog-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-meta {
    font-size: 0.85rem;
    color: #6b7280;
}

.blog-meta .badge {
    font-weight: 500;
}

.blog-sidebar-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
}

.blog-pagination .page-link {
    border-radius: 8px;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
}

.blog-article-content h2,
.blog-article-content h3 {
    margin-top: 1.5rem;
}
