/* AMT Registry footer CTA banner. Enqueued in <head> so the styles are
   available wherever the banner renders (including footer widgets), and so the
   shortcode never has to inject an inline <style> block into post content
   (which wpautop would wrap in empty <p> tags, creating stray whitespace). */
/* Self-contained box-sizing so the banner never depends on a global reset.
   Without this, width:100% + horizontal padding overflows the viewport (off
   screen on mobile) on any page that does not load the quiz bundle. */
.amt-cta-banner,
.amt-cta-banner *{
	box-sizing:border-box;
}
.amt-cta-banner{
	background:#003042;
	width:100%;
	max-width:100%;
	margin:0;
	padding:40px 20px;
	overflow-x:hidden;
	font-family:'Spline Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}
.amt-cta-inner{
	max-width:1040px;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:28px;
}
.amt-cta-text{flex:1;min-width:0;}
.amt-cta-kicker{
	color:#1f9cbd;
	font-weight:600;
	letter-spacing:.12em;
	text-transform:uppercase;
	font-size:12px;
	margin:0 0 8px;
}
.amt-cta-head{
	color:#ffffff;
	font-size:26px;
	line-height:1.2;
	font-weight:800;
	margin:0 0 8px;
	font-family:'Archivo','Spline Sans',sans-serif;
}
.amt-cta-sub{
	color:#bcd3dc;
	font-size:15px;
	line-height:1.5;
	margin:0;
	max-width:560px;
}
.amt-cta-btn{
	flex-shrink:0;
	background:#1f9cbd;
	color:#ffffff;
	text-decoration:none;
	font-weight:700;
	font-size:16px;
	padding:15px 28px;
	border-radius:3px;
	font-family:'Archivo','Spline Sans',sans-serif;
	box-shadow:0 5px 0 #167890;
	transition:transform .12s ease, box-shadow .12s ease;
	white-space:nowrap;
}
.amt-cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 0 #167890;color:#fff;}
.amt-cta-btn:active{transform:translateY(2px);box-shadow:0 2px 0 #167890;}

@media (max-width:760px){
	.amt-cta-inner{
		flex-direction:column;
		align-items:flex-start;
		gap:20px;
	}
	.amt-cta-head{font-size:22px;}
	.amt-cta-btn{width:100%;text-align:center;}
}
