/* plan.css – Style spécifique pour plan-du-site.php */

/* Conteneur principal : calqué sur all_actualites.css */
.all-actualites-container {
  width: 532px;              /* même largeur que all_actualites.css */
  max-width: 100%;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Titre principal */
.all-actualites-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #301910; /* ton marron foncé */
}

/* Ligne horizontale */
hr.custom-line {
  border: none;
  border-top: 2px dashed var(--gold);
  margin: 2rem 0;
}

/* Illustration */
.illustration {
  text-align: center;
  margin: 2rem 0;
}

.illustration img {
  max-width: 100%;
  height: auto;
  width: 36%; /* Taille normale sur desktop */
}

/* Liste Plan du site */
.sitemap-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.sitemap-list li {
  margin-bottom: 0.8rem;
}

/* Liens */
.sitemap-list a {
  font-size: 1.1rem;
  text-decoration: underline;
  color: #301910;
  transition: color 0.3s;
}

.sitemap-list a:hover {
  color: #D1893D;
}

/* Responsive mobile */
@media (max-width: 576px) {
  .all-actualites-container {
    width: auto;
    max-width: 95vw;
    margin: 1rem auto;
    padding: 1rem;
  }

  .illustration img {
    width: 42%;       /* l’image occupe ??% de la largeur sur mobile */
    max-width: 300px; /* limite pour ne pas trop grossir */
  }
}