/**
 * Trust bar
 */
.ntm-section-trust {
	padding: 28px 0 32px;
	margin-top: 0;
	position: relative;
	z-index: 1;
}

.ntm-trust {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid #e8ecec;
	border-radius: var(--ntm-home-radius);
	box-shadow: var(--ntm-home-shadow);
	overflow: hidden;
}

.ntm-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 16px;
	border-right: 1px solid #edf1f1;
}

.ntm-trust__item:last-child {
	border-right: 0;
}

.ntm-trust__icon {
	display: inline-flex;
	width: 34px;
	height: 34px;
	color: var(--ntm-home-primary);
	flex-shrink: 0;
}

.ntm-trust__icon svg {
	width: 100%;
	height: 100%;
}

.ntm-trust__text strong {
	display: block;
	font-size: 0.72rem;
	line-height: 1.3;
	color: var(--ntm-home-primary);
	text-transform: uppercase;
}

.ntm-trust__text span {
	display: block;
	font-size: 0.78rem;
	color: var(--ntm-color-muted);
	margin-top: 2px;
}

@media (max-width: 1100px) {
	.ntm-trust {
		grid-template-columns: repeat(2, 1fr);
	}

	.ntm-trust__item:nth-child(2n) {
		border-right: 0;
	}

	.ntm-trust__item {
		border-bottom: 1px solid #edf1f1;
	}
}

@media (max-width: 560px) {
	.ntm-trust {
		grid-template-columns: 1fr;
	}

	.ntm-trust__item {
		border-right: 0;
	}
}
