.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}

.product {
	border: 1px solid black;
	padding: 5px;
	overflow: hidden;
}

.product-image {
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
}

.product-image:after {
	content: "";
	display: block;
	padding-bottom: var(--cover-ratio);
}

.product-image img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

article {
	font-family: 'Bebas Neue', cursive;
}

article h2 {
	color: var(--title-accent);
	margin: 5px 0;
	font-size: 20pt;
}

article h3 {
	margin: 5px 0;
	font-weight: normal;
}

article small {
	font-family: 'Roboto', sans-serif;
	color: #989898;
	font-size: 9pt;
}

article p {
	font-size: 13pt;
	margin: 5px 0;
}

article strong {
	color: var(--price-accent);
	font-size: 24pt;
}

.promo-price {
	color: var(--promo-accent-fg);
	background-color: var(--promo-accent-bg);
	padding: 0 5px;
}

.highlight {
	color: var(--highlight-accent-fg);
	background-color: var(--highlight-accent-bg);
	padding: 2px 5px;
}

@media (max-width: 992px) {
	.products{
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
	.strike-price {
		font-size: 18pt;
	}
}
