.kommbio-team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 48px;
	row-gap: 54px;
}

.kommbio-team-card {
	min-width: 0;
	text-align: center;
}

.kommbio-team-card__image-wrap {
	width: 260px;
	height: 260px;
	max-width: 100%;
	margin: 0 auto 22px;
	overflow: hidden;
	border-radius: 50%;
}

.kommbio-team-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}

.kommbio-team-card__name,
.kommbio-team-card__role,
.kommbio-team-card__details,
.kommbio-team-card__contact {
	margin-top: 0;
}

.kommbio-team-card__name {
	margin-bottom: 2px;
	color: #111;
}

.kommbio-team-card__role {
	margin-bottom: 22px;
	color: #fff;
}

.kommbio-team-card__details {
	margin-bottom: 0;
	color: #fff;
}

.kommbio-team-card__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 12px;
	color: #fff;
}

.kommbio-team-card__contact a {
	color: inherit;
}

.kommbio-team-empty {
	text-align: center;
}

@media (max-width: 767px) {
	.kommbio-team-grid {
		grid-template-columns: 1fr;
	}
}
