#departments-and-staff {
	width: 1400px;
	max-width: 100%;	
}
.departments-staff-flex {
	display: flex;
	align-items: flex-start;
	column-gap: 48px;
}
.departments {
	width: 407px;
	border-right:1px solid rgba(95,85,65,.2);	
}
.departments-title, .staff-title { margin-bottom: 32px; }
.departments ul {
	padding-left: 0;
	list-style-type: none;
}
.departments ul li {
	padding:16px 32px 16px 28px;
	border-left: 4px solid rgba(0,0,0,0); 	
	color: var(--monarch);
}
.departments ul li:hover { cursor: pointer; }
.departments ul li.current {
	border-left-color: var(--monarch);
	background: var(--site-bg);	
	color: var(--dark-grey);	
}
.staff-content {
	width: 945px;	
}
.staff-content .staff-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 32px;
	row-gap: 32px; 	
}
.staff-content .staff-grid .staff-flex {
	display: flex;
	align-items: flex-start;	
}
.staff-content .staff-grid .staff-flex .headshot {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;	
	margin-right:16px;
	flex-shrink: 0;
}
.staff-content .staff-grid .staff-flex .headshot .initials {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;	
}
.hmns-staff-member:hover {cursor: pointer;}
.staff-bio-link {
	padding-bottom: 8px;
	border-bottom: 1px solid var(--serengeti);
	color: var(--fossil-rim);	
	width:max-content;
}
.staff-modal-popup { 
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
	position:fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index:30; 
}
.modal-boxes {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);	
	width: 900px;
	height: 812px;
	background: white;
}
.modal-boxes .staff-modal-card .top-section {
	padding: 32px;	
	text-align: center;
	color: white !important;
}
.modal-boxes .staff-modal-card .top-section .modal-close {
	position: absolute;
	top: 32px;
	right: 32px;	
}
.modal-boxes .staff-modal-card .top-section .modal-close:hover {cursor: pointer; }
.modal-boxes .staff-modal-card .bottom-section {
	padding: 48px;	
	max-height: 606px;
	overflow-y: scroll;
}
.modal-boxes .staff-modal-card .bottom-section .modal-flex {
	display: flex;	
	align-items: center;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(95,85,65,.2);
}
.modal-boxes .staff-modal-card .bottom-section .modal-flex .headshot {
	width: 125px;
	height: 125px;
	border-radius: 50%;
	overflow: hidden;	
	margin-right:32px;
}
.modal-boxes .staff-modal-card .bottom-section .modal-flex .headshot .initials {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;	
	font-size:25px;
}
.modal-boxes .staff-modal-card .bottom-section .modal-flex .modal-name-position .modal-hmns-title {
	text-transform: none !important;	
}
.modal-boxes .staff-modal-card .bottom-section .modal-bio {
	margin-top: 32px;	
}
.modal-boxes .staff-modal-card .button-section {
	background: var(--site-bg);
	padding:32px;
	display: flex;
	justify-content: center;	
}
@media screen and (max-width: 1024px) {
	.departments-staff-flex {
		display: block;
	}	
	.departments {
		width: 100%;
		border-right: 0px solid rgba(95,85,65,.2);
		padding-bottom: 24px;
		border-bottom-color: 1px solid rgba(95,85,65,.2);
		margin-bottom: 24px;
	}
	.staff-content {
		width: 100%;
	}
	.departments ul {
		display: flex;
  			justify-content: center;
  			flex-wrap: wrap;
  			column-gap:16px;
	}		
	.departments ul li.current {
		background: none;
		border-left: 0;
		border-bottom: 2px solid var(--monarch);
	}
	.modal-boxes {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 900px;
		max-width: 95%;
		height: 600px;
		max-height: 80%;
		background: white;
	}
	.modal-boxes .staff-modal-card .bottom-section {
		padding: 48px;
		max-height: 100%;
		overflow-y: scroll;
		height: 500px;
	}
	.modal-boxes .staff-modal-card .bottom-section .modal-flex .headshot {
		flex-shrink: 0;
	}
	.departments ul li {
		padding: 16px;
		border-bottom: 2px solid rgba(0,0,0,0);
		border-left: 0;
	}
}
@media screen and (max-width:768px) {
	.staff-content .staff-grid {grid-template-columns: 1fr; }
	.modal-boxes .staff-modal-card .bottom-section { padding: 24px; }
}
