
.wcpf-highlights{
	box-sizing:border-box;
	width:100%;
	direction:rtl;
}

.wcpf-highlights .wcpf-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:14px;
	align-items:stretch;
}

.wcpf-highlights .wcpf-item{
	background:#f8f9fb;
	border-radius:14px;
	padding:18px 14px;
	min-height:78px;
	box-sizing:border-box;
	text-align:center;
	transition:transform .2s ease, box-shadow .2s ease;
}

.wcpf-highlights .wcpf-item:hover{
	transform:translateY(-2px);
	box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.wcpf-highlights .wcpf-label{
	color:#333;
	font-size:14px;
	font-weight:600;
	line-height:1.8;
	margin-bottom:8px;
	overflow-wrap:anywhere;
}

.wcpf-highlights .wcpf-value{
	color:#555;
	font-size:14px;
	font-weight:400;
	line-height:1.9;
	overflow-wrap:anywhere;
}

@media(max-width:767px){
	.wcpf-highlights .wcpf-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:12px;
	}
}
