/* Remove focus outline for block editor blocks */
:where(.wp-site-blocks *:focus) {
  outline: none;
}

/* Underline links on hover/focus except inside .is-style-main */
a:hover:not(:is(.is-style-main a, .is-style-footer a)),
a:focus:not(:is(.is-style-main a, .is-style-footer a)) {
  text-decoration: underline;
}

/* Remove tap highlight on touch devices (common interactive elements) */
@supports (-webkit-tap-highlight-color: transparent) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Smooth scroll behaviour for in-page links */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
