.meet-the-team {
	margin: 6rem 0 2rem;
}

.meet-the-team__list {
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

.meet-the-team__item {
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	padding: 0 1.5rem 1.5rem;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.meet-the-team__picture-hexagon {
	background: var(--colors--grey-athens);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	width: 9.375rem;
	transform: translate3d(0,-50%,0);
	align-self: center;
	margin-bottom: -2.5rem;
}

.meet-the-team__picture-hexagon-inner {
	position: relative;
}

.meet-the-team__picture-hexagon-inner::before {
	content: "";
	display: block;
	padding-top: 87.01%;
	width: 100%;
}

.meet-the-team__picture {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.meet-the-team h3 {
	color: var(--colors--blue-cerulean);
}

.meet-the-team__item p {
	font-size: 1em;
}

.meet-the-team__position {
	font-weight: 700;
	font-size: 1.15em;
	display: block;
	margin: .5rem 0 1rem;
}

.meet-the-team__links {
	margin: 1rem 0 0;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

@media all and (min-width: 560px) {
	.meet-the-team__list {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 6rem 1rem;
	}

	.meet-the-team__item {
		max-width: 350px;
	}

	.meet-the-team__item p {
		margin-bottom: 2rem;
	}

	.meet-the-team__links {
		margin-top: auto;
	}
}

@media all and (min-width: 960px) {
	.meet-the-team__list {
		grid-template-columns: repeat(3,1fr);
	}
}
@media all and (min-width: 1280px) {

	.meet-the-team {
		margin: 6rem 0;
	}

	.meet-the-team__list {
		grid-template-columns: repeat(4,1fr);
		gap: 8rem 2rem;
	}
}