/* Hero moderne avec gradient et pattern */
.category-hero-modern {
    position: relative;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #276346 0%, #1e4d36 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(39, 99, 70, 0.15);
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.category-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.category-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.category-hero-modern .category-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.category-hero-modern .category-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.category-hero-modern .category-description p {
    margin-bottom: 0;
}

.category-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.meta-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-count svg {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .category-hero-modern {
        padding: 3rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    
    .category-hero-modern .category-title {
        font-size: 2rem;
    }
    
    .category-hero-modern .category-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-hero-modern {
        padding: 2.5rem 1rem;
    }
    
    .category-hero-modern .category-title {
        font-size: 1.6rem;
    }
}