@import url('../components/c-button.selectors.css');
@import url('../components/c-card.selectors.css');
@import url("../tools/selectors.css");
@import url('../tools/x-link.css');

@custom-selector :--exempt-link
  :--c-button,
  :--c-card,
  .alert-link;

a:where(:not(:--exempt-link)) {
  @mixin link;
}
a:where(:not([href])) {
  @mixin link--disabled;
}
a:where(:not(:--exempt-link)):hover {
  @mixin link--hover;
}
a:where(:not(:--exempt-link)):active {
  @mixin link--active;
}
