/* Team Member Block */
.team-member-block {
	display: grid;
  justify-content: center;
	text-align: center;
	padding: 40px 16px;
	margin-bottom: 40px;
	background: #fff;
	box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
	transition: all .2s linear;
}

.team-member-block {
	width: 350px;
	height: 450px;
	position: relative;
}

.team-member-block:hover {
	background: #242946;
	cursor: pointer;
	transition: all .2s linear;
}

.team-member-block .headshot-wrap .image-overlay {
	position: absolute;
	top: 3.75rem;
	left: 4.25rem;
	opacity: 0;
	transition: all .2s linear;
}

.team-member-block:hover .headshot-wrap .image-overlay {
	opacity: 1;
	transition: all .2s linear;
} 

.team-member-block.team-small .image-overlay svg {
	height: 256px;
	width: 256px;
}

.team-member-block img {
	object-fit: cover;
	object-position: top;
	border-radius: 100%;
}

.team-member-block img {
	width: 256px;
	height: 256px; 
}

.team-member-block h3 {
	margin: 16px auto 6px; 
	font-size: 22px;
	color: #242945;
	font-weight: 600; 
	transition: all .2s linear;
}

.team-member-block:hover h3 {
	color: white;
	transition: all .2s linear;
}

.team-member-block p {
	margin: 0 auto;
	color: #67789C;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
}

.team-member-block .team-member-buttons {
	display: flex;
	justify-content: center;
	margin-top: 16px;
	column-gap: 12px;
	align-items: baseline;
}

.team-member-block .team-member-buttons .btn {
	color: #67789C;
	text-decoration: none;
	font-weight: 600;
	padding: 6px 12px;
	line-height: 1;
	border-radius: 100%;
	font-size: 14px;
}

.team-member-block .team-member-buttons .view-btn {
	border: 2px solid #e8e8f2;
	border-radius: 15px;
}

.team-member-block .team-member-buttons .linkedin {
	background: #e8e8f2;
	display: grid;
  align-content: center;
  padding: 6px 8px;
}

.wp-block-group.full-width-team {
	width: 100vw;
  margin-left: calc(-50vw + 50%) !important;
  max-width: unset;
}

.h6-mobile {
	font-size: 12px !important;
}

.team-cta {
	width: 100%;
	display: block !important;
  padding: 3rem 0 3rem 3.5rem !important;
}

.team-cta .wp-block-cover {
	width: 90%;
	margin-top: 3rem;
}

@media only screen and (min-width: 810px) {
	.team-member-block.team-small img {
		width: 192px;
    height: 192px; 
	}

	.team-member-block.team-small {
		width: 258px;
		height: 450px;
	}
	
.team-member-block.team-small .image-overlay svg {
	height: 192px;
	width: 192px;
}
	
	.team-member-block .headshot-wrap .image-overlay {
	top: 2.5rem;
	left: 2.1rem;
}
	
	.team-member-block.team-large .headshot-wrap .image-overlay {
	left: 3rem;
}
	
	.h6-mobile {
		font-size: 18px !important;
	}
	
	.team-cta {
		width: 83%;
		display: flex !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.team-cta .wp-block-cover {
		margin-top: 0;
	}
	
}

