/* ── Section texte seul ── */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 2rem;
  border-top: 1px solid #e5e5e5;
}

.text-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.text-section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-night);
  max-width: 70ch;
}

.text-section--full .text-section-body {
  max-width: none;
}

/* -- Responsive -- */
@media (max-width: 640px) {
  .text-section {
    padding: 2rem 1rem;
  }

  .text-section-title {
    font-size: 1.4rem;
  }

  .text-section-body {
    font-size: 1rem;
  }
}
