/* Base Layout */
.elementor-element.elementor-widget-ninezeroone-staff {
	margin-bottom: 0;
}

/* Bio List Section */
.staff-bios {}

.staff-bios__header {
	text-align: center;
}

.staff-bios__title {
	margin: 0;
	padding: 15px;
	color: #fff;
	font-family: 'Oswald', 'Helvetica', 'Arial', sans-serif;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 5px;
	text-transform: uppercase;
	background-color: #000;
}

.staff-bios__list {
	background-color: #000;
}


/* Individual Bios */
.staff-bio {
	width: 100%;
}

.staff-bio__link {
	display: block;
	position: relative;
}

.staff-bio__link:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.65);
	transition: background-color 0.3s;
}

.staff-bio__text {
	position: absolute;
	top: 50%;
	right: 35px;
	left: 35px;
	z-index: 200;
	margin: auto;
	opacity: 1;
	transition: opacity 0.1s;
	transform: translateY(-50%);
}

.staff-bio__link:hover:after {
	background-color: rgba(0, 0, 0, 0);
}

.staff-bio__link:hover .staff-bio__text {
	opacity: 0;
}

.staff-bio img {
	display: block;
	width: 100%;
	height: auto;
}

.staff-bio__header {
	text-align: center;
}

.staff-bio__title {
	display: block;
	color: #c1a35f;
	font-family: 'Oswald', 'Helvetica', 'Arial', sans-serif;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 20px;
	text-transform: uppercase;
}

.staff-bio__name {
	display: block;
	color: #fff;
	font-family: 'Oswald', 'Helvetica', 'Arial', sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.4;
	text-transform: uppercase;
}

@media only screen and (min-width: 640px) {
	.staff-bios__title {
		padding: 25px 15px;
		font-size: 28px;
	}
}

@media only screen and (min-width: 940px) {
	.staff-bios__title {
		padding: 35px 15px;
		font-size: 32px;
	}

	.staff-bios__list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.staff-bio {
		width: calc(100% / 3);
	}

	.staff-bio__name {
		font-size: 28px;
	}
}

@media only screen and (min-width: 1120px) {
	staff-bio__name {
		font-size: 32px;
	}
}

@media only screen and (min-width: 1200px) {

}