.pw-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.pw-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 10px;
	padding: 32px 24px;
	text-decoration: none;
	transition: transform 0.2s ease;
}

a.pw-card:hover {
	transform: translateY(-4px);
}

.pw-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	width: 44px;
	height: 44px;
}

.pw-card__icon svg,
.pw-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pw-card__icon i {
	font-size: 44px;
	line-height: 1;
}

.pw-card__title {
	margin: 0 0 10px;
	font-weight: 700;
}

.pw-card__description {
	margin: 0;
	line-height: 1.6;
}


