.blog-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 4rem 0;
        margin-bottom: 3rem;
    }
    .blog-card {
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
        background: #fff;
        height: 100%;
    }
    .blog-image {
        margin-bottom: 1rem;
        border-radius: 8px;
        overflow: hidden;
        height: 200px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    .placeholder-image {
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .blog-card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }
    .blog-meta {
        color: #6c757d;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .blog-excerpt {
        color: #495057;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .read-more {
        color: #d87d1c;
        text-decoration: none;
        font-weight: 600;
    }
    .read-more:hover {
        text-decoration: underline;
    }
    .stat-item {
        padding: 1rem;
    }
    .stat-item h4 {
        margin: 0.5rem 0;
        color: #333;
    }
    .stat-item p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
    }
