/**
 * OLM Gutenberg Additions — Cover Module
 *
 * CSS styles for Cover block overlay link.
 *
 * This file handles:
 *   - Positioning of the clickable overlay layer
 *   - Z-index stacking to ensure content remains above the link
 *   - Focus accessibility styling for keyboard users
 *
 * Generated by: Lumo 2.0 Max
 */

/* Overlay link covering the entire Cover block */
.olm-cover-link-overlay {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	text-decoration: none;
	background: transparent;
}

/* Ensure inner content stays above the overlay */
.wp-block-cover.olm-cover-is-linked .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
}

/* Focus outline for keyboard accessibility */
.olm-cover-link-overlay:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}