:root {
	--awtm-navy: #0f2f3d;
	--awtm-teal: #174f5f;
	--awtm-teal-deep: #0b3d49;
	--awtm-blue: #8fc9df;
	--awtm-blue-light: #d9edf5;
	--awtm-white: #ffffff;
	--awtm-ink: #17313a;
	--awtm-muted: #5d737b;
	--awtm-border: #c9e2eb;
	--awtm-shadow: 0 14px 36px rgba(15, 47, 61, 0.14);
}

.awtm-grid,
.awtm-profile-page {
	color: var(--awtm-ink);
	font-family: inherit;
}

.awtm-grid {
	display: grid;
	grid-template-columns: repeat(var(--awtm-columns, 5), minmax(120px, 1fr));
	gap: 58px 34px;
	width: 100%;
}

.awtm-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	overflow: visible;
	text-align: center;
	transition: transform 160ms ease;
}

.awtm-card:hover,
.awtm-card:focus-within {
	transform: translateY(-2px);
}

.awtm-card__link {
	align-items: center;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: flex-start;
	text-decoration: none;
}

.awtm-card__link:focus-visible,
.awtm-profile__back:focus-visible,
.awtm-detail__value a:focus-visible {
	outline: 3px solid var(--awtm-blue);
	outline-offset: 3px;
}

.awtm-card__image-wrap {
	background: var(--awtm-blue-light);
	border-radius: 50%;
	height: clamp(136px, 11vw, 184px);
	overflow: hidden;
	position: relative;
	width: clamp(136px, 11vw, 184px);
}

