/**
 * === Section 02 Proof Strip ===
 *
 * Mô tả: Styles cho cụm stats / proof strip theo hướng Thuận Hải.
 */

.section-proof-strip {
	width: 100%;
	background: #ffffff;
	padding: 0;
	border-top: 0 !important;
	box-shadow: 0 -1px 0 rgba(15, 23, 42, 0.04);
}

.section-proof-strip > .container {
	max-width: var(--container-max, 1320px);
	margin-inline: auto;
	padding-inline: clamp(24px, 4vw, 72px);
}

.proof-strip {
	list-style: none;
	margin: 0;
	padding: clamp(16px, 2.2vw, 24px) 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	align-items: stretch;
}

.proof-strip__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	min-height: 112px;
	padding: 14px 16px;
	text-align: center;
	border-right: 1px solid rgba(15, 23, 42, 0.1);
	background: transparent;
	box-shadow: none;
}

.proof-strip__item:last-child {
	border-right: 0;
}

.proof-strip__value {
	font-family: var(--font-thuanhai-heading, var(--font-primary));
	font-size: clamp(38px, 4vw, 60px);
	font-weight: var(--weight-bold);
	line-height: 1;
	color: #141414;
	letter-spacing: -0.03em;
}

.proof-strip__label {
	font-size: clamp(12px, 0.84vw, 13px);
	line-height: 1.2;
	font-weight: var(--weight-medium);
	color: #4f4f4f;
	max-width: 20ch;
}

@media (max-width: 1024px) {
	.proof-strip__item {
		min-height: 108px;
	}
}

@media (max-width: 640px) {
	.proof-strip {
		grid-template-columns: 1fr;
		padding-block: 22px;
	}

	.proof-strip__item {
		min-height: 92px;
		border-right: 0;
		border-top: 1px solid rgba(15, 23, 42, 0.1);
	}

	.proof-strip__item:first-child {
		border-top: 0;
	}

	.proof-strip__label {
		max-width: none;
	}
}
