@charset "utf-8";

.featured_alumni_wrap {
	display: block;
}
.featured_result {
	display: block;
	margin-bottom: 20px;
	max-width: 100%;
	background: #fff;
	border: 1px solid #e6e6e6;
}
@media screen and (min-width: 768px){
	.featured_alumni_wrap {
		display: grid;
		grid-auto-flow: row;
		grid-template-columns: 33% 33% 33%;
		grid-gap: 10px;
		width: 100%;
		height: auto;
	}
	.featured_result {
		max-width: 350px;
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1100px){
	.featured_alumni_wrap {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	}
}
.featured_result:hover, .featured_result:hover *, .featured_result:focus, .featured_result:focus * {
	text-decoration: none;
}
.featured_result .featured_alumni_image {
	display: block;
	padding-bottom: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ccc;
}
.featured_result .featured_alumni_details {
	padding: 20px;
}
.featured_result .display_name {
	color: #218fc0;
	font-size: 20px;
	margin: 0 0 5px;
}
.featured_result:hover .display_name {
	color: #F38F37;
}
.featured_result .fellowship_year, .featured_result .job_title {
	font-size: 11px;
	font-weight: 700;
	color: #6b6767;
	margin: 0 0 5px;
}
.featured_result .job_title {
	font-weight: 400;
	margin: 0;
}
