/* Article FAQ block. Scoped under .mb-faq so it inherits the theme's fonts
   but keeps its own layout. Adapted from the standalone tool's styles.css. */

.mb-faq {
	--mb-faq-accent: #0f5b57;
	--mb-faq-line: #ddd8cc;
	--mb-faq-ink-soft: #4a5656;
	margin: 40px 0 8px;
	padding-top: 28px;
	border-top: 2px solid currentColor;
}

.mb-faq-heading {
	margin: 0 0 20px;
	font-size: 1.6em;
	line-height: 1.2;
}

.mb-faq-list {
	list-style: none;
	counter-reset: mbfaq;
	margin: 0;
	padding: 0;
}

.mb-faq-item {
	counter-increment: mbfaq;
	padding: 22px 0;
	border-top: 1px solid var(--mb-faq-line);
}

.mb-faq-item:first-child {
	border-top: none;
}

.mb-faq-q {
	position: relative;
	margin: 0 0 10px;
	padding-left: 44px;
	font-size: 1.15em;
	font-weight: 700;
	line-height: 1.35;
}

.mb-faq-q::before {
	content: counter(mbfaq);
	position: absolute;
	left: 0;
	top: 0.1em;
	min-width: 30px;
	padding: 2px 0;
	text-align: center;
	font-size: 0.8em;
	font-weight: 700;
	color: #fffdf8;
	background: var(--mb-faq-accent);
	border-radius: 3px;
}

.mb-faq-a {
	margin: 0;
	padding-left: 44px;
	line-height: 1.7;
	color: var(--mb-faq-ink-soft);
}

.mb-faq-a p {
	margin: 0 0 12px;
}

.mb-faq-a p:last-child {
	margin-bottom: 0;
}

@media (max-width: 560px) {
	.mb-faq-q,
	.mb-faq-a {
		padding-left: 38px;
	}
}
