/* ===============================
   Fichier : landing-proof.css
   Description : Bloc de témoignage - DRY & SOC
   =============================== */

/* ========== Layout Principal ========== */
.landing__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-large);
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* ========== Titre ========== */
.landing__proof-title {
  text-align: center;
  width: 100%;
}

/* Conteneur global du bloc de témoignage */
.highlight-box-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--gap-medium);
  max-width: 800px;
  width: 100%;
  margin: 0 auto; /* Centrage horizontal */
}

/* Image du témoignage */
.social-proof__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; /* Empêche l'image de rétrécir */
}

/* Texte associé */
.social-proof__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
}

/* Paragraphes de texte */
.social-proof__text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Auteur du témoignage */
.social-proof__author {
  font-size: 0.8rem;
  font-style: italic;
  color: #333;
}

/* ======= Responsive Mobile (<= 768px) ======= */
@media (max-width: 768px) {
  .highlight-box-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-proof__text {
    align-items: center;
  }
}
