/**
 * Trust Bar – frontend styles
 */

.oc-trust-bar {
	width: 100%;
	background-color: #fff;
}

.oc-trust-bar__inner {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.oc-trust-bar__row {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
}

.oc-trust-bar__left {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.oc-trust-bar__heading {
	margin: 0;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.45;
}

.oc-trust-bar__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.oc-trust-bar__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.oc-trust-bar__logo-link {
	display: inline-flex;
	line-height: 0;
}

.oc-trust-bar__logo-img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: opacity 0.25s ease;
}

.oc-trust-bar__divider {
	flex: 0 0 auto;
	align-self: stretch;
	width: 1px;
	height: auto !important;
	min-height: 0;
	background-color: #d6d6d6;
}

.oc-trust-bar__right {
	flex: 1 1 0;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.oc-trust-bar__metric {
	margin: 0;
	color: #c5a46e;
	font-size: clamp(2.5rem, 4.5vw, 3.75rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
}

.oc-trust-bar__caption {
	margin: 0;
	color: #1a1a1a;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.45;
}

@media (max-width: 1024px) {
	.oc-trust-bar__row {
		flex-wrap: wrap;
	}

	.oc-trust-bar__left {
		flex: 1 1 100% !important;
		max-width: 100% !important;
	}

	.oc-trust-bar__divider {
		display: none;
	}

	.oc-trust-bar__right {
		flex: 1 1 100%;
		padding-top: 8px;
	}
}

@media (max-width: 767px) {
	.oc-trust-bar__logos {
		justify-content: flex-start;
	}
}
