@charset "utf-8";
/* CSS Document */







.content-image {
  max-width: 720px; /* au lieu de 900px */
  margin: 30px auto;
  text-align: center;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === Carte bleue universelle === */

.info-card-blue {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #f3f8ff;
  border: 1px solid #d6e6ff;
  border-left: 5px solid #3b82f6;
  border-radius: 12px;
}

/* Titres */
.info-card-blue h2,
.info-card-blue h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.2rem;

  color: #1e3a8a;
}

.info-card-blue h2 {
  font-size: 1.35rem;
}

.info-card-blue h3 {
  font-size: 1.25rem;
}

/* Listes */
.info-card-blue ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card-blue li {
  margin-bottom: 10px;
}

.info-card-blue li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #1e3a8a;
  transition: background 0.2s ease;
}

.info-card-blue li a:hover {
  background: rgba(59,130,246,0.08);
}

/* Sous-niveaux (sommaire uniquement) */
.table-of-contents li ul {
  margin-top: 6px;
  padding-left: 16px;
}

.table-of-contents li ul li {
  font-size: 0.95rem;
  color: #475569;
}


