.featured-staff header {
	margin-bottom: 30px;
	text-align: center;
}

.featured-staff header hr {
	margin-left: auto;
	margin-right: auto;
}

.featured-staff:first-child header hr {
	margin-bottom: 100px;
}

.featured-staff article {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.featured-staff article + article {
	margin-top: 30px;
}

.featured-staff article > img {
	width: 100px;
	border-radius: 5px;
}

.featured-staff article > div {
	width: calc(100% - 100px - 20px);
}

.featured-staff .summary {
	display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
	.featured-staff .staff-grid {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.featured-staff article {
		width: calc(50% - 20px);
	}
	
	.featured-staff article + article {
		margin-top: 0;
	}
	
	.featured-staff article:nth-of-type(n+3) {
		margin-top: 50px;
	}
	
	.featured-staff header {
		margin-bottom: 40px;
	}
}

@media screen and (min-width: 1024px) {
	.featured-staff article {
		width: calc(50% - 35px);
	}
	
	.featured-staff article > img {
		width: 180px;
	}
	
	.featured-staff .summary {
    	-webkit-line-clamp: 8;
    	font-size: 12px;
    }
	
	.featured-staff article > div {
		width: calc(100% - 180px - 30px);
	}	
	
	.featured-staff header {
		margin-bottom: 60px;
	}
}

@media screen and (min-width: 1400px) {
	.featured-staff article {
		width: calc(50% - 50px);
	}
	
	.featured-staff article > img {
		width: 270px;
	}
	
	.featured-staff .summary {
    	-webkit-line-clamp: 6;
    }
	
	.featured-staff article > div {
		padding-top: 20px;
		width: calc(100% - 270px - 40px);
	}	
}