/* BLOG HERO */
.blog-page-hero {
	position: relative;
	padding: 90px 24px 80px;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: url('https://readthinkcode.org/wp-content/uploads/2026/04/STEM-makerspace-micro-bit-traffic-light.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.blog-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.44) 0%,
		rgba(0,0,0,0.22) 45%,
		rgba(0,0,0,0.08) 100%
	);
	z-index: 1;
}

.blog-page-hero__content {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: 0 auto;
	padding: 30px 32px;
	border-radius: 24px;
	background: rgba(255,255,255,0.10);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255,255,255,0.18);
}

.blog-page-hero__eyebrow {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
}

.blog-page-hero__title {
	margin: 0 0 14px;
	font-size: clamp(2.3rem, 4vw, 3.8rem);
	line-height: 1.08;
	color: #ffffff;
	text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.blog-page-hero__text {
	max-width: 660px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.7;
	color: #f5f8fb;
}

@media (max-width: 900px) {
	.blog-page-hero {
		padding: 72px 20px 64px;
		min-height: 340px;
	}

	.blog-page-hero__content {
		padding: 24px 20px;
	}
}

@media (max-width: 600px) {
	.blog-page-hero__title {
		font-size: 2.3rem;
	}

	.blog-page-hero__text {
		font-size: 16px;
	}
}