.listing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 0px 0px 0px;
    border-top: 2px solid #e2e2e2;
    margin: 30px 0px 10px 0px;
}

.listing:last-of-type {
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 30px;
}

.listing .title{
	font-size: 18px;
	font-weight: 800;
	display: block;
}

.listing .title .divider{
	font-weight: 400;
}


.listing .meta{
	font-size: 16px;
    color: black;
    display: inline-block;
    margin-bottom: 5px;
}

.listing .image{
	margin-right: 20px;
	min-width: 275px;
}

.listing .description{
	font-size: 14px;
	color: #313131;
}


.float-right{
	float:right;
}

@media screen and (max-width:768px){
	.listing {
    	flex-direction: column;
    }
    
    .listing .image{
		margin-right: 0px;
		margin-bottom: 20px;
	}
	
	.float-right{
		float:none;
	}
}