/* =product block */
.block-product {
	overflow: hidden;
	background-color: white;
	display: flex;
	flex-flow: column nowrap;
	box-shadow: var(--wp--custom--box-shadow--1);
	border-radius: var(--wp--custom--border-radius--tiny);
}

.block-product__image {
	overflow: hidden;
}

.block-product__image img {
	width: 100%;
}

.block-product__info {
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-flow: column nowrap;
}

.block-product__name {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--large);
	line-height: var(--wp--custom--line-height--tiny);
	flex-grow: 1;
	font-weight: 700;
}

.block-product__buttons .wp-block-button__link {
	padding: 12px 16px;
	font-size: 1.1875rem;
}

.block-product__source {
	font-size: 0.9375rem;
}

@media only screen and (max-width: 767px) {
	.block-product {
		padding: 14px 14px 26px;
	}

	.block-product__image {
		margin-bottom: 10px;
	}

	.block-product__name {
		margin-bottom: 10px;
	}

	.block-product__buttons {
		margin-bottom: 6px;
	}
}

@media only screen and (min-width: 768px) {
	.block-product {
		padding: 7px 9px 20px;
	}

	.block-product__image {
		margin-bottom: 20px;
	}

	.block-product__name {
		margin-bottom: 20px;
	}

	.block-product__buttons {
		margin-bottom: 12px;
	}
}
