/* ============================= */
/* ABOUT / PRÉSENTATION          */
/* ============================= */

.about-section {
  padding: 40px 20px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  margin-bottom: 25px;
}

/* Texte */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--primary-color);
  font-family: var(--font-glacial-indiference);
}

/* Paragraphes */
.about-text p {
  max-width: 800px;
  margin: 0 auto;
}

/* Signature finale */
.about-signature {
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.9;
}

/* Desktop */
@media (min-width: 768px) {
  .about-text {
    font-size: 1.05rem;
  }

  .about-signature {
    font-size: 1.1rem;
  }
}