.awtm-card__image,
.awtm-profile__image {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.awtm-card__placeholder,
.awtm-profile__placeholder {
	align-items: center;
	background: var(--awtm-blue-light);
	color: var(--awtm-white);
	display: flex;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0;
}

.awtm-card__placeholder {
	border-radius: 50%;
	color: var(--awtm-navy);
	font-size: clamp(2rem, 3vw, 3.2rem);
	height: 100%;
	width: 100%;
}

.awtm-profile__placeholder {
	background: linear-gradient(135deg, var(--awtm-teal), var(--awtm-navy));
	color: var(--awtm-white);
}

.awtm-card__body {
	background: transparent;
	display: flex;
	flex: 1;
	flex-direction: column;
	margin: 20px 0 0;
	min-height: 0;
	padding: 0;
	position: relative;
}

.awtm-card__name {
	color: var(--awtm-navy);
	font-size: clamp(1.05rem, 1.2vw, 1.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.awtm-card__title {
	color: var(--awtm-muted);
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.35;
	margin: 9px auto 0;
	max-width: 220px;
}

.awtm-card__cta {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.awtm-empty,
.awtm-note {
	background: var(--awtm-blue-light);
	border-left: 4px solid var(--awtm-blue);
	color: var(--awtm-navy);
	margin: 0;
	padding: 14px 16px;
}

.awtm-profile-page {
	background: var(--awtm-white);
	margin: 0;
	width: 100%;
}

.awtm-profile {
	margin: 0 auto;
	width: 100%;
}

.awtm-profile__hero {
	align-items: stretch;
	background: var(--awtm-navy);
	display: grid;
	grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
	min-height: 520px;
	width: 100%;
}

.awtm-profile__media {
	background: var(--awtm-blue-light);
	min-height: 360px;
}

.awtm-profile__intro {
	align-self: center;
	color: var(--awtm-white);
	max-width: 760px;
	padding: 64px clamp(28px, 6vw, 88px);
}

.awtm-profile__eyebrow {
	color: var(--awtm-blue);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.awtm-profile__name {
	color: var(--awtm-white);
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: 1.02;
	margin: 0;
}

.awtm-profile__title {
	border-left: 4px solid var(--awtm-blue);
	color: var(--awtm-blue-light);
	font-size: clamp(1.15rem, 2vw, 1.6rem);
	font-weight: 600;
	line-height: 1.35;
	margin: 28px 0 0;
	padding-left: 18px;
}

.awtm-profile__placeholder {
	font-size: clamp(3rem, 9vw, 7rem);
	height: 100%;
	min-height: 520px;
}

.awtm-profile__content-wrap {
	margin: 0 auto;
	max-width: 1120px;
	padding: 56px 24px 72px;
}

.awtm-profile__bio,
.awtm-profile__details-section {
	margin: 0;
}

.awtm-profile__details-section {
	border-top: 1px solid var(--awtm-border);
	margin-top: 44px;
	padding-top: 40px;
}

.awtm-profile__bio h2,
.awtm-profile__details-section h2 {
	color: var(--awtm-navy);
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	line-height: 1.18;
	margin: 0 0 20px;
}

.awtm-profile__content {
	color: var(--awtm-ink);
	font-size: 1.08rem;
	line-height: 1.75;
}

.awtm-profile__content > *:first-child {
	margin-top: 0;
}

.awtm-profile__content > *:last-child {
	margin-bottom: 0;
}

.awtm-details {
	display: grid;
	gap: 0;
	margin: 0;
}

.awtm-detail {
	border-top: 1px solid var(--awtm-border);
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(170px, 28%) minmax(0, 1fr);
	padding: 20px 0;
}

.awtm-detail:first-child {
	border-top: 0;
}

.awtm-detail__label {
	color: var(--awtm-teal);
	font-weight: 700;
	line-height: 1.4;
}

.awtm-detail__value {
	color: var(--awtm-ink);
	line-height: 1.65;
	margin: 0;
}

.awtm-detail__value a {
	color: var(--awtm-teal-deep);
	font-weight: 700;
	text-decoration-color: var(--awtm-blue);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.awtm-inline-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.awtm-inline-list li {
	background: var(--awtm-blue-light);
	border: 1px solid var(--awtm-border);
	border-radius: 999px;
	color: var(--awtm-navy);
	font-size: 0.94rem;
	line-height: 1.3;
	padding: 7px 12px;
}

.awtm-detail__image {
	border-radius: 8px;
	display: block;
	height: auto;
	max-width: min(100%, 320px);
}

.awtm-profile__nav {
	border-top: 1px solid var(--awtm-border);
	margin-top: 44px;
	padding-top: 28px;
}

.awtm-profile__back {
	background: var(--awtm-teal);
	border: 2px solid var(--awtm-teal);
	border-radius: 4px;
	color: var(--awtm-white);
	display: inline-flex;
	font-weight: 700;
	line-height: 1;
	padding: 14px 18px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease;
}

.awtm-profile__back:hover {
	background: var(--awtm-navy);
	border-color: var(--awtm-navy);
	color: var(--awtm-white);
}

@media (max-width: 900px) {
	.awtm-grid {
		grid-template-columns: repeat(3, minmax(120px, 1fr));
		gap: 46px 26px;
	}

	.awtm-profile__hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.awtm-profile__media,
	.awtm-profile__placeholder {
		min-height: 420px;
	}
}

@media (max-width: 640px) {
	.awtm-grid {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
		gap: 38px 20px;
	}

	.awtm-card__body {
		margin-top: 16px;
		min-height: 0;
		padding: 0;
	}

	.awtm-card__image-wrap {
		height: clamp(124px, 36vw, 156px);
		width: clamp(124px, 36vw, 156px);
	}

	.awtm-profile__intro {
		padding: 36px 22px 42px;
	}

	.awtm-profile__media,
	.awtm-profile__placeholder {
		min-height: 340px;
	}

	.awtm-profile__content-wrap {
		padding: 40px 20px 56px;
	}

	.awtm-detail {
		gap: 8px;
		grid-template-columns: 1fr;
		padding: 18px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.awtm-card,
	.awtm-profile__back {
		transition: none;
	}
}
.awtm-team-groups {
	width: 100%;
}

.awtm-team-group + .awtm-team-group {
	margin-top: 3rem;
}

.awtm-team-group__heading {
	margin: 0 0 1.5rem;
	color: var(--awtm-teal-deep);
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.2;
	text-align: center;
}
