/* PTE Annual Report footer — absolute-positioned to match Astro acc-footer pixel coordinates */

/* ── MOBILE ≤768px ──────────────────────────────────────────────────────── */
@media(max-width:768px){
  .pte-footer{min-height:0!important;padding:48px 20px 40px!important;overflow-x:hidden!important;}
  .pte-footer__grid{position:static!important;height:auto!important;display:flex!important;flex-direction:column!important;gap:32px!important;}
  .pte-footer__donate{position:static!important;left:auto!important;top:auto!important;width:100%!important;}
  .pte-footer .pte-footer__donate-btn{width:100%!important;max-width:320px!important;height:64px!important;font-size:20px!important;}
  .pte-footer__contact{position:static!important;left:auto!important;top:auto!important;width:100%!important;}
  .pte-footer__follow{position:static!important;left:auto!important;top:auto!important;}
  .pte-footer__social{margin-bottom:20px!important;}
  .pte-footer__legal{gap:24px!important;}
}

.pte-footer {
	position: relative;
	background: var(--pte-ink, #251e20);
	color: #fff;
	min-height: 452px;
	font-family: var(--pte-font);
}

/* Strip container so absolute children measure from .pte-footer */
.pte-footer .container {
	position: static !important;
	padding: 0 !important;
	max-width: none !important;
}

/* Grid as the positioning anchor */
.pte-footer__grid {
	position: relative;
	height: 452px;
}

/* ── Donate pill ─────────────────────────────────────────────────── */
/* Astro: left:143, top:88, width:360, height:83, radius:40.5px, font-size:28px, weight:500, color:#005474 */
.pte-footer__donate {
	position: absolute;
	left: 143px;
	top: 88px;
}
.pte-footer .pte-footer__donate-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 360px;
	height: 83px;
	background: #fff;
	color: #005474;
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	border-radius: 40.5px;
	text-decoration: none;
}
.pte-footer .pte-footer__donate-btn:hover,
.pte-footer .pte-footer__donate-btn:focus-visible {
	background: var(--pte-green, #00a576);
	color: #fff;
}

/* ── Contact Us ──────────────────────────────────────────────────── */
/* Astro: heading left:551, top:82; content left:551, top:116, width:326px, font-size:16px, line-height:26px */
.pte-footer__contact {
	position: absolute;
	left: 551px;
	top: 82px;
	width: 326px;
}
.pte-footer__heading {
	font-size: 18px;
	font-weight: 700;
	line-height: 1; /* must be explicit — theme h2 defaults set a large line-height */
	color: #fff;
	margin: 0 0 16px; /* heading 18px + 16px gap = 34px to content top = top:116-top:82 */
}
.pte-footer p {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #fff;
	margin: 0;
}
/* Blank-line gap between paragraphs — higher specificity beats .pte-footer p { margin:0 } */
.pte-footer p.pte-footer__addr,
.pte-footer p.pte-footer__phone {
	margin-bottom: 26px;
}
.pte-footer a { color: #fff; }
.pte-footer__inq a { text-decoration: underline; }

/* ── Follow Us ───────────────────────────────────────────────────── */
/* Astro: heading left:942, top:79; social at top:122; privacy at top:310 */
.pte-footer__follow {
	position: absolute;
	left: 942px;
	top: 79px;
}
.pte-footer__follow .pte-footer__heading {
	margin-bottom: 25px; /* 18px + 25px = 43px to social: top:122 - top:79 */
	line-height: 1;
}

/* ── Social icons ────────────────────────────────────────────────── */
/* Astro: 3 circles at left:943/985/1026 (from footer), top:122, 31×31px white */
/* From Follow column left (942): 943→1px, 985→43px, 1026→84px */
.pte-footer__social {
	display: flex;
	gap: 11px; /* 42px between left edges of 31px circles */
	margin-bottom: 157px; /* from social bottom (31px) to privacy: 310-(79+18+25+31)=157px */
}
.pte-footer__social a {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	background: #fff;
	color: var(--pte-ink, #251e20);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity .15s ease;
}
.pte-footer__social a:hover,
.pte-footer__social a:focus-visible { opacity: .7; }
.pte-footer__social svg { width: 15px; height: 15px; fill: currentColor; }

/* ── Legal links ─────────────────────────────────────────────────── */
/* Astro: Privacy at left:942, top:310; Terms at left:1050, top:310 */
/* From Follow column left (942): Privacy→0, Terms→108px */
.pte-footer__legal {
	display: flex;
	gap: 108px; /* 1050-942=108px between Privacy and Terms */
	font-size: 13px;
	font-weight: 300;
}
.pte-footer__legal a {
	color: #fff;
	text-decoration: none;
}
.pte-footer__legal a:hover,
.pte-footer__legal a:focus-visible { text-decoration: underline; }
