#executive-team-page {
	background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 38%, #f8fbfb 100%);
	padding-top: 34px;
	padding-bottom: 76px;
}
.team-hero {
	max-width: 980px;
	margin: 0 auto 42px;
	text-align: center;
}
.team-kicker {
	color: var(--brand-teal);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.team-hero h1 {
	color: #10262d;
	font-size: 2.6rem;
	line-height: 1.15;
	margin-bottom: 14px;
}
.team-hero p {
	max-width: 760px;
	margin: 0 auto;
	color: #4a5c60;
	font-size: 1.05rem;
	line-height: 1.75;
}
.team-section-title {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	color: #10262d;
	font-size: 1.24rem;
	font-weight: 800;
}
.team-section-title-secondary {
	position: relative;
	margin-top: 74px;
	padding-top: 34px;
}
.team-section-title-secondary:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(35,97,123,0.02), rgba(35,97,123,0.24), rgba(197,163,51,0.36), rgba(35,97,123,0.02));
}
.team-section-title-secondary + .team-grid {
	margin-top: 4px;
}
.team-section-title:before {
	content: "";
	width: 4px;
	height: 28px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--brand-teal) 0%, var(--brand-gold) 100%);
}
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.team-grid-division {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 760px;
}
.team-card {
	border: 1px solid rgba(35,97,123,0.12);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(23,72,93,0.09);
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.team-card:hover {
	transform: translateY(-6px);
	border-color: rgba(35,97,123,0.24);
	box-shadow: 0 22px 42px rgba(23,72,93,0.14);
}
.team-photo {
	position: relative;
	aspect-ratio: 4 / 4.65;
	background: linear-gradient(135deg, #e9f0f0 0%, #f7faf9 100%);
	overflow: hidden;
}
.team-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
	user-select: none;
}
.team-photo.placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-photo.placeholder span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(35,97,123,0.1);
	color: var(--brand-teal);
	font-size: 1.5rem;
	font-weight: 900;
}
.team-card-body {
	padding: 20px 20px 22px;
	text-align: center;
}
.team-card h2 {
	color: #10262d;
	font-size: 1.16rem;
	margin-bottom: 5px;
}
.team-role {
	color: var(--brand-teal);
	font-size: 0.9rem;
	font-weight: 800;
	margin-bottom: 10px;
}
.team-credential {
	color: #63757a;
	display: block;
	font-size: 0.76rem !important;
	font-style: italic !important;
	font-weight: 400 !important;
	line-height: 1.4;
	margin-top: 2px;
}
.team-card p {
	color: #526469;
	line-height: 1.6;
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.team-grid-division {
		max-width: none;
	}
}
@media (max-width: 767px) {
	#executive-team-page {
		padding-top: 24px;
		padding-bottom: 54px;
	}
	.team-hero {
		text-align: left;
		margin-bottom: 30px;
	}
	.team-hero h1 {
		font-size: 2rem;
	}
	.team-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.team-section-title-secondary {
		margin-top: 54px;
		padding-top: 28px;
	}
}
