/* Blog specific styles */

/* Blog Card Hover Effects - Updated for simplified structure */
.blog-featured-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px);
}

.blog-recent-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-1px);
}

.blog-featured-card:hover h4,
.blog-recent-card:hover h6 {
    color: var(--color-primary-1) !important;
}

/* Ensure smooth transitions for simplified components */
.blog-featured-card,
.blog-recent-card {
    transition: all 0.3s ease;
}

.blog-featured-card h4,
.blog-recent-card h6 {
    transition: color 0.3s ease;
}

/* Fix for animation library overrides */
.blog-featured-card,
.blog-recent-card,
.blog-featured-card *,
.blog-recent-card * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    display: block !important;
}
