/* Blog-specific styles */

/* Site Background for better card contrast */
body {
    background-color: #f8f9fa;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    border-color: rgba(13, 110, 253, 0.2);
}

.blog-card .card-title a {
    transition: color 0.2s ease;
}

.blog-card:hover .card-title a {
    color: #0d6efd !important;
}

/* Sidebar card styling to match */
.card {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Enhanced pagination styling */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    border-color: rgba(13, 110, 253, 0.2);
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Category badge hover effects */
.badge {
    transition: transform 0.2s ease;
}

.badge:hover {
    transform: scale(1.05);
}