/**
 * 121 Platform
 * Check List Primitive
 *
 * Shared reassurance/check-list treatment.
 *
 * @package 121_Platform
 */

.nd-check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nd-check-list li {
	display: flex;
	align-items: center;
	gap: var(--wp--preset--spacing--20);
	color: var(--wp--preset--color--text-muted);
	font-size: var(--wp--preset--font-size--small);
}

.nd-check-list li::before {
	flex: 0 0 auto;
	content: "✓";
	color: var(--wp--preset--color--accent);
}