/* =====================================================================
   MERMAID OVERRIDES — Sola Fide Bible School
   ----------------------------------------------------------
   Reset site-wide prose constraints for Mermaid-rendered labels so each
   node's text doesn't inherit narrow max-widths from the surrounding
   prose styles (which would force every character onto its own line).
   ===================================================================== */

.mermaid .nodeLabel,
.mermaid .nodeLabel p,
.mermaid foreignObject p {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}

.mermaid foreignObject {
  overflow: visible !important;
}

/* Center the diagram and give it room to breathe. */
.mermaid {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.mermaid svg {
  max-width: 100%;
  height: auto;
}
