/* PTE Report Hero — full-bleed anniversary hero */

.pte-hero { position: relative; }

.pte-hero__bg {
	position: relative;
	min-height: 774px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* The banner art already carries the blue→green gradient; add only a light
   veil for text legibility, not the old heavy side-scrim. */
.pte-hero__scrim {
	position: absolute;
	inset: 0;
	background: rgba(0, 40, 60, .18);
	pointer-events: none;
}

.pte-hero .container { position: relative; z-index: 1; }

.pte-hero__content {
	max-width: 900px;
	margin: 0 auto;
	color: #fff;
	padding: 40px 0;
	text-align: center;
}

.pte-hero__eyebrow {
	font-size: clamp(1.35rem, 2.5vw, 2.25rem); /* 36px at desktop */
	font-weight: 600;
	letter-spacing: .01em;
	margin: 0 0 1rem;
	color: #fff;
}

.pte-hero__title {
	color: #fff;
	font-size: clamp(2.75rem, 6.5vw, 5.5rem);
	line-height: 1.02;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
.pte-hero__title-hi {
	display: block;
	color: #fdf7c2; /* pale cream lead line, matching the design */
	font-size: clamp(3.5rem, 9.5vw, 8.5rem); /* "25 YEARS" reads larger than the tagline */
	line-height: .95;
}
.pte-hero__title-rot {
	display: block;
	transition: opacity .35s ease, transform .35s ease;
}
.pte-hero__title-rot.is-fading { opacity: 0; transform: translateY(8px); }

.pte-hero__intro {
	font-size: clamp(1.05rem, 1.6vw, 1.375rem);
	line-height: 1.55;
	max-width: 34em;
}
.pte-hero__intro p { margin: 0 0 1rem; }
.pte-hero__intro p:last-child { margin-bottom: 0; }

/* Scroll cue */
.pte-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	z-index: 1;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #fff;
	text-decoration: none;
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 600;
}
.pte-hero__scroll-arrow {
	width: 14px; height: 14px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	animation: pte-hero-bob 1.6s ease-in-out infinite;
}
@keyframes pte-hero-bob {
	0%, 100% { transform: rotate(45deg) translate(0, 0); }
	50%      { transform: rotate(45deg) translate(3px, 3px); }
}
.pte-hero__scroll:focus-visible { outline: 3px solid #fff; outline-offset: 4px; border-radius: 4px; }

@media (max-width: 768px) {
	.pte-hero__bg { min-height: 80vh; }
	.pte-hero__content { max-width: 100%; }
}
