.team--expertise {
/* 	padding-top: 2.5vw;
	clip-path: circle(500vw at 50% 500vw);
	margin-top: -2.5vw; */
}

.acf-block-preview .team--expertise {
	margin-top: 0;
}

.team--expertise-container {
	padding: 60px 30px 30px;
	position: relative;
	min-height: 220px;
}

.team--expertise-list {
	list-style-type: none;
	font-weight: 700;
	color: var(--dlc-green-faded);
	padding-left: 0;
}

.team--expertise-list li {
	padding: 10px 0 10px;
	border-bottom: 1px solid var(--theme-blue-light);
}

.team--expertise-list li:last-child {
	border-bottom-color: transparent;
}

.team--expertise-list a {
	transition: color .3s;
}

.team--expertise-list a:hover,
.team--expertise-list a:focus {
	color: var(--theme-green);
}

.team--expertise-copy a {
	color: var(--theme-orange);;
}

.team--expertise-copy p {
	margin-bottom: 1em;
}

.team--expertise-copy a:hover {
	text-decoration: underline;
}

.team--expertise-copy img {
	max-width: 100%;
	height: auto;
}

@media (min-width: 992px) {
	.team--expertise-listcol-li {
		padding-left: 100px;
	}
	
	.team--expertise-listcol-li a {
		position: relative;
	}

	.team--expertise-listcol-li a:before {
		content: "";
		position: absolute;
		top: 3px;
		bottom: 0;
		left: -40px;
		width: 1em;
		height: 1em;
		border-radius: 50%;
		background: var(--theme-green);
		opacity: 0;
		transition: opacity .3s;
	}
	
	.team--expertise-list a:focus {
		outline: none;
	}
	
	.team--expertise-listcol-li a:focus:before,
	.team--expertise-listcol-li a:hover:before {
		opacity: 1;
	}
}