/**
 * PPB Core — Skip to content link.
 * Block: ppb-skip-link
 *
 * Visually hidden until focused; reveals in a fixed position at top-left with a solid background
 * so it stays legible over any hero.
 */

.ppb-skip-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	z-index: 10000;
}

.ppb-skip-link:focus,
.ppb-skip-link:focus-visible {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: nowrap;
	background: var(--color-primary);
	color: var(--ppb-color-surface-page, #fff);
	font-family: var(--font-display, inherit);
	font-size: 0.95rem;
	text-decoration: none;
	border-radius: var(--ppb-radius-sm, 0.25rem);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	outline: none;
}
