/* =================================================
   Accessibility Interview Test Overrides
   Page: /accessibility-manual-test-page
   Purpose: Introduce accessibility issues for manual testing
================================================= */

/* 1. Remove visible focus indicators */
 a:focus,
 button:focus,
 input:focus,
 select:focus,
 textarea:focus
{
  outline: none !important;
  box-shadow: none !important;
}


/* 2. Remove link underlines (links indicated by color only) */
body.path-accessibility-manual-test-page a {
  text-decoration: none !important;
}


/* 3. Reduce contrast in footer and social links */
 footer ul:not(.contextual-links) a,
 .region-footer a,
 .menu--social-media a,
 footer,
.text-white,
footer.site-footer .region-footer-first .block-menu ul.nav li.nav-item{
  color: #9a9a9a !important;
}

 .hover-only-button {
  opacity: 0;
  transition: opacity .2s ease;
}

.a11y-card:hover .hover-only-button {
  opacity: 1;
}