.elementor-522 .elementor-element.elementor-element-2c41c14{--display:flex;}.elementor-522 .elementor-element.elementor-element-6375dc3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c933a10 *//* 🎯 CARTES BLOG - VERSION MODERNE */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* 📸 IMAGE AVEC OVERLAY AU SURVOL */
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* 💬 CONTENU */
.blog-card-content {
    padding: 24px;
}

/* 🏷️ CATÉGORIE - COULEURS PAR TYPE */
.blog-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Couleurs selon catégorie */
.blog-card[data-categories*="securite"] .blog-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.blog-card[data-categories*="conseils"] .blog-category {
    background: linear-gradient(135deg, #06a77d 0%, #059669 100%);
    color: white;
}

.blog-card[data-categories*="actualites"] .blog-category {
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: white;
}

.blog-card[data-categories*="blog"] .blog-category {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}
/* 🔧 Hardware */
.blog-card[data-categories*="hardware"] .blog-category {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

/* 🎓 Tutoriels */
.blog-card[data-categories*="tutoriels"] .blog-category {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

/* 🪟 Windows */
.blog-card[data-categories*="windows"] .blog-category {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

/* 🔧 Maintenance */
.blog-card[data-categories*="maintenance"] .blog-category {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}


/* 📝 TITRE */
.blog-card h3 {
    margin: 12px 0;
    font-size: 20px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.blog-card h3 a:hover {
    color: #0066cc;
    background: linear-gradient(to right, #0066cc, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 📄 EXTRAIT */
.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin: 12px 0;
    font-size: 15px;
}

/* 📅 META */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* 🎯 FILTRES - MODERNISÉS */
.blog-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.filter-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0066cc 0%, #667eea 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

/* 📱 RESPONSIVE AMÉLIORÉ */
@media (max-width: 768px) {
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card h3 {
        font-size: 18px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ✨ ANIMATION D'APPARITION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }/* End custom CSS */