.itb-trust-section {
	clear: both;
	margin: 18px 0;
}

/* Base = mobile: one column, items stacked, horizontal dividers. */
.itb-trust-badges {
	display: block;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
}

.itb-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	border-bottom: 1px solid #e8e8e8;
}

.itb-badge:last-child {
	border-bottom: 0;
}

.itb-badge__icon {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	color: #1a1a1a;
}

.itb-badge__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.itb-badge__title {
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.itb-badge__description {
	font-family: inherit;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.35;
	color: #999999;
}

/* Desktop: one row, three equal columns, vertical dividers instead of horizontal. */
@media screen and (min-width: 769px) {
	.itb-trust-badges {
		display: flex;
		flex-direction: row;
	}

	.itb-badge {
		flex: 1 1 0;
		padding: 14px 16px;
		border-bottom: 0;
		border-left: 1px solid #e8e8e8;
	}

	.itb-badge:first-child {
		border-left: 0;
	}
}
