.team-page-hero {
	position: relative;
	padding: clamp(3.5rem, 7vw, 7rem) 0;
	background: linear-gradient(135deg, #edf5fa 0%, #fff 64%);
	overflow: hidden;
}
.team-page-hero::before {
	position: absolute;
	top: -15rem;
	left: -13rem;
	width: 36rem;
	height: 36rem;
	border: 1px solid rgba(23, 104, 190, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 5rem rgba(23, 104, 190, 0.035),
		0 0 0 10rem rgba(23, 104, 190, 0.02);
	content: "";
}
.team-page-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.85fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 6rem);
}
.team-breadcrumbs ol {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 2rem;
	padding: 0;
	color: var(--muted);
	font-size: 0.88rem;
	list-style: none;
}
.team-breadcrumbs li + li::before {
	margin-right: 0.65rem;
	color: #71858e;
	content: "/";
}
.team-breadcrumbs a {
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.2em;
}
.team-breadcrumbs a:hover {
	text-decoration-color: currentColor;
}
.team-page-hero h1 {
	max-width: 48rem;
	margin-bottom: 1.5rem;
	color: var(--navy);
	font-size: clamp(3rem, 5.8vw, 5.5rem);
	text-wrap: balance;
}
.team-page-hero__lead {
	max-width: 46rem;
	color: var(--text);
	font-size: clamp(1.02rem, 1.45vw, 1.17rem);
}
.team-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}
.team-page-hero__portraits {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* gap: 0.7rem; */
	padding: 1.4rem;
}
.team-page-hero__portraits::before,
.team-page-hero__portraits::after {
	position: absolute;
	z-index: 0;
	height: 70%;
	border-radius: var(--radius);
	content: "";
}
.team-page-hero__portraits::before {
	right: 1.4rem;
	bottom: 0;
	left: 0;
	background: var(--navy);
}
.team-page-hero__portraits::after {
	top: 0;
	right: 0;
	left: 1.4rem;
	background: #dcebf4;
}
.team-page-hero__portrait {
	position: relative;
	z-index: 1;
	margin: 0;
	/* border-radius: 1rem; */
	background: #dce7ec;
	overflow: hidden;
}
.team-page-hero__portrait img {
	width: 100%;
	aspect-ratio: 4/4.4;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.35s;
}
.team-page-hero__portrait:hover img {
	transform: scale(1.025);
}
.team-page-hero__portraits-logo {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	display: grid;
	width: clamp(7rem, 15vw, 10rem);
	min-height: clamp(3.25rem, 6vw, 4.5rem);
	padding: 0.65rem 0.9rem;
	place-items: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.team-page-hero__portraits-logo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.team-page-hero__portraits > p {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: -1.4rem;
	margin: 0;
	padding: 0.9rem 1.1rem;
	border-radius: 0.85rem;
	background: #fff;
	box-shadow: var(--shadow);
}
.team-page-hero__portraits > p strong,
.team-page-hero__portraits > p span {
	display: block;
}
.team-page-hero__portraits > p strong {
	color: var(--navy);
}
.team-page-hero__portraits > p span {
	color: var(--muted);
	font-size: 0.75rem;
}
.team-roster__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
	align-items: end;
	gap: 3rem;
	margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.team-roster__heading h2,
.team-roster__heading > p {
	margin-bottom: 0;
}
.team-roster__heading > p {
	color: var(--muted);
}
.provider-profile {
	display: grid;
	grid-template-columns: minmax(20rem, 0.73fr) minmax(0, 1.27fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 7rem);
	padding: clamp(2rem, 4vw, 3.5rem);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 12px 35px rgba(13, 53, 69, 0.05);
}
.provider-profile[id] {
	scroll-margin-top: 8rem;
}
.provider-profile + .provider-profile {
	margin-top: 2rem;
}
.provider-profile--reverse {
	grid-template-columns: minmax(0, 1.27fr) minmax(20rem, 0.73fr);
}
.provider-profile--reverse .provider-profile__media {
	grid-column: 2;
}
.provider-profile--reverse .provider-profile__content {
	grid-row: 1;
	grid-column: 1;
}
.provider-profile__media {
	position: relative;
	margin: 0;
	padding: 0 1rem 1rem 0;
}
.provider-profile__media a {
	display: block;
	height: 100%;
}
.provider-profile__content h3 a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.18em;
}
.provider-profile__content h3 a:hover,
.provider-profile__content h3 a:focus-visible {
	color: var(--blue-dark);
	text-decoration-color: currentColor;
}
.provider-profile__media::before {
	position: absolute;
	z-index: 0;
	right: 0;
	bottom: 0;
	width: 68%;
	height: 72%;
	border-radius: 1rem;
	background: #dcebf4;
	content: "";
}
.provider-profile__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4/4.55;
	object-fit: cover;
	object-position: center top;
	border-radius: 1rem;
	background: #e2ebef;
}
.provider-profile__content {
	position: relative;
}
.provider-profile h3 {
	position: relative;
	margin-bottom: 1rem;
	font-size: clamp(2rem, 3.5vw, 3.1rem);
}
.provider-profile__lead {
	position: relative;
	max-width: 48rem;
	color: var(--ink);
	font-size: 1.08rem;
	font-weight: 700;
}
.provider-profile__content
	> p:not(.eyebrow):not(.provider-profile__lead) {
	color: var(--muted);
}
.provider-profile__facts {
	display: grid;
	gap: 0.65rem;
	margin: 1.5rem 0;
	padding: 1.2rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	list-style: none;
}
.provider-profile__facts li {
	display: grid;
	grid-template-columns: 8rem 1fr;
	gap: 1rem;
  align-items: end;
}
.provider-profile__facts span {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.provider-profile__facts strong {
	color: var(--navy);
	font-size: 0.9rem;
}
.team-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--blue-dark);
	font-weight: 800;
	border-bottom: 1px solid transparent;
	transition:
		gap 0.2s,
		border-color 0.2s;
}
.team-text-link:hover {
	gap: 0.72rem;
	border-bottom-color: currentColor;
}
.team-collaboration {
	position: relative;
	min-height: 42rem;
	display: grid;
	align-items: end;
	padding: clamp(4rem, 8vw, 7rem) 0;
	overflow: hidden;
}
.team-collaboration::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(7, 35, 47, 0.92) 0%,
		rgba(7, 35, 47, 0.76) 48%,
		rgba(7, 35, 47, 0.16) 100%
	);
	content: "";
}
.team-collaboration__media {
	position: absolute;
	inset: 0;
}
.team-collaboration__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-collaboration__content {
	position: relative;
	z-index: 1;
	width: min(100% - 2rem, 47rem);
	max-width: 47rem;
	margin-inline: auto;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--radius);
	background-color: #0d3545;
	color: #d7e4e9;
	box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-collaboration__content > * {
	max-width: 43rem;
}
.team-collaboration .eyebrow {
	color: #9dccff;
}
.team-collaboration h2 {
	color: #fff;
	font-size: clamp(2.4rem, 5vw, 4.5rem);
  text-align: center;
}
.team-collaboration__content > p:not(.eyebrow) {
	color: #d7e4e9;
	font-size: 1.05rem;
  text-align: center;
}
.team-collaboration ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}
.team-collaboration li {
	padding: 0.6rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background-color: #0d3545;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
}
.team-final-cta {
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
	background: linear-gradient(135deg, #0d3545, #154c64);
	color: #d7e4e9;
}
.team-final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}
.team-final-cta__inner > div:first-child {
	max-width: 48rem;
}
.team-final-cta .eyebrow {
	color: #9dccff;
}
.team-final-cta h2 {
	margin-bottom: 0.6rem;
	color: #fff;
}
.team-final-cta p:last-child {
	margin: 0;
}
.team-final-cta__actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.team-final-cta__secondary {
	border-color: #fff;
	background: #fff;
	color: var(--navy);
}
.team-final-cta__secondary:hover {
	background: #dcebf4;
	color: var(--navy);
}
@media (max-width: 1050px) {
	.team-page-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.75fr);
		gap: 3rem;
	}
	.provider-profile,
	.provider-profile--reverse {
		grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
		gap: 3rem;
	}
}
@media (max-width: 820px) {
	.team-page-hero__grid,
	.provider-profile,
	.provider-profile--reverse,
	.team-roster__heading {
		grid-template-columns: 1fr;
	}
	.team-page-hero__portraits {
		width: min(100%, 36rem);
		margin-inline: auto;
	}
	.team-roster__heading {
		gap: 1rem;
	}
	.provider-profile--reverse .provider-profile__media,
	.provider-profile--reverse .provider-profile__content {
		grid-row: auto;
		grid-column: auto;
	}
	.provider-profile__media {
		width: min(100%, 30rem);
		margin-inline: auto;
	}
	.team-final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.team-final-cta__actions {
		flex: none;
	}
	.team-collaboration {
		min-height: 38rem;
	}
	.team-collaboration::after {
		background: linear-gradient(
			90deg,
			rgba(7, 35, 47, 0.92),
			rgba(7, 35, 47, 0.58)
		);
	}
}
@media (max-width: 560px) {
	.team-page-hero {
		padding-top: 2.5rem;
	}
	.team-page-hero__actions,
	.team-page-hero__actions .button,
	.team-final-cta__actions,
	.team-final-cta__actions .button {
		width: 100%;
	}
	.team-page-hero__portraits {
		padding: 0.8rem;
		gap: 0.45rem;
	}
	.team-page-hero__portraits > p {
		right: 0;
		bottom: -30px;
	}
	.provider-profile {
		padding: 1.2rem;
	}
	.provider-profile__facts li {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}
	.team-collaboration {
		min-height: 42rem;
	}
	.team-collaboration::after {
		background: linear-gradient(
			0deg,
			rgba(7, 35, 47, 0.95),
			rgba(7, 35, 47, 0.35)
		);
	}
}
@media (prefers-reduced-motion: reduce) {
	.team-page-hero__portrait img,
	.team-text-link {
		transition: none;
	}
}
