.elementor-39889 .elementor-element.elementor-element-ede4d4b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}/* Start custom CSS for shortcode, class: .elementor-element-2ed2ec9 *//* ============================================================
   GRILLE D'ACTUALITÉS - DESIGN "CLEAN CARD"
   ============================================================ */

/* 1. Configuration de la grille (3 colonnes) */
.grille-actus-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* 2. Style de la Carte */
.actu-card-simple {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Permet l'alignement vertical des éléments internes */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    height: 100%; /* S'assure que toutes les cartes d'une ligne ont la même hauteur */
}

.actu-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 3. Header de la carte (Image + Badge) */
.card-img-header {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0; /* Empêche l'image de se compresser */
}

.card-badges-top {
    position: absolute;
    top: 15px;
    right: 15px;
}

.badge-simple {
    background: #C3363C; /* Ton rouge de référence */
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* 4. Corps de la carte (Contenu) */
.card-body-simple {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Prend tout l'espace restant pour pousser le footer */
}

.card-title-simple {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
    min-height: 50px; /* Optionnel : aide à l'alignement si titres très courts */
}

.card-excerpt-simple {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pousse le bouton "Lire la suite" vers le bas */
}

/* 5. Bouton "Lire la suite" (Aligné, Animé avec Ligne) */
.hero-link {
    margin-top: auto;
    display: inline-flex !important;
    align-items: center !important;
    color: #C3363C !important; /* Ton rouge */
    text-decoration: none !important;
    font-weight: bold;
    gap: 8px;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative; /* Indispensable pour positionner la ligne */
    padding-bottom: 4px; /* Espace pour la ligne sous le texte */
}

/* Création de la ligne (Design inspiré du fichier source) */
.hero-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Invisible au départ */
    height: 2px;
    background-color: #FCCC40; /* Jaune d'accentuation  */
    transition: width 300ms ease; /* Animation fluide de déploiement  */
}

.hero-link .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* État au Hover */
.hero-link:hover {
    color: #222 !important;
}

.hero-link:hover::after {
    width: 100%; /* La ligne souligne tout le texte au survol [cite: 7] */
}

.hero-link:hover .dashicons {
    transform: translateX(6px); /* Mouvement de la flèche [cite: 9] */
}

/* 6. Footer de la carte (Date) */
.card-footer-simple {
    padding: 15px 25px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.card-date-simple {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 7. Pagination */
.grille-pagination {
    text-align: center;
    margin-top: 40px;
    grid-column: 1 / -1; /* S'étend sur toute la largeur de la grille */
}

.grille-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.grille-pagination .page-numbers.current {
    background: #C3363C;
    color: #fff;
    border-color: #C3363C;
}

/* 8. Responsivité (Tablettes et Mobiles) */
@media (max-width: 1024px) {
    .grille-actus-simple { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grille-actus-simple { grid-template-columns: 1fr; }
    .card-img-header { height: 180px; }
}/* End custom CSS */