/* Blog-specific styles */

/* Blog article cards hover effects */
.blog-article {
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-4px);
}

/* Featured article gradient background */
.featured-article-bg {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%) !important;
}

/* Blog category tags */
.blog-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

/* Blog post placeholder images */
.blog-image-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 12rem;
}

/* Blog grid responsive adjustments */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
