.team--container {
	padding: 100px 30px;
	overflow: hidden;
}

.team--row-wrap {
	margin: 60px auto 0 auto;
}

.team--block {
	position: relative;
	margin-bottom: 30px;
	cursor: pointer;
}

.team--copy-wrap {
	position: relative;
	padding: 0;
	background-color: #1d6286;
	height: 350px;
	color: #fff;
	max-height: 0;
	transition: .3s;
}

.team--copy {
	padding: 15px;
	overflow: hidden;
}

.team--inside {
	position: relative;
	height: 350px;
	justify-content: flex-start;
}

.team--image {
	position: absolute;
	height: 350px;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	transition: all .3s;
}

.team--image img {
	object-position: center top;
	background-position: center top;
}

.team--firstname {
	font-size: 1.75rem;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1.1em;
	letter-spacing: 0.07em;
}

.team--lastname {
	font-size: 1.75rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1.1em;
	letter-spacing: 0.07em;
}

.team--email {
	display: block;
	letter-spacing: 0.04em;
	font-size: 1rem;
	text-overflow: ellipsis;
	overflow: hidden;
}

.team--position {
	letter-spacing: 0.07em;
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1.2;
}

.team--block,
.team--copy-wrap {
	position: relative;
}

.team--block:hover {
	z-index: 1;
}

.team--block:hover .team--copy-wrap {
	will-change: max-height;
	z-index: 1;
}

.team--block.active .team--copy-wrap {
	max-height: 350px;
	z-index: 1;
}

.team--block.active .team--image {
	top: 150px;
	height: 200px;
	z-index: 1;
	transform: translate3d(0,0,0);
}

.team--image,
.team--copy-wrap {
	transition-delay: .2s;
}

.team--row:hover:focus-within .team--block:not(.active):not(:hover) .team--image {
	opacity: .5;
}

.team--block:hover:not(.active) .team--image {
	opacity: 0.8;
}