/*#region Staff Grid */

.staff-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -30px;
}

.staff-grid .team-member {
	width: calc(33.33% - 60px);
	margin: 0px 30px 60px 30px;
}

.staff-grid .team-member .member {
	display: block;
	margin: 0px auto;
	z-index: 1;
}

.staff-grid .team-member .name {
	min-height: 220px;
	margin: 0px auto;
	background-image: url(/wp-content/uploads/2024/01/title-bg.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 80px;
	margin-top: -60px;
}

.staff-grid .team-member .name h4 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	color: #FFD596;
	text-align: center;
	padding: 0px;
}

.staff-grid .team-member .name h5 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #A8B5D9;
	text-align: center;
	padding: 0px;
	margin-top: 5px;
}

@media (max-width: 1023px) {
	.staff-grid {
		margin: 0px -20px;
	}
	
	.staff-grid .team-member {
		width: calc(33.33% - 40px);
		margin: 0px 20px 40px 20px;
	}
}

@media (max-width: 767px) {
	.staff-grid .team-member {
		width: calc(50% - 40px);
	}
}

@media (max-width: 460px) {
	.staff-grid .team-member {
		width: calc(100% - 40px);
	}
}

/* #endregion */
