/* ── Icon List ────────────────────────────────────────────────────────────── */

.cf-icon-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cf-icon-list__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.cf-icon-list__icon {
	display: flex;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 0.1em; /* optical alignment with first line of text */
}

.cf-icon-list__icon svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
}

.cf-icon-list__text {
	flex: 1;
	min-width: 0;
}

.cf-icon-list__text p {
	margin: 0;
}
