/* Blog Featured Section Styles */
.blog-preview {
    background: #f8f9fa;
    position: relative;
}

.blog-preview .blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(12,122,248,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(12,122,248,0.05);
    height: 100%;
    padding: 0;
}

.blog-preview .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(12,122,248,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f8f9fa;
}

.blog-content {
    padding: 1.5rem;
}

.blog-preview .blog-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-preview .blog-card h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview .blog-card h5 a:hover {
    color: var(--primary-blue);
}

.blog-preview .blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-preview .blog-card small {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .blog-preview .blog-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-preview .blog-card h5 {
        font-size: 1.1rem;
    }
    
    .blog-preview .blog-card p {
        font-size: 0.9rem;
    }
}