/* Feature List widget. */

.vora-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vora-features--inline { flex-direction: row; flex-wrap: wrap; }

.vora-features--two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
	.vora-features--two { grid-template-columns: minmax(0, 1fr); }
}

.vora-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.55;
}

.vora-features__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* Nudged to sit on the first line's optical centre rather than its top. */
	margin-top: 0.18em;
	font-size: 14px;
	line-height: 1;
}

.vora-features__icon i,
.vora-features__icon svg {
	width: 1em;
	height: 1em;
	font-size: inherit;
}

.vora-features a { text-decoration: none; }
.vora-features a:hover { text-decoration: underline; }
