/* ===== Compact page hero (shared by listing pages) ===== */
.page-hero {
	position: relative;
	background: linear-gradient(135deg, #593604 0%, #140c01 100%);
	padding: 24px 0 38px;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	top: -220px;
	right: -150px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.page-hero::after {
	content: "";
	position: absolute;
	bottom: -180px;
	left: -120px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.page-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 20px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.page-hero-inner h1 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 800;
	letter-spacing: -0.3px;
	line-height: 1.2;
}

.page-hero-inner p {
	margin: 0;
	max-width: 720px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 767.98px) {
	.page-hero {
		padding: 18px 0 30px;
	}

	.page-hero-inner h1 {
		font-size: 23px;
	}

	.page-hero-inner p {
		font-size: 13px;
	}
}