body { outline: 10px solid hotpink !important; }


.wx-hero {
	position: relative;
	padding: clamp(4rem, 8vw, 7rem) 1.5rem;
	background:
		radial-gradient(1200px 400px at 20% -10%, rgba(255,255,255,.15), transparent 60%),
		linear-gradient(135deg, #1e293b, #020617);
	color: #fff;
	overflow: hidden;
}

.wx-hero.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.wx-hero__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	gap: 1.25rem;
}

/* Title */
.wx-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0;
}

/* Subtitle */
.wx-hero__sub {
	max-width: 46ch;
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255,255,255,.85);
}

/* Buttons */
.wx-hero__buttons {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
}

.wx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	background: #ffffff;
	color: #020617;
	transition: transform .15s ease, box-shadow .15s ease;
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.wx-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

/* Secondary buttons (if you add a class later) */
.wx-btn.is-secondary {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.35);
	box-shadow: none;
}

/* Editor friendliness */
.block-editor-block-list__block .wx-hero {
	outline: 1px dashed rgba(255,255,255,.25);
	outline-offset: -8px;
}