/* Disabled call-to-action styling. Added August 2026.
   Scoped to links and buttons on purpose: the theme's scroll-animation
   script copies data-* attributes onto its own wrapper divs, so a bare
   [data-disabled] selector would also neutralise sibling links. */
a[data-disabled="true"],
button[data-disabled="true"]{
  pointer-events: none;
  cursor: default;
  opacity: .45;
  box-shadow: none !important;
  text-decoration: none !important;
}
a.btn[data-disabled="true"],
button[data-disabled="true"]{
  filter: grayscale(100%);
  background-color: #b9b9b9 !important;
  border-color: #b9b9b9 !important;
  color: #ffffff !important;
}
a.nav-link[data-disabled="true"]{
  opacity: .4;
  filter: none;
}
