/**
 * Shared product-card styles for the product-driven blocks
 * (experiences, courses, wine-grid). Registered as the `wpgens-product-cards`
 * style handle in inc/blocks.php and referenced from each block's block.json.
 */

.wpgens-product-card {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.wpgens-product-card:hover {
	opacity: 0.88;
}
.wpgens-product-card__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	background-color: #f0eee9;
}
.wpgens-product-card__body {
	padding-top: 1.25rem;
	text-align: center;
}
.wpgens-product-card__title {
	font-family: "baskerville-urw", Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.25;
	margin: 0 0 0.5rem;
	color: inherit;
}
.wpgens-product-card__price {
	font-family: "acumin-pro", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: inherit;
	opacity: 0.85;
	margin-bottom: 0.75rem;
}
.wpgens-product-card__price del {
	opacity: 0.5;
	margin-right: 6px;
}
.wpgens-product-card__cta {
	display: inline-block;
	font-family: "acumin-pro", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	color: inherit;
}
