/*
 * Server-rendered trust / social-proof strip. Appended via the_content filter
 * (or rendered by campaign templates that bypass the_content) on NL pillar /
 * use-case / material / vs pages.
 *
 * Lifts Social Proof scoring to 8+ across ~14 NL pages without depending on
 * client-supplied logo assets.
 *
 * Markup contract:
 *   .pod-trust-strip > .pod-trust-strip__inner > .pod-trust-strip__label
 *                                              > .pod-trust-strip__customers > <span/>
 *                                              > .pod-trust-strip__stats     > .pod-trust-strip__stat
 *                                                                              > .pod-trust-strip__num
 *                                                                              > .pod-trust-strip__lbl
 */

.pod-trust-strip {
	background: #f7f8fa;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	padding: 2rem 1rem;
	margin: 0;
}

.pod-trust-strip__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: center;
}

@media (min-width: 900px) {
	.pod-trust-strip__inner {
		grid-template-columns: auto 1fr auto;
		gap: 2rem;
	}
}

.pod-trust-strip__label {
	font-size: .72rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(10, 10, 30, .55);
	margin: 0;
	font-weight: 600;
}

.pod-trust-strip__customers {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem .9rem;
	font-size: .85rem;
	color: rgba(10, 10, 30, .8);
	margin: 0;
	line-height: 1.5;
}

.pod-trust-strip__customers span {
	display: inline-block;
	font-weight: 600;
}

.pod-trust-strip__customers span + span::before {
	content: '·';
	margin-right: .9rem;
	margin-left: -.6rem;
	color: rgba(10, 10, 30, .25);
	font-weight: 400;
}

.pod-trust-strip__stats {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 1rem 1.5rem;
	align-items: center;
}

.pod-trust-strip__stat {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.pod-trust-strip__num {
	font-size: 1.05rem;
	font-weight: 800;
	color: #0a0a1e;
	line-height: 1.1;
	white-space: nowrap;
}

.pod-trust-strip__lbl {
	font-size: .7rem;
	color: rgba(10, 10, 30, .5);
	line-height: 1.2;
}

@media (max-width: 600px) {
	.pod-trust-strip__stats {
		grid-template-columns: 1fr 1fr;
		gap: .85rem 1rem;
	}
}
