/* Our Teams sectie – contactpagina */
.qps-our-teams {
	background: #fff;
	padding: 60px 0 80px;
}
.qps-our-teams .qps-teams-title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #282154;
	margin-bottom: 24px;
	text-align: left;
}
.qps-our-teams .qps-org-block {
	text-align: left;
	margin-bottom: 48px;
}
.qps-our-teams .qps-org-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: #282154;
	margin: 0 0 8px;
}
.qps-our-teams .qps-org-address {
	font-size: 1.5rem;
	color: #555;
	margin: 0;
	line-height: 1.5;
}
.qps-team-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}
.qps-team-card {
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 40px 32px;
	text-align: center;
	max-width: 420px;
	width: 100%;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.qps-team-card:hover {
	border-color: #282154;
	transform: scale(1.04);
	box-shadow: 0 8px 24px rgba(40, 33, 84, 0.15);
}
/* Cirkel met placeholder voor teamfoto */
.qps-team-photo-wrap {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	margin: 0 auto 20px;
	overflow: hidden;
	background: #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.qps-team-photo-wrap .qps-team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
}
.qps-team-photo-wrap.qps-team-photo--placeholder::after {
	content: "Photo";
	font-size: 1.2rem;
	color: #999;
	position: absolute;
	z-index: 0;
}
.qps-team-card .qps-team-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: #282154;
	margin: 0 0 6px;
}
.qps-team-card .qps-team-role {
	font-size: 1.2rem;
	font-weight: 600;
	color: #94c24a;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 20px;
}
.qps-team-card .qps-team-sep {
	height: 1px;
	background: #e0e0e0;
	margin: 0 0 20px;
	border: 0;
}
.qps-team-card .qps-team-icons {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}
.qps-team-card .qps-team-icons a {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s;
}
.qps-team-card .qps-team-icons a:hover {
	opacity: 0.9;
	transform: scale(1.08);
}
.qps-team-card .qps-team-icons a.qps-ico-phone,
.qps-team-card .qps-team-icons a.qps-ico-email {
	background: transparent;
	padding: 6px;
}
.qps-team-card .qps-team-icons a.qps-ico-phone img,
.qps-team-card .qps-team-icons a.qps-ico-email img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.qps-team-card .qps-team-icons a.qps-ico-email img {
	width: 130%;
	height: 130%;
	max-width: none;
	max-height: none;
}
.qps-team-card .qps-team-icons a.qps-ico-whatsapp { background: #25d366; }
.qps-team-card .qps-team-icons a.qps-ico-linkedin { background: #0077b5; }

/* ─── Mobiel: tablet (max 767px) ─── */
@media (max-width: 767px) {
	.qps-our-teams {
		padding: 40px 0 56px;
	}
	.qps-our-teams .qps-teams-title {
		font-size: 2rem;
		text-align: center;
	}
	.qps-our-teams .qps-org-block {
		text-align: center;
	}
	.qps-our-teams .qps-org-name {
		font-size: 1.6rem;
	}
	.qps-team-cards {
		gap: 20px;
	}
	.qps-team-card {
		padding: 28px 20px;
		max-width: 100%;
	}
	.qps-team-photo-wrap {
		width: 140px;
		height: 140px;
	}
	.qps-team-card .qps-team-name {
		font-size: 1.6rem;
	}
	.qps-team-card .qps-team-icons a {
		width: 48px;
		height: 48px;
		font-size: 1.6rem;
	}
}

/* ─── Mobiel: klein (max 575px) ─── */
@media (max-width: 575px) {
	.qps-our-teams .qps-teams-title {
		font-size: 1.8rem;
	}
	.qps-team-card {
		padding: 20px 14px;
	}
	.qps-team-photo-wrap {
		width: 110px;
		height: 110px;
	}
	.qps-team-card .qps-team-name {
		font-size: 1.5rem;
	}
	.qps-team-card .qps-team-role {
		font-size: 1.1rem;
	}
	.qps-team-card .qps-team-icons {
		gap: 10px;
	}
	.qps-team-card .qps-team-icons a {
		width: 44px;
		height: 44px;
	}
}
