/* ==========================================================
   Widget : Titre Manifeste
   Lignes typographiques géantes indexées avec badges pill
   ========================================================== */

.mb-tm {
  width: 100%;
}

/* ── Eyebrow ── */
.mb-tm__eyebrow {
  margin-bottom: 20px;
}

/* ── Bloc titre ── */
.mb-tm__title {
  margin: 0;
  font-size: inherit;
  line-height: 1;
}

/* ── Ligne ── */
.mb-tm__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(87, 36, 0, .15);
  padding: 12px 0;
  gap: 24px;
}

.mb-tm__line:last-child {
  border-bottom: 1px solid rgba(87, 36, 0, .15);
}

/* ── Partie gauche : texte + badge ── */
.mb-tm__line-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Texte principal ── */
.mb-tm__line-text {
  font-family: var(--mb-font-heading, 'Playfair Display', serif);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.mb-tm__line-text--brown {
  color: var(--mb-brown, #572400);
}

.mb-tm__line-text--pink {
  color: var(--mb-pink, #ff66c4);
}

.mb-tm__line-text--muted {
  color: var(--mb-muted, #8a6a5a);
}

.mb-tm__line-text--italic {
  font-style: italic;
}

/* ── Badge pill ── */
.mb-tm__badge {
  display: inline-block;
  font-family: var(--mb-font-body, 'Open Sans', system-ui, sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--mb-brown, #572400);
  border: 1.5px solid var(--mb-brown, #572400);
  border-radius: 100px;
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* ── Numéro de ligne ── */
.mb-tm__num {
  font-family: var(--mb-font-body, 'Open Sans', system-ui, sans-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(87, 36, 0, .25);
  flex-shrink: 0;
  user-select: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mb-tm__line-text {
    white-space: normal;
  }
  .mb-tm__num {
    display: none;
  }
}
