/* SECTION GÉNÉRALE */
.mot-president-section {
  /* padding: 4rem 2rem; */
  background: linear-gradient(to bottom right, #eef2f7, #ffffff);
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
}

/* CONTENEUR DU TEXTE */
.mot-president-text {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease forwards;
}

/* TITRE */
.mot-president-text h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1.5rem;
  position: relative;
}

/* SALUTATION OU PHRASE CLÉ */
.mot-president-text strong {
  color: #0055a5;
}

/* IMAGE FLOTANTE À DROITE */
.inline-president-image {
  float: right;
  width: 300px;
  margin: 1rem 0 1.5rem 2rem;
}

.inline-president-image img {
  width: 50vh;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.inline-president-image img:hover {
  transform: scale(1.03);
}

/* RÉPONSE AU FLOTTEMENT */
.mot-president-text::after {
  content: "";
  display: block;
  clear: both;
}

/* TEXTE PARAGRAPHES */
.mot-president-text p {
  margin-bottom: 1.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .inline-president-image {
    float: none;
    display: block;
    width: 100%;
    margin: 2rem 0;
    text-align: center;
  }

  .inline-president-image img {
    max-width: 100%;
    border-radius: 10px;
  }

  .mot-president-text {
    font-size: 1rem;
  }

  .mot-president-text h2 {
    font-size: 1.6rem;
  }
}

/* ANIMATION APPARITION (facultative) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
