.mdaDetail section {
	margin-bottom: 2rem;
}

.mdaDetail .ProductCard {
	cursor: pointer;
	min-width: 49.5%;
	padding: 5px 20px;
	margin-bottom: 1%;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	transition: box-shadow 200ms;
	box-sizing: border-box;
	color: #555;
	text-decoration: none;
}
.mdaDetail .ProductCard:hover {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.mdaDetail .ProductCard .Thumbnail + .Short {
	padding-left: 20px;
}

.mdaDetail .ProductCard .Thumbnail {
	max-width: 20%;
}
.mdaDetail .ProductCard .Thumbnail img {
	max-width: 100%;
	display: block;
	object-fit: contain;
	object-position: center center;
}
@media all and (min-width: 1001px) {
	.mdaDetail .ProductCard {
		width: 49.5%;
	}
}
@media all and (max-width: 1000px) {
	.mdaDetail .ProductCard {
		width: 100%;
	}
}