/* ==========================================================
   PAGE CONTACT — FORCE 1 COLONNE
   ========================================================== */

.page-container .a-propos-hero-bottom {
  display: block !important;
  max-width: 1080px;
  margin: 0 auto;
}

.page-container .a-propos-content,
.page-container .a-propos-founder {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-container .a-propos-content {
  margin-bottom: 56px;
}

/* ==========================================================
   FONDATEUR — PHOTO À GAUCHE / TEXTE À DROITE
   ========================================================== */

.a-propos-founder {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: flex-start;
}
.a-propos-founder-content {
  flex: 1;
  min-width: 0;
}
/* Photo à gauche (taille fixe) */
.a-propos-founder-photo {
  flex: 0 0 220px;
}

/* Placeholder ou image */
.founder-placeholder,
.a-propos-founder-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top right; /* 🔥 clé pour voir le logo */
}
/* Texte prend le reste */
.a-propos-founder-content {
  flex: 1;
}
/* Harmoniser aussi le h3 si nécessaire */
.a-propos-founder-content h3 {
  font-family: "Montserrat", sans-serif;
}

/* ==========================================================
   SIGNATURE FONDATEUR — STYLE
   ========================================================== */

/* Photo ronde */
.founder-placeholder,
.a-propos-founder-photo img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

/* Nom du fondateur */
.founder-name {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Lien LinkedIn */
.founder-name a {
  text-decoration: none;
  color: var(--c-primaire);
  position: relative;
}

/* Effet subtil au hover */
.founder-name a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--c-primaire);
  opacity: 0.2;
  transition: opacity 0.2s ease;
}

.founder-name a:hover::after {
  opacity: 1;
}

/* ==========================================================
   SÉPARATEUR ENTRE SECTIONS
   ========================================================== */

.a-propos-content::after {
  content: "";
  display: block;
  margin: 40px 0 48px;

  height: 6px;
  width: 420px;
  max-width: 100%;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    var(--c-accent-hover) 0%,
    var(--c-accent) 60%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .a-propos-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .a-propos-founder-photo {
    flex: none;
  }

  .founder-placeholder,
  .a-propos-founder-photo img {
    width: min(250px, 70vw);
    height: min(250px, 70vw);
  }
}
