.keyboard-input .text-link:focus {
  box-shadow: 0 0 0 1px var(--colour-one);
  outline: none;
}

.text-link {
  color: var(--colour-link);
  text-decoration: underline;
  cursor: pointer;
}
.text-link:hover {
  text-decoration: none;
}
.text-link--alt {
  text-decoration: none;
  color: inherit;
}
.text-link--alt:hover {
  text-decoration: underline;
}
.text-link--dark {
  color: var(--colour-title) !important;
}
.theme--2 .text-link {
  color: currentColor !important;
}
a .text-link {
  text-decoration: none;
}
a:hover .text-link {
  text-decoration: underline;
}
.text-link > span {
  vertical-align: middle;
}
.has-text.has-icon-pre.text-link .icon-pre {
  margin-right: calc(var(--spacing-internal) / 2);
}
.has-text.has-icon-post.text-link .icon-post {
  margin-left: calc(var(--spacing-internal) / 2);
}