  /* =========================================================================
     FAIT MARQUANT - RÉINITIALISATION ET EN-TÊTE DE LA PAGE
     ========================================================================= */
  /* En-tête de la page */
  .header {
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .header p {
    font-size: 1.2rem;
    font-weight: 300;
  }
  
  /* Conteneur global */
  .page-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
  }
  
  /* Conteneur de chaque post */
  .post {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 20px;
  }
  
  .post:hover {
    transform: translateY(-5px);
  }
  
  /* Inverse l'ordre pour les posts pairs */
  .post:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  /* Zone d'affichage de l'image */
  .post-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 8px;
  }
  
  /* Contenu du post */
  .content-container {
    flex: 1;
    padding: 20px;
    text-align: center;
  }
  
  .content-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    white-space: pre-line;
  }
  
  /* Bouton "Lire plus" */
  .read-more {
    color: #0f4c75;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
  }
  
  /* Message en cas d'absence de faits marquants */
  .no-posts {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 40px;
  }
  
