.button-link {
  display: inline-block;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 44px;
  font-family: var(--font-sans);
  text-align: center;
  cursor: pointer;
}
.button-link[aria-disabled=true],
.button-link:disabled {
  background: #d1d1d1;
  pointer-events: none;
  cursor: default;
}
.button-link.subtle {
  background: transparent;
  color: #111111;
  padding: 0;
}
