/**
 * Leadership — Figma 751:9667
 */

.gt-ld {
	--gt-ld-bg: #fff;
	--gt-ld-tile: #f1f6fd;
	--gt-ld-tile-bg: rgb(from var(--gt-ld-tile) r g b / 0.8);
	--gt-ld-tile-bg-hover: var(--gt-ld-tile);
	--gt-ld-eyebrow: var(--gt-brand-cyan, #00aaef);
	--gt-ld-title: #063652;
	--gt-ld-navy: #034b75;
	--gt-ld-body: #525252;
	background-color: var(--gt-ld-bg);
	color: var(--gt-ld-body);
}

@supports not (background-color: rgb(from white r g b / 0.8)) {
	.gt-ld {
		--gt-ld-tile-bg: color-mix(in srgb, var(--gt-ld-tile) 80%, transparent);
	}
}

.gt-ld__inner {
	padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.gt-ld__eyebrow {
	margin: 0 0 1.25rem;
	font-family: var(--gt-display-font, var(--gt-font-saira));
	font-size: 13px;
	font-weight: 600;
	line-height: 13px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gt-ld-eyebrow);
}

.gt-ld__title {
	margin: 0 0 1rem;
	font-family: var(--gt-display-font, var(--gt-font-saira));
	font-size: clamp(2rem, 4.5vw, 48px);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: 0.35px;
	color: var(--gt-ld-title);
}

.gt-ld__lead {
	margin: 0 0 clamp(2.5rem, 6vw, 4rem);
	max-width: 36rem;
	font-family: var(--gt-ui-font, var(--gt-font-inter));
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.31px;
	color: var(--gt-ld-body);
}

/* —— Featured leader —— */
.gt-ld__featured {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
	background-color: var(--gt-ld-tile);
}

@media (min-width: 992px) {
	.gt-ld__featured {
		grid-template-columns: minmax(0, 397fr) minmax(0, 881fr);
		min-height: 27rem;
	}
}

.gt-ld__featured-media {
	margin: 0;
	min-height: clamp(16rem, 45vw, 27rem);
	background: transparent;
}

.gt-ld__featured-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center top;
}

.gt-ld__featured-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
}

.gt-ld__featured-name {
	display: flex;
	flex-direction: column;
	margin: 0 0 0.35rem;
	font-family: var(--gt-display-font, var(--gt-font-saira));
	font-size: 24px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--gt-ld-navy);
}

.gt-ld__featured-role {
	margin: 0 0 1.25rem;
	font-family: var(--gt-ui-font, var(--gt-font-inter));
	font-size: 13px;
	line-height: 18px;
	letter-spacing: -0.31px;
	color: var(--gt-ld-navy);
}

.gt-ld__featured-bio {
	font-family: var(--gt-ui-font, var(--gt-font-inter));
	font-size: 16px;
	line-height: 26px;
	letter-spacing: -0.45px;
	color: var(--gt-ld-body);
}

.gt-ld__featured-bio p {
	margin: 0;
}

/* —— Department grid —— */
.gt-ld__team-label {
	margin: 0 0 1.25rem;
	font-family: var(--gt-display-font, var(--gt-font-saira));
	font-size: 13px;
	font-weight: 600;
	line-height: 13px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gt-ld-eyebrow);
}

.gt-ld__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gt-gutter);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.gt-ld__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.gt-ld__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.gt-ld__card {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 9.7rem;
	padding: 1.35rem 1.25rem 1.15rem;
	border-radius: 10px;
}

.gt-ld__card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	background-color: var(--gt-ld-tile-bg);
	transition: background-color 0.3s ease;
}

.gt-ld__card:hover::before,
.gt-ld__card:focus-within::before {
	background-color: var(--gt-ld-tile-bg-hover);
}

.gt-ld__card-name,
.gt-ld__card-role {
	position: relative;
	z-index: 1;
}

.gt-ld__card-name {
	display: flex;
	flex-direction: column;
	margin: 0 0 0.5rem;
	font-family: var(--gt-display-font, var(--gt-font-saira));
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--gt-ld-navy);
}

.gt-ld__card-role {
	margin: 0;
	font-family: var(--gt-ui-font, var(--gt-font-inter));
	font-size: 13px;
	line-height: 18px;
	letter-spacing: -0.31px;
	color: var(--gt-ld-navy);
}

@media (prefers-reduced-motion: reduce) {
	.gt-ld.gt-reveal {
		opacity: 1;
		transform: none;
	}

	.gt-ld__card::before {
		background-color: var(--gt-ld-tile-bg-hover);
	}
}
