/*
 * Global editor styles — button variants and other overrides
 * that the theme SCSS provides on the front end but the editor lacks.
 *
 * Enqueued via enqueue_block_editor_assets so it applies everywhere
 * in the block editor, regardless of which blocks are active.
 */

/* CTA arrow on all buttons (except text-link variant) */
.wp-block-button:not(.is-style-text-link) .wp-block-button__link::after {
	content: '';
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	margin-left: 0.5rem;
	vertical-align: middle;
	background-color: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M6.986 0L7.224 0.238V6.062H6.23V1.736L0.742 7.224L0 6.482L5.488 0.994001H1.162V0H6.986Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M6.986 0L7.224 0.238V6.062H6.23V1.736L0.742 7.224L0 6.482L5.488 0.994001H1.162V0H6.986Z'/%3E%3C/svg%3E");
	mask-size: contain;
	mask-repeat: no-repeat;
}

/* Text Link button style */
.wp-block-button.is-style-text-link .wp-block-button__link {
	background: none;
	border: none;
	padding: 0;
	min-width: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0;
	text-transform: capitalize;
	text-decoration: none;
	color: inherit;
}

/* Alternate (secondary) button style */
.wp-block-button.is-style-alternate .wp-block-button__link {
	background-color: transparent;
	border: 1px solid currentcolor;
}

/* Outline (ghost) button — transparent with a thin border, inherits the
   surrounding text colour so it reads correctly on dark or light sections. */
.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	border: 1px solid currentcolor;
	color: inherit;
}

/* Navigation active state — underline the current page's nav item */
.wp-block-navigation
	.wp-block-navigation-item.current-menu-item
	.wp-block-navigation-item__content,
.wp-block-navigation
	.wp-block-navigation-item.current_page_item
	.wp-block-navigation-item__content,
.wp-block-navigation
	.wp-block-navigation-item.current-menu-parent
	.wp-block-navigation-item__content {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.5em;
}

/* Optional CTA button spacing on reused V2 blocks */
.wp-block-terrawatt-market-snapshot__cta,
.wp-block-terrawatt-pipeline-overview__cta,
.wp-block-terrawatt-platform-steps__cta {
	margin-top: var(--wp--preset--spacing--40, 2rem);
}

