/* ============================================================
   rs1/text — paragraphe éditorial
   ============================================================ */

.mp-texte{
  font-size: var(--mp-t-base);
  line-height: var(--mp-lh-texte);
  color: var(--mp-texte);
}
.mp-texte p{ margin: 0 0 .9em }
.mp-texte > :first-child{ margin-top: 0 }
.mp-texte > :last-child{ margin-bottom: 0 }

.mp-sombre .mp-texte,
.text-white .mp-texte{ color: var(--mp-texte-sombre) }

.mp-texte--left   { text-align: left }
.mp-texte--center { text-align: center; margin-inline: auto; max-width: 62ch }
.mp-texte--right  { text-align: right }
.mp-texte--justify{ text-align: justify }

/* Texte posé directement dans la page, hors de toute section (ex. Notre groupe) :
   sans cela il colle au bandeau et n'a pas de gouttières. */
#main-content > .mp-texte{
  box-sizing: border-box;
  margin-inline: auto;
  padding: var(--mp-section-sm) var(--mp-gouttiere) 0;
}
#main-content > .mp-texte:not(.mp-texte--center){ max-width: var(--mp-max) }
#main-content > .mp-texte + .mp-texte{ padding-top: 1rem }
#main-content > .mp-texte:not(:has(+ .mp-texte)){ padding-bottom: var(--mp-section-sm) }
