/* PTE Leadership Message — Welcome band + light-blue message panel */

.pte-lm { background: var(--pte-white, #fff); }

/* --- Welcome band (on blue) --------------------------------------------- */
.pte-lm__welcome {
	background: linear-gradient(180deg, #004a68 0%, #1668a8 100%);
	color: #fff;
	text-align: center;
	padding: 138px 0 108px;
}
.pte-lm__welcome-title {
	color: #fff;
	font-size: clamp(2.5rem, 5.2vw, 4.5rem); /* 72px at desktop, matching the comp */
	line-height: 1.0;
	font-weight: 800;
	margin: 0 0 clamp(1rem, 2vw, 1.75rem);
}
.pte-lm__welcome-intro {
	max-width: 1100px;
	margin: 0 auto;
	font-size: clamp(1.25rem, 2.6vw, 2.25rem); line-height: 1.44;
	line-height: 1.5;
}
.pte-lm__welcome-intro p { margin: 0; }

/* --- Message panel (light blue) ----------------------------------------- */
.pte-lm__panel {
	background: linear-gradient(180deg, #b0d2ee 0%, #73b1e0 29%, #5da5db 68.5%);
	border-radius: clamp(24px, 3vw, 50px) clamp(24px, 3vw, 50px) 0 0;
	margin-top: calc(-1 * clamp(24px, 3vw, 50px));
	padding: 91px 0 235px;
	text-align: center;
}
.pte-lm__message-title {
	color: #08324f;
	font-size: clamp(1.5rem, 2.5vw, 2.25rem); /* 36px, fits one line like the comp */
	font-weight: 800;
	line-height: 1.22;
	margin: 0 auto clamp(2rem, 4vw, 2.75rem);
	max-width: 1340px;
}

/* Headshot cards */
.pte-lm__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 3rem);
	margin-bottom: clamp(2rem, 4vw, 3rem);
}
.pte-lm__card {
	margin: 0;
	width: clamp(220px, 22vw, 275px);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
/* Dark navy card background (matching the Figma card-bg treatment) */
.pte-lm__photo-wrap {
	width: 100%;
	aspect-ratio: 275 / 298;
	border-radius: 25px;
	overflow: hidden;
	background: linear-gradient(136deg, #005474 3.6%, #002d3e 65.9%);
	position: relative;
}
.pte-lm__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}
.pte-lm__label {
	background: #fbfdff;
	border-radius: 15px;
	box-shadow: 0 4px 14px rgba(0, 40, 70, .12);
	padding: .7rem 1rem;
	margin-top: -40px;
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
}
.pte-lm__name {
	display: block;
	color: var(--pte-blue-dark, #005474);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.2;
}
.pte-lm__role {
	display: block;
	color: var(--pte-ink, #251e20);
	font-style: italic;
	font-size: .95rem;
	margin-top: .15rem;
}

/* Message body + CTA */
.pte-lm__body {
	max-width: 900px;
	margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
	color: #0a2233;
	font-size: clamp(1.15rem, 2.1vw, 1.875rem); /* 30px at 1440px, matching comp */
	font-weight: 300;
	line-height: 1.53;
}
.pte-lm__body p { margin: 0 0 1rem; }
.pte-lm__body p:last-child { margin-bottom: 0; }

.pte-lm__btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: #fff;
	color: var(--pte-blue-dark, #005474) !important;
	border-radius: 100px;
	padding: .6em 1.6em;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 40, 60, .12);
}
.pte-lm__btn:hover,
.pte-lm__btn:focus-visible {
	background: var(--pte-blue-dark, #005474);
	color: #fff !important;
}

@media (max-width: 560px) {
	.pte-lm__cards { gap: 2rem; }
}

/* --- "Message" variant (Greetings): letter + headshots below, lime labels --- */
.pte-lm--message .pte-lm__panel {
	background: #fff;
	background-image: linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, .45) 78%, rgba(255, 255, 255, .3) 100%), var(--pte-lm-bg, none);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	border-radius: 0;
	margin-top: 0;
	padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 7vw, 6rem);
	text-align: left;
}
.pte-lm--message .pte-lm__message-title {
	text-align: left;
	margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
	max-width: 900px;
	color: var(--pte-ink, #251e20);
	font-weight: 800;
	font-size: clamp(1.75rem, 3.4vw, 3rem); /* 48px */
}
.pte-lm--message .pte-lm__body {
	max-width: 900px;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
	text-align: left;
	font-size: clamp(1rem, 1.4vw, 1.25rem); /* 20px */
	line-height: 1.65;
}
.pte-lm--message .pte-lm__cards {
	justify-content: flex-start;
	margin-bottom: 0;
	gap: clamp(1rem, 2vw, 1.5rem);
}
.pte-lm--message .pte-lm__card { width: clamp(190px, 20vw, 236px); }
/* Lime name labels */
.pte-lm--message .pte-lm__label { background: var(--pte-lime, #c3df6c); }
.pte-lm--message .pte-lm__name { color: var(--pte-ink, #251e20); }
.pte-lm--message .pte-lm__role { color: var(--pte-ink, #251e20); }


/* Full-width read-more bar */
.pte-lm__cta-bar { background: var(--pte-blue, #006db9); padding: clamp(1.1rem, 2.4vw, 1.6rem) 0; }
.pte-lm__cta-bar-link {
	display: inline-flex; align-items: center; gap: .85rem;
	color: #fff; font-weight: 700; text-decoration: none;
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}
.pte-lm__cta-bar-arrow {
	width: 30px; height: 30px; border: 2px solid #fff; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center; font-size: 1rem;
}
.pte-lm__cta-bar-link:hover .pte-lm__cta-bar-arrow,
.pte-lm__cta-bar-link:focus-visible .pte-lm__cta-bar-arrow { background: #fff; color: var(--pte-blue, #006db9); }
