/**
 * Notesmedia Study Cards — KaTeX scoping styles.
 *
 * Small, additive rules layered on top of katex.min.css. Only affects KaTeX
 * output *inside* a Study Card. Does not alter any existing card styling.
 */

/* Display math ($$...$$ or \[...\]) — center and let long expressions scroll
   horizontally within their own box instead of overflowing the card. */
.nm-sc-card .katex-display {
	margin: 0.6em 0;
	overflow-x: auto;
	overflow-y: hidden;
	max-width: 100%;
	padding-bottom: 2px;
}

/* Inline math should sit on the text baseline without inflating line-height. */
.nm-sc-card .katex {
	font-size: 1.05em;
	line-height: normal;
	white-space: normal;
}

/* Keep a rendered error visible but non-alarming, never page-breaking. */
.nm-sc-card .katex-error {
	color: #9c3a1f;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	white-space: normal;
}
