.team-layout {
	--team-item-bg: var(--pk-color-primary);
	--team-item-text: #ffffff;
}

.site-3 .team-layout {
	--team-item-bg: #9acfb5;
}

.team-layout .team-layout__intro {
	margin-bottom: 2.5rem;
}

.team-layout .team-layout__list {
	display: grid;
	gap: 1.5rem;
}

.team-layout .team-item {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 0;
	background-color: var(--team-item-bg);
	color: var(--team-item-text);
	border-radius: var(--pk-button-radius);
	overflow: hidden;
}

.site-3 .team-layout .team-member__email svg path{
	fill: var(--pk-color-secondary);
}

.team-layout .team-item__content {
	padding: 2rem;
}

.team-layout .team-item__name {
	margin-bottom: 0rem;
	color: inherit;
}

.team-layout .team-item__role {
	margin-bottom: 1rem;
	font-weight: 600;
	color: inherit;
}

.team-layout .team-item__bio,
.team-layout .team-item__bio p {
	color: inherit;
}

.team-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media screen and (max-width: 767px) {
	.team-layout .team-item__content {
		padding: var(--pk-site-gutter);
	}

	.team-layout .team-item {
		grid-template-columns: 1fr;
	}

	.team-layout .team-item__image {
		order: 2;
	}
}
