/* ─── FAQ ─── */
.mh__faq { display: flex; flex-direction: column; }
.mh__faq-item {
	padding: 26px 0;
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	cursor: pointer;
}
.mh__faq-item:last-child { border-bottom: 1px solid var(--line); }
.mh__faq-q {
	font-family: var(--font-mh-display);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--fg);
}
.mh__faq-mark {
	font-family: var(--font-mh-mono);
	font-size: var(--text-h3-sm); /* 18px → token */
	color: var(--accent);
	line-height: 1.25;
}
.mh__faq-a {
	grid-column: 1 / -1;
	margin-top: 14px;
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--fg-mute);
	max-width: 78ch;
}
.mh__faq-a--strong { color: var(--fg); font-weight: 500; }
.mh__faq-item--open .mh__faq-mark { color: var(--ink); }

