.trusted {
	padding-block: clamp(1rem, 15vw, 3rem);
	max-width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.trusted h2.section-title {
	color: var(--text-color);
	font-family: var(--heading-font);

	padding: 2rem;
}

.trusted .container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	max-width: 100vw;
	gap: 0.4rem;
	padding: 2rem;
}

.trusted .container .card .number  {
	/*typology*/
	color: var(--accent-color);
	font-family: var(--mono-font), sans-serif;
	font-size: 2.5rem;
	font-weight: normal;
	font-style: normal;
	font-variant: none;
	line-height: 1;
	word-spacing: 0;
	letter-spacing: 0;
	/*text-layout*/
	text-align: center;
	text-indent: 0;
	text-transform: none;
	text-decoration: none;
	text-overflow: none;
	white-space: normal;
	text-wrap: nowrap;
}

.trusted .container .card .entity {
	color: var(--primary-color);
	font-family: var(--body-font), sans-serif;
	font-size: 1rem;
	font-weight: normal;
	font-style: normal;
	font-variant: none;
	line-height: 1;
	word-spacing: 0;
	letter-spacing: 0;

	text-align: center;
	text-indent: 0;
	text-transform: none;
	text-decoration: none;
	text-overflow: none;
	white-space: normal;
	text-wrap: wrap;

	padding: 1rem;
}

@media (max-width:650px) {
	.trusted .container .card .number {
		font-size: clamp(1.5rem, 9vw, 2.5rem);
	}
}
