/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

.page-header {
    margin-top: 20px; /* Espace pour éviter la superposition */
    text-align: center; /* Centrer le titre (optionnel) */
}

.header {
    z-index: 9999; /* S'assure que le header reste au-dessus si nécessaire */
}

.title-post {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

/* Styles pour afficher les articles en grille */
.page-content.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
    gap: 30px; /* Espacement horizontal et vertical */
}

.page-content .post {
    padding: 15px; /* Espacement interne */
    border: 1px solid #ddd; /* Bordure optionnelle */
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.page-content .post h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.page-content .post p {
    font-size: 1rem;
    color: #555;
}

/* Responsive pour petits écrans */
@media (max-width: 768px) {
    .page-content.grid-layout {
        grid-template-columns: 1fr; /* Une seule colonne */
    }
}


