/**
 * stage-row.php. Ported verbatim from research-misconduct.html. Used
 * for "What Happens Next" (individual pages, editable per
 * docs/CONTENT_MODEL.md §K) and "Our Process" (institutional pages,
 * hardcoded).
 */

.stage-list {
	margin-top: 28px;
}

.stage-row {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
}

.stage-row:last-child {
	border-bottom: 1px solid var(--line);
}

@media (max-width: 600px) {
	.stage-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}

.stage-row .name {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	color: var(--oxblood);
}

.stage-row p {
	font-size: 14.5px;
	color: var(--ink-soft);
	line-height: 1.7;
}

.stage-bridge {
	margin-top: 14px;
	font-size: 14.5px;
	color: var(--slate);
	line-height: 1.7;
	max-width: 64ch;
}

.stage-caveat {
	margin-top: 18px;
	font-size: 13px;
	color: var(--slate);
	line-height: 1.7;
}
