html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

.fond-bureau-doyen {
  background-image: url("../images/fonds/fond_bureau_doyen.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  color: white;
}

/* ======================
   LAYOUT AUTEUR
====================== */
.auteur-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  width: min(1200px, 95vw);
  margin: 1rem auto;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
}

/* ======================
   IMAGE
====================== */
.auteur-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.auteur-image img {
  width: 100%;
  max-width: 370px;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.6));
}

/* ===============================
   STYLE AUTEUR NUMERIQUE MATRIX
================================ */
.modern-text {
  background: #1f1f1f; /* gris très foncé style écran */
  padding: 1rem;
  color: #d4f0d4; /* texte vert doux */
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
 } 
  
  /* ===============================
   STYLE AUTEUR ANCIEN
================================ */
.ancien-text {
  background: #fdf6e3; /* couleur papier ancien très clair */
  padding: 1rem;
  color: #5c3b0b; /* texte brun ancien */
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  line-height: 1.6;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ======================
   MOBILE
====================== */
@media (max-width: 900px) {

  .auteur-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .auteur-image img {
    max-width: 300px;
  }

  .auteur-text {
    max-height: none;
    overflow: visible;
  }
}