// Mobile
.team-list-entry{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid @borderColor;	
	clear: left;
	position: relative;
}

.team-list-entry img{
	float: left;
	width: 25%;
	height: auto;
	margin: 10px 5% 10px 0;
}

.team-list-entry p{
	display: block;
	float: left;
	width: 60%;
}

// Tablet
@media only screen and (min-width: @minWidthTablet) {
	.team-list-entry img{
		margin-top: 10px;
		float: left;
		width: 30%;
		height: auto;
		margin-right: 5%;
	}
	.team-list-entry p{
		width: 60%;
	}
}

// Desktop
@media only screen and (min-width: @minWidthDesktop) {
	.team-list-entry img{	
		margin-top: 10px;	
		float: left;
		width: 40%;
		height: auto;		
	}
	.team-list-entry p{
		width: 50%;
	}	
}