/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://example.com/
Description: Child theme for the Twenty Twenty-Five theme
Author: Your Name
Author URI: https://example.com/
Template: twentytwentyfive
Version: 1.0.1
*/

/* ---------------------------------------------------------
   Links — focus ring
   The browser default is `outline: auto`, which it draws from
   :focus. That means a mouse click leaves a ring behind.
   Suppress it for pointer focus only, and draw our own ring for
   keyboard focus so tabbing through the site stays visible.
   --------------------------------------------------------- */
a:focus:not(:focus-visible) {
	outline: none;
}
a:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent-1);
	outline-offset: 4px;
}