.piw-grid{
	display: grid;
	grid-template-columns: repeat(var(--piw-cols,8), minmax(0,1fr));
	gap: var(--piw-gap,18px);
	align-items: stretch;
	border: 1px solid #e5e7eb;
}
.piw-card{
	display: flex; 
	flex-direction: column;
	align-items: var(--piw-align,center);
	justify-content: center; 
	text-align: center;
	gap: 10px; 
	padding: 18px;
	text-decoration: none;
	border: 1px solid #e5e7eb;
	background: #0000;
	transition: transform .18s ease,
		box-shadow .18s ease, 
		border-color .18s ease;
	color: inherit;
	min-width: 0;
}
.piw-card:hover{
	border-color: #d1d5db;
	background: #d1d5db30;
}
.piw-card__icon svg{
	width: 60px; 
	height: 60px; 
	display: block; 
	margin: 0 auto;
}
.piw-card__title{
	font-weight: 400; 
	font-size: 14px; 
	line-height: 1.35;
}
@media (max-width:1024px){ 
	.piw-grid{ 
		grid-template-columns: repeat(4,1fr);
	} 
}
@media (max-width:640px){ 
	.piw-grid{ 
		grid-template-columns: repeat(2,1fr);
	} 
}