/* outline style */
.wp-block-button.is-style-outline >.wp-block-button__link:not( .has-background ):hover,
.wp-block-button.is-style-outline >.wp-block-button__link:not( .has-background ):focus {
	background-color: transparent;
	border-color: var(--wp--preset--color--theme-5);
	color: var(--wp--preset--color--theme-5);
}
/* glow style */
.wp-block-button.is-style-glow .wp-block-button__link {
	background: transparent none;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3),
				0 0 0 1px rgba(0, 0, 0, 0.3),
				inset 0 0 6px var(--wp--preset--color--theme-2),
				0 0 6px var(--wp--preset--color--theme-2);
	text-shadow:  0 0 10px var(--wp--preset--color--theme-2);
}
.wp-block-button.is-style-glow >.wp-block-button__link:not(.has-background):hover,
.wp-block-button.is-style-glow >.wp-block-button__link:not(.has-background):focus {
	background: transparent none;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3),
				0 0 0 1px rgba(0, 0, 0, 0.3),
				inset 0 0 12px var(--wp--preset--color--theme-2),
				0 0 12px var(--wp--preset--color--theme-2);
	color: var(--wp--preset--color--theme-2);
	filter: brightness(150%);
}
