/*
Theme Name: Twenty Twenty-Five BuildMatrixTech
Description: Child theme of Twenty Twenty-Five for BuildMatrixTech. Adds a premium Hero Banner section to the Home page only.
Author: BuildMatrixTech
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-buildmatrixtech
*/

/*
 * The parent theme's `:where(.wp-site-blocks *:focus)` rule (see
 * twentytwentyfive/style.css) draws a solid outline on every `:focus` —
 * which browsers also set on a plain mouse click/tap, not only keyboard
 * navigation — so a rectangular box was appearing on click throughout the
 * mega menu, footer links, and buttons. `:focus-visible` reliably matches
 * only keyboard-triggered focus, so suppressing the outline solely when
 * focus is NOT `:focus-visible` removes the click/tap box while leaving
 * the parent's outline fully intact for real keyboard users (Tab, arrow
 * keys, etc.) — nothing about keyboard focus behavior changes here.
 */
:where(.wp-site-blocks *:focus:not(:focus-visible)) {
	outline: none;
}

/* Same click/tap cleanup for mobile Safari/Chrome's gray tap-highlight
   flash, independent of the outline above. */
.wp-site-blocks a,
.wp-site-blocks button {
	-webkit-tap-highlight-color: transparent;
}
