.trusted {
	background: var(--color-cream);
	padding-top: var(--py-section);
	padding-bottom: var(--py-section);
}

.trusted-top {
	margin-bottom: 30px;
}

.trusted-top h2 {
	font-size: 34px;
	line-height: 48px;
	color: var(--color-primary);
	margin-bottom: 20px;
}

.trusted-bottom {
	display: grid;
	gap: 30px;
	font-size: 16px;
}

.trusted-bottom ul {
	display: grid;
	row-gap: 15px;
	margin-bottom: 0;
}

.trusted-bottom ul li:before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 1px;
	background: var(--color-blue);
	color: var(--color-white);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.trusted-bottom ul li {
	font-weight: 700;
	position: relative;
	padding-left: 30px;
}

@media screen and (min-width: 1025px) {
	.trusted-bottom {
		grid-template-columns: repeat(2, 1fr);
	}

	.trusted-top {
		margin-bottom: 60px;
	}

	.trusted-top h2 {
		font-size: 48px;
		margin-bottom: 50px;
	}
}
