.cpm-cib {
	background: #ffffff;
	padding-block: clamp(32px, 4vw, 56px);
}

.cpm-cib__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 32px);
}

/* ── Card ─────────────────────────────────────────────────── */
.cpm-cib__card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.75rem 1.5rem;
	border: 1px solid rgb(217, 217, 217);
	border-radius: 12px;
	background: #ffffff;
}

/* ── Icon ─────────────────────────────────────────────────── */
.cpm-cib__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(255, 0, 0);
}

.cpm-cib__icon-svg {
	width: 32px;
	height: 32px;
}

.cpm-cib__icon-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

/* ── Text ─────────────────────────────────────────────────── */
.cpm-cib__text {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.cpm-cib__label {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	color: rgb(255, 0, 0);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.cpm-cib__value {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 26px;
	color: rgb(30, 30, 30);
	white-space: nowrap;
}

a.cpm-cib__card {
	text-decoration: none;
	transition: box-shadow 180ms ease, border-color 180ms ease;
}

a.cpm-cib__card:hover {
	border-color: rgb(255, 0, 0);
	box-shadow: 0 4px 16px rgba(255, 0, 0, .08);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
	.cpm-cib {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.cpm-cib .cpm-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.cpm-cib__inner {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.cpm-cib__card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1.25rem 1rem;
		gap: .5rem;
	}

	.cpm-cib__icon-svg,
	.cpm-cib__icon-img {
		width: 24px;
		height: 24px;
	}

	.cpm-cib__text {
		align-items: center;
	}

	.cpm-cib__value {
		white-space: normal;
	}
}
