/**
 * list-row.php. Two real, distinct variants verified directly against
 * research-misconduct.html: a dot-marker row (`.proceed-item`, used for
 * "How We Proceed"/"How We Help" service lists) and a plain bold row
 * (`#thinking li`, used for "What You're Likely Thinking"/Situation
 * triggers) — not one unified pattern as the earlier site review's
 * summary implied. Both are horizontal-rule-separated; they differ in
 * marker, weight, and size.
 */

.list-row {
	margin-top: 24px;
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.list-row li {
	padding: 15px 0;
	border-top: 1px solid var(--line);
}

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

.list-row .note {
	margin-top: 20px;
	font-size: 14.5px;
	color: var(--slate);
	line-height: 1.7;
	max-width: 64ch;
}

/* Dot variant — "How We Proceed" / "How We Help". */
.list-row--dot li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.list-row--dot .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--oxblood);
	margin-top: 9px;
	flex-shrink: 0;
}

.list-row--dot p {
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.6;
}

/* Plain variant — "What You're Likely Thinking" (individual pages) /
   "What's At Stake" (institutional pages). */
.list-row--plain li {
	font-size: 16px;
	color: var(--ink);
	font-weight: 600;
	padding: 16px 0;
}

/* Situation variant — institutional pages' "Situation" triggers list.
   A pseudo-element bullet rather than list-row--dot's flex `span.dot` —
   verified as a genuinely distinct pattern against both institutional
   pages' CSS, not a copy-paste drift of the dot variant. No shared
   top margin: the section's own .intro heading already carries a
   margin-bottom that provides the needed spacing. */
.list-row--situation {
	margin-top: 0;
}

.list-row--situation li {
	font-size: 15.5px;
	color: var(--ink-soft);
	padding: 13px 0 13px 22px;
	position: relative;
}

.list-row--situation li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 22px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--oxblood);
}
