/**
 * Hero — Centered  (_hero.css)
 *
 * Scoped entirely to .vsk-hero so this stylesheet — loaded via
 * wp_enqueue_block_style() — cannot bleed into other Group blocks.
 *
 * All colours reference GP Global Color CSS variables (--{slug}) defined on
 * :root by GP Premium. Never use raw hex values here.
 */

/* ── Wrapper ─────────────────────────────────────────────────────────────── */

.vsk-hero {
	background-color: var(--brand-deep);
	color: var(--fg-invert);
	padding-block: clamp(4rem, 10vw, 7rem);
	text-align: center;
}

/* ── Headline ────────────────────────────────────────────────────────────── */

.vsk-hero__headline {
	color: var(--fg-invert);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin-block-end: 1rem;
}

/* ── Subtitle ────────────────────────────────────────────────────────────── */

.vsk-hero__subtitle {
	color: var(--fg-invert);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.6;
	opacity: 0.8;
	max-width: 56ch;
	margin-inline: auto;
	margin-block-end: 2.5rem;
}

/* ── CTA Button ──────────────────────────────────────────────────────────── */

.vsk-hero__cta .wp-block-button__link {
	background-color: var(--accent);
	color: var(--fg-invert);
	border: 2px solid transparent;
	padding-block: 0.875rem;
	padding-inline: 2rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	border-radius: 4px;
	transition: background-color 0.18s ease, outline-offset 0.1s ease;
}

.vsk-hero__cta .wp-block-button__link:hover {
	background-color: var(--accent-hover);
	color: var(--fg-invert);
}

.vsk-hero__cta .wp-block-button__link:focus-visible {
	background-color: var(--accent-hover);
	color: var(--fg-invert);
	outline: 2px solid var(--fg-invert);
	outline-offset: 3px;
}