.team--row {
	list-style-type: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.team--col {
	margin-bottom: 20px;
}

.team--inside {
	padding: 0 var(--theme-content-padding) 30px;
	background: var(--theme-lt-grey);
	max-width: 600px;
	margin: 0 auto;
}

.team--image {
	margin-left: calc(var(--theme-content-padding) * -1);
	margin-right: calc(var(--theme-content-padding) * -1);
	margin-bottom: 40px;
}

.team--name {
	margin-bottom: 0;
}

.team--position {
	font-weight: 500;
	margin-bottom: 30px;
}

.team--copy {
	font-weight: 500;
}

.team--li:hover {
	color: var(--theme-aqua);
}

@media (min-width: 992px) {
	
	.team--row {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.team--col {
		flex: 1 0 0%;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.team--inside {
		max-width: none;
		height: 100%;
	}
	
}