.listing-area--cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: 0;
	margin: 0 -10px;
}
.listing-area--cards .listing {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: calc(50% - 20px);
	max-width: calc(33.3333% - 20px);
	margin: 10px;
	border-bottom: 0;
}
.listing-area--cards .listing-image {
	width: auto;
	padding-bottom: 50%;
	margin: 0 0 14px;
	border: 10px solid #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	box-shadow: 0 0 0 1px #edeae7;
}
.listing-area--cards .listing-image img {
	position: absolute;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
}
@media (max-width: 660px){
	.listing-area--cards .listing {
		max-width: calc(50% - 20px);
	}
}
@media (max-width: 480px){
	.listing-area--cards .listing {
		max-width: calc(100% - 20px);
	}
	.listing-area--cards .listing-image {
		padding-bottom: 0;
	}
}