/* L1 Trust Bar — transparent bg, 1200px content, no left/right padding */

.elementor-widget-l1_trust_bar,
.elementor-widget-l1_trust_bar > .elementor-widget-container {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	background: transparent !important;
}

.l1-tb {
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
}

.l1-tb__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 0;
	box-sizing: border-box;
}

.l1-tb__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.l1-tb-item {
	position: relative;
	display: flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0;
	padding: 4px 18px;
	box-sizing: border-box;
	min-width: 0;
}

.l1-tb-item:first-child {
	padding-left: 0;
	justify-content: flex-start;
}

.l1-tb-item:last-child {
	padding-right: 0;
	justify-content: flex-end;
}

.l1-tb-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 48px;
	transform: translateY(-50%);
	background-color: rgba(245, 240, 232, 0.35);
}

.l1-tb-item__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
}

.l1-tb-item__icon img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.l1-tb-item__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
	color: #f5f0e8;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	line-height: 1.2;
}

.l1-tb-item__line1,
.l1-tb-item__line2 {
	display: block;
	white-space: nowrap;
}

.l1-tb-item__line1 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.l1-tb-item__line2 {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
	.l1-tb__list {
		flex-wrap: wrap;
		row-gap: 18px;
	}

	.l1-tb-item {
		flex: 1 1 45%;
		justify-content: flex-start;
		padding: 4px 12px;
	}

	.l1-tb-item:first-child,
	.l1-tb-item:last-child {
		justify-content: flex-start;
		padding-left: 12px;
		padding-right: 12px;
	}

	.l1-tb-item:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 640px) {
	.l1-tb-item {
		flex: 1 1 100%;
	}

	.l1-tb-item__line1,
	.l1-tb-item__line2 {
		white-space: normal;
	}
}
