.mdigi-product-category-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.mdigi-product-category-cards-grid .product-card a {
	display: block;
	text-decoration: none;
}

.mdigi-product-category-cards-grid .product-card a:hover {
	text-decoration: underline;
}

.mdigi-product-category-cards-grid .product-card h2 {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid #e0e0e0;
}

.mdigi-product-category-cards-grid .product-card div.product-thumbnail {
	aspect-ratio: 1/1;
	overflow: hidden;
}

.mdigi-product-category-cards-grid .product-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
	object-position: center;
}

@media (max-width: 768px) {
	.mdigi-product-category-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.mdigi-product-category-cards-grid .product-card h2 {
		font-size: 1.125rem;
		margin-top: 0.5rem;
	}
}
