#property-listing
{
	margin: 2em 0;
}

#property-listing > .property-item 
{
    display: inline-block;
    vertical-align: top;
    margin-right: .5em;
	width: calc(100% / 3 - .5em);
	margin-bottom: 1em;
	overflow: hidden;
}

#property-listing > .property-item img
{
	transition: transform .5s ease;
}

#property-listing > .property-item > a 
{ 
	display: block; 
	position: relative;
	max-height: 155px;
}

.property-hover-overlay 
{
	opacity: 0;
	transition: opacity .5s ease;
    position: absolute;
    bottom: 0;
    background: rgba(255,255,255,.8);
    width: 100%;
    padding: 0.25em 0.5em 0 0.5em;
	text-align: left;
}

#property-listing > .property-item > a:hover .property-hover-overlay { opacity: 1; }
#property-listing > .property-item > a:hover img { transform: scale(1.25); }

.prop-rooms 
{
    font-size: 14px;
    line-height: 30px;
    color: black;
}

@media screen and (max-width: 767px)
{	
	#property-listing > .property-item 	{ width: calc(100% / 2 - .5em); }
	
	#property-listing > .property-item > a { max-height: unset; }
}

@media screen and (max-width: 479px)
{	
	#property-listing > .property-item 	
	{ 
		width: 100%; 
		margin-right: 0;
		text-align: center;
	}
}