.team_grid-layout {
	
}

.team_grid-layout .team-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

/* Uitgelichte teamleden - kaarten met afbeelding */
.team_grid-layout .team-grid--uitgelicht {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 2.5rem;
}

.team_grid-layout .team-member--uitgelicht {
	background-color: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: var(--pk-button-radius);
	overflow: hidden;
}

.team_grid-layout .team-member--uitgelicht .team-member__image {
	aspect-ratio: 4/3;
	overflow: hidden;
	position: relative;
	background-color: #f2f2f2;
}

.team_grid-layout .team-member--uitgelicht .team-member__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team_grid-layout .team-member--uitgelicht .team-member__content {
	padding: 1.25rem 1.5rem 1.5rem;
	position: relative;
}

.team_grid-layout .team-member--uitgelicht .team-member__name {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
	color: var(--pk-color-primary);
}

.team_grid-layout .team-member--uitgelicht .team-member__functie {
	font-size: 0.95rem;
	color: #1f2a44;
	margin-bottom: 0;
}

.team_grid-layout .team-member--uitgelicht .team-member__email {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
}

.team_grid-layout .team-member--uitgelicht .team-member__email svg {
	width: 18px;
	height: 18px;
}

/* Reguliere teamleden - gekleurde kaarten zonder afbeelding */
.team_grid-layout .team-grid--regulier {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team_grid-layout .team-member--regulier {
	background-color: #23b9d6;
	border-radius: var(--pk-button-radius);
	padding: 1.5rem 1.5rem 1.75rem;
	position: relative;
	color: #ffffff;
}

.site-3 .team_grid-layout .team-member--regulier {
	background-color: #9acfb5;
}

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

.team_grid-layout .team-member--regulier .team-member__content {
	padding-right: 2.75rem;
}

.team_grid-layout .team-member--regulier .team-member__name {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.team_grid-layout .team-member--regulier .team-member__functie {
	font-size: 0.9rem;
	color: #ffffff;
	margin-bottom: 0;
}

.team_grid-layout .team-member--regulier .team-member__email {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 6px;
}

.team_grid-layout .team-member--regulier .team-member__email svg {
	width: 14px;
	height: 14px;
}

@media screen and (max-width: 1023px) {
	.team_grid-layout .team-grid--uitgelicht,
	.team_grid-layout .team-grid--regulier {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.team_grid-layout .team-grid--uitgelicht,
	.team_grid-layout .team-grid--regulier {
		grid-template-columns: 1fr;
	}
    
    .team_grid-layout .team-member--uitgelicht .team-member__content,
    .team_grid-layout .team-member--regulier {
        padding: var(--pk-site-gutter);
    }
}
