.homvnd-product-card {
	min-width: 0;
	margin: var(--homvnd-space-0);
	border: var(--homvnd-border-width) solid var(--homvnd-color-border);
	border-radius: var(--homvnd-radius-lg);
	background: var(--homvnd-color-surface);
	overflow: hidden;
}

.homvnd-product-grid > .homvnd-product-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	border: var(--homvnd-border-width) solid var(--homvnd-color-border);
}

.homvnd-product-card__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	color: var(--homvnd-color-text);
	text-decoration: none;
}

.homvnd-product-card__media {
	aspect-ratio: 4 / 3;
	background: var(--homvnd-color-surface-muted);
	overflow: hidden;
}

.homvnd-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.homvnd-product-card__title {
	flex: 1 1 auto;
	margin: var(--homvnd-space-0);
	padding: var(--homvnd-space-4);
	color: var(--homvnd-color-primary);
	font-size: var(--homvnd-font-size-lg);
	line-height: var(--homvnd-line-height-md);
}

.homvnd-product-card__link:hover .homvnd-product-card__title,
.homvnd-product-card__link:active .homvnd-product-card__title {
	color: var(--homvnd-color-primary-strong);
}
