/**
 * Meet our SuperTeam landing.
 */

.myh-team {
	background: #fff;
	padding: 2.75rem 0 4.5rem;
	color: var(--myh-text, #1a1a1a);
}

.myh-team,
.myh-team * {
	box-sizing: border-box;
	font-family: var(--myh-font, "Gotham Book", sans-serif);
}

.myh-team__header {
	text-align: center;
	margin: 0 0 1.75rem;
}

.myh-team__title {
	margin: 0;
	color: var(--myh-navy, #0a2540);
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(2rem, 4vw, 2.85rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.myh-team__banner {
	margin: 0 0 3rem;
	overflow: hidden;
	border-radius: 2px;
	background: #e8eef3;
}

.myh-team__banner-img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 5.5;
	object-fit: cover;
	object-position: center;
}

.myh-team__dept {
	margin: 0 0 3.25rem;
}

.myh-team__dept:last-child {
	margin-bottom: 0;
}

.myh-team__dept-title {
	margin: 0 0 1.5rem;
	color: var(--myh-navy, #0a2540);
	font-size: clamp(1.55rem, 2.6vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
}

.myh-team__group {
	margin: 0 0 1.75rem;
}

.myh-team__group:last-child {
	margin-bottom: 0;
}

.myh-team__group-title {
	margin: 0 0 1.15rem;
	color: var(--myh-navy, #0a2540);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
}

.myh-team__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.myh-team__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.myh-team__avatar {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 50%;
	overflow: hidden;
	background: #d7dde5;
	margin: 0 0 0.85rem;
	flex-shrink: 0;
}

.myh-team__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.myh-team__silhouette {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.myh-team__name {
	margin: 0 0 0.2rem;
	color: #111;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.3;
}

.myh-team__role {
	margin: 0;
	color: var(--myh-primary, #0096e1);
	font-size: 0.86rem;
	font-weight: 400;
	line-height: 1.35;
}

.myh-team__empty {
	margin: 2rem 0 0;
	color: #6b7280;
	text-align: center;
}

@media (max-width: 991.98px) {
	.myh-team__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.75rem 1.15rem;
	}

	.myh-team__avatar {
		width: 6.5rem;
		height: 6.5rem;
	}
}

@media (max-width: 767.98px) {
	.myh-team {
		padding: 2rem 0 3.25rem;
	}

	.myh-team__banner {
		margin-bottom: 2.25rem;
	}

	.myh-team__banner-img {
		aspect-ratio: 16 / 9;
	}

	.myh-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 1rem;
	}

	.myh-team__dept {
		margin-bottom: 2.5rem;
	}
}

@media (max-width: 419.98px) {
	.myh-team__grid {
		grid-template-columns: 1fr 1fr;
	}

	.myh-team__avatar {
		width: 5.75rem;
		height: 5.75rem;
	}
}
