/* ════════════════════════════════════════════════
   bpc-company-stats — linha de estatísticas
   ════════════════════════════════════════════════ */
.bpc-cs {
	--bpc-ink:   #2b2018;
	--bpc-muted: #9a8f7e;
	--bpc-line:  #ece4d8;

	box-sizing: border-box;
	width: 100%;
	max-width: 1140px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border: 1px solid var(--bpc-line);
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(43, 32, 24, 0.05);
	overflow: hidden;
}
.bpc-cs *, .bpc-cs *::before, .bpc-cs *::after { box-sizing: border-box; }

.bpc-cs__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 26px;
}
.bpc-cs__item + .bpc-cs__item { border-left: 1px solid var(--bpc-line); }

.bpc-cs__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bpc-muted);
}
.bpc-cs__data { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.bpc-cs__value {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1;
	color: var(--bpc-ink);
}
.bpc-cs__suffix {
	font-size: 0.86rem;
	color: var(--bpc-muted);
}

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 760px) {
	.bpc-cs { grid-template-columns: repeat(2, 1fr); }
	/* zera as bordas laterais e usa um grid com linhas divisórias */
	.bpc-cs__item + .bpc-cs__item { border-left: 0; }
	.bpc-cs__item { border-top: 1px solid var(--bpc-line); }
	.bpc-cs__item:nth-child(-n+2) { border-top: 0; }
	.bpc-cs__item:nth-child(even) { border-left: 1px solid var(--bpc-line); }
}
@media (max-width: 400px) {
	.bpc-cs { grid-template-columns: 1fr; }
	.bpc-cs__item { border-left: 0 !important; }
	.bpc-cs__item + .bpc-cs__item { border-top: 1px solid var(--bpc-line); }
	.bpc-cs__item:first-child { border-top: 0; }
	.bpc-cs__item { padding: 16px 20px; }
}
