/*Our people Landing page grid*/
.staff{
	display: grid;
	grid-template-columns: 45% 55%;
	box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, .08);
}

.research-interest {
	border-left: solid 1px black;
  padding-left: 10px;
}

.staff img {
	height: -webkit-fill-available;
}

@media screen and (min-width:768px) {
.staff {
	display: block;
	padding-bottom: 30px;
}

.staff img {
	object-fit: cover;
	height: 375px;
}
}

@media screen and (min-width:1400px) {
.staff {
	display: grid;
	grid-template-columns: 45% 55%;
	padding-bottom: 0;
}

.staff img {
	height: 340px;
}
}