/* Pattern: Personas (selector « Pour qui ? ») */

.mau-personas-grid .wp-block-column {
  display: flex;
  flex-direction: column;
}

.mau-persona-card {
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s, border-color 0.2s;
}

.mau-persona-card .wp-block-heading {
  margin-block: var(--wp--preset--spacing--16) var(--wp--preset--spacing--12);
}

/* Contexte sombre (ink) — maquette v2 : cartes en verre, textes clairs.
   Couleurs translucides/gold-light en dur : le contexte ink n'a pas de tokens dédiés. */
.mau-section--personas .mau-persona-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wp--custom--radius--md);
}
.mau-section--personas .mau-persona-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--wp--preset--color--accent);
  transform: translateY(-4px);
  box-shadow: none;
}
.mau-section--personas > p.has-lede-font-size,
.mau-section--personas .mau-persona-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* Pastille d'icône (maquette : 48px, accent-soft, gold) */
.mau-persona-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139, 116, 55, 0.15);
  color: var(--wp--preset--color--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--wp--preset--spacing--16);
}
.mau-persona-card__icon .mau-icon {
  width: 24px;
  height: 24px;
  margin: 0;
  stroke: currentColor;
}

/* Lien : texte + flèche dans une pastille ronde (maquette) */
.mau-section--personas .mau-persona-link {
  margin-block-start: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 600;
  color: #D4B66B;
  text-decoration: none;
}
.mau-persona-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 182, 107, 0.15);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
.mau-persona-card:hover .mau-persona-link__arrow {
  background: rgba(212, 182, 107, 0.28);
  transform: translateX(3px);
}

/* Fragment doré italique dans le titre de section */
.mau-section--personas h2 em {
  color: var(--wp--preset--color--accent);
  font-style: italic;
}

/* Ellipse décorative en haut : transition courbe depuis la section claire au-dessus (maquette). */
.mau-section--personas {
  position: relative;
  overflow: hidden;
}
.mau-section--personas::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background: var(--wp--preset--color--paper-soft);
  border-radius: 50%;
  pointer-events: none;
}
.mau-section--personas > * {
  position: relative;
  z-index: 1;
}
/* Tablette + mobile : l'ellipse (point bas au centre) chevauche l'eyebrow/titre
   sur écran étroit où le contenu est proche du centre. On réduit la descente de
   la courbe (top+height : 100px → 30px) pour dégager le texte tout en gardant la vague. */
@media (max-width: 1099px) {
  .mau-section--personas::before {
    height: 100px;
    top: -70px;
  }
}
