.wc-pbs-suggestions {
	margin-top: 32px;
}

.wc-pbs-suggestions__title {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 700;
}

.wc-pbs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 12px;
}

.wc-pbs-card {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.wc-pbs-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 12px 12px 0;
	color: inherit;
	text-decoration: none;
}

.wc-pbs-card__link:hover,
.wc-pbs-card__link:focus {
	color: inherit;
	text-decoration: none;
}

.wc-pbs-card__link:hover .wc-pbs-card__name,
.wc-pbs-card__link:focus .wc-pbs-card__name {
	color: #0a3976;
}

.wc-pbs-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 290px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	margin: 0 auto 18px;
}

.wc-pbs-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-bottom: 18px;
}

.wc-pbs-card__sku,
.wc-pbs-card__name {
	text-align: center;
}

.wc-pbs-card__sku {
	margin: 0 0 8px;
	color: #001a57;
	font-size: 13px;
}

.wc-pbs-card__sku strong {
	font-size: 14px;
}

.wc-pbs-card__name {
	margin: 0 0 8px;
	color: #001a57;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.wc-pbs-grid {
		grid-template-columns: 1fr;
	}

	.wc-pbs-card__image {
		min-height: 220px;
	}

	.wc-pbs-card__name {
		font-size: 15px;
	}
}
