.product-card {
	background: #FFF;
	border: 1px solid #ECECEC;
	border-radius: .75rem;
	color: #000;
	display: inline-block;
	font-size: 1rem;
	height: 100%;
	justify-content: flex-end;
	overflow: hidden;
	position: relative;
	transition: .25s all ease-out;
	vertical-align: top;
	width: 100%;

	/* Default vendor color (fallback to brand purple) */
	--vendor-color-base: #757575;
	--vendor-color-base-10: rgba(117, 117, 117, 0.1);
	--vendor-color-darker: rgb(88, 88, 88);
	--vendor-color-lighter: rgb(118, 118, 118);
}

/* Default gradient using vendor color at 10% opacity */
.product-card::before {
	content: '';
	background: linear-gradient(
		142deg,
		var(--vendor-color-base-10) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.product-card__gradient {
	background: linear-gradient(
		142deg,
		var(--vendor-color-darker) 0%,
		var(--vendor-color-base) 50%,
		var(--vendor-color-lighter) 100%
	);
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: .25s ease-out;
	width: 100%;
	z-index: 0;
}

.product-card:hover .product-card__gradient,
.product-card:focus-visible .product-card__gradient,
.product-card:focus-within .product-card__gradient {
	opacity: 1;
}

.product-card__inner {
	align-items: flex-start;
	display: inline-flex;
	flex-direction: column;
	gap: 1.6875rem;
	height: 100%;
	justify-content: flex-end;
	min-height: 15.875em;
	padding: 1.5em;
	position: relative;
	transition: .25s all ease-out;
	width: 100%;
}

.product-card__logo-wrap {
	display: block;
	height: 2.875em;
	margin: 0 0 auto;
	position: relative;
	width: 4.75em;
	z-index: 1;
}

.product-card__logo {
	display: block;
	height: 100%;
	object-fit: contain;
	object-position: left top;
	position: relative;
	width: 100%;
}

.product-card__title {
	color: #000;
	display: block;
	font-family: var(--font-heading-family);
	font-size: 1.3125rem;
	font-weight: 600;
	line-height: 1.1428em;
	margin: 0;
	max-width: 12.5em;
	position: static;
	text-shadow: 0 0 .2em rgb(255 255 255 / .75);
	text-decoration: none;
	transition: .25s ease-out;
	z-index: 1;
}

.product-card:not(.product-card--light-vendor):hover .product-card__title,
.product-card:not(.product-card--light-vendor):focus-visible .product-card__title,
.product-card:not(.product-card--light-vendor):focus-within .product-card__title {
	color: #fff;
	text-shadow: 0 0 .2em rgb(0 0 0 / .75);
}

.product-card__title::after {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.product-card__summary {
	color: #666;
	display: block;
	font-size: .8125rem;
	line-height: 1.385em;
	margin: 0;
	max-width: 18em;
	position: relative;
	text-shadow: 0 0 .2em rgb(255 255 255 / .75);
	transition: .25s ease-out;
	width: 100%;
}

.product-card:not(.product-card--light-vendor):hover .product-card__summary,
.product-card:not(.product-card--light-vendor):focus-visible .product-card__summary,
.product-card:not(.product-card--light-vendor):focus-within .product-card__summary {
	color: #fff;
	text-shadow: 0 0 .2em rgb(0 0 0 / .75);
}

.product-card--light-vendor:hover .product-card__summary,
.product-card--light-vendor:focus-visible .product-card__summary,
.product-card--light-vendor:focus-within .product-card__summary {
	color: #000;
}