/* CCH — Hero cover with giant background word + foreground override
   Pattern: cover with className="hero-cover" + child <span class="hero-bg-text">
   containing one uppercase word. */

.hero-cover {
	position: relative;
	overflow: hidden;
	background: transparent;
	min-height: calc(clamp(3.5rem, 13vw, 10rem) + 2rem);
	padding: 1rem 0;
}
.hero-cover .wp-block-cover__inner-container > *:not(.hero-bg-text) {
	position: relative;
	z-index: 2;
}
.hero-cover .hero-bg-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Cooper Black", "Georgia", serif;
	font-size: clamp(3.5rem, 13vw, 10rem);
	color: #d4a017;
	opacity: 1;
	z-index: 1;
	pointer-events: none;
	user-select: none;
	letter-spacing: -0.02em;
	line-height: 1;
	text-transform: uppercase;
	margin: 0;
}
/* Override WP cover's default white text — hero foreground is ink */
.hero-cover .wp-block-cover__inner-container > p,
.hero-cover .wp-block-cover__inner-container > h1,
.hero-cover .wp-block-cover__inner-container > h2 {
	color: var(--wp--preset--color--ink) !important;
}
