/* ─────────────────────────────────────────────
   SECTION — PARIS AIDES
   Teaser : deux styles de texte (grand + normal)
   ───────────────────────────────────────────── */

.section-paris-aides .teaser {
  color: #fef8f0;
  line-height: 1.45;
  margin-bottom: 1rem;
  text-align: left;
  max-width: 600px;
}

/* Première partie : grande, visible, comme un sous-titre */
.section-paris-aides .teaser strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  color: #fef8f0;
}

/* Deuxième partie : taille normale, ton calme */
.section-paris-aides .teaser span {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fef8f0;
}

/* Bouton à droite du texte */
.section-paris-aides .expander-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Bouton cohérent */
.section-paris-aides .expander-cta {
  flex-shrink: 0;
  background-color: #8B0000;
  color: #fff;
  font-weight: 500;
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.section-paris-aides .expander-cta:hover {
  background-color: #a31010;
  transform: translateY(-2px);
}

/* Responsive — empile le bouton dessous sur petit écran */
@media (max-width: 640px) {
  .section-paris-aides .expander-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-paris-aides .expander-cta {
    align-self: flex-end;
    margin-top: 0.75rem;
  }
}
