.blogs-section {
    background: #ffffff;
}

.blog-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 1.5rem;
}

.badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.blog-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card:hover h5 a {
    color: #0d6efd;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-image img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-image img {
        height: 180px;
    }

    .blog-content {
        padding: 1.25rem;
    }
}