/* Alexander Rudolph Manager – Page Hero (single image + eyebrow) */

/* Prevents the 100vw full-bleed trick below from introducing a horizontal
   scrollbar. Safe here — this stylesheet only loads on pages using
   [arm_page_hero]. */
body {
	overflow-x: hidden;
}

.arm-page-hero {
	position: relative;
	/* Full-bleed, same reasoning as .arm-hero — always spans the viewport
	   edge-to-edge even if a page builder wraps it in a boxed container. */
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	height: 64vh;
	min-height: 400px;
	overflow: hidden;
	background: #0e1116;
}
.arm-page-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.arm-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 32%, transparent 58%, rgba(0, 0, 0, .5));
}
.arm-page-hero-eyebrow {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	padding: 24px clamp(18px, 4vw, 48px);
	color: #fff;
	font-family: "Jost", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .28em;
	text-transform: uppercase;
	text-shadow: 0 1px 14px rgba(0, 0, 0, .7);
}

@media (max-width: 480px) {
	.arm-page-hero {
		height: 48vh;
		min-height: 320px;
	}
}
