.pp-criteria-card {
	display: block;
	height: 100%;
	padding: 24px;
	border: 1px solid #e5e1dd;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 8px #32170d0b;
	transition:
		transform 0.28s,
		box-shadow 0.28s,
		border-color 0.28s;
}
.pp-criteria-icon,
.pp-commitment-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid #ffc99f;
	border-radius: 12px;
	background: #fff8f1;
	color: #ff5100;
}
.pp-criteria-icon svg,
.pp-commitment-icon svg {
	width: 29px;
	height: 29px;
}
.pp-criteria-label {
	margin-top: 20px;
	color: #f45108;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}
.pp-criteria-card h3 {
	margin: 5px 0 4px;
	color: #2b1c14;
	font-size: 20px;
	line-height: 1.25;
}
.pp-criteria-card p {
	margin: 0;
	color: #f45108;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}
.pp-criteria-card:hover {
	transform: translateY(-7px);
	border-color: #f45108;
	box-shadow: 0 16px 28px #5d2d141b;
}
.pp-commitment-box {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 48px;
	padding: 22px 28px;
	border: 1px solid #ffd0ab;
	border-radius: 14px;
	justify-content: center;
	background: #fff;
	box-shadow: 0 2px 6px #32170d12;
}
.pp-commitment-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff0df;
}
.pp-commitment-box h3 {
	margin: 0;
	color: #2b1c14;
	font-size: 19px;
	line-height: 1.35;
}
.pp-commitment-box p {
	margin: 3px 0 0;
	color: #756b65;
	font-size: 14px;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.pp-criteria-card {
		display: grid;
		grid-template-columns: 56px 1fr;
		column-gap: 14px;
		padding: 16px;
	}
	.pp-criteria-icon {
		grid-row: span 3;
	}
	.pp-criteria-card h3 {
		font-size: 17px;
	}
	.pp-criteria-card p {
		font-size: 12px;
	}
	.pp-commitment-box {
		align-items: flex-start;
		padding: 18px;
		gap: 12px;
	}
	.pp-commitment-box h3 {
		font-size: 16px;
	}
	.pp-commitment-box p {
		font-size: 13px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.pp-criteria-card {
		transition: none;
	}
	.pp-criteria-card:hover {
		transform: none;
	}
}
