a {
  color: var(--primary);
  transition: color var(--transition);
  overflow-wrap: break-word;
}

a:hover {
  color: var(--secondary);
}

a:not([href]) {
  color: var(--secondary);
}

.link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 5px;
  padding: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  vertical-align: middle;
}
.link span {
  text-align: center;
  line-height: 1;
}
.link[data-flip=true] {
  flex-direction: row-reverse;
}
.link[data-style=button] {
  max-width: calc(100% - 10px - 10px);
  min-height: 40px;
  margin: 10px;
  padding: 5px 10px;
  border-radius: var(--rounded);
  background: var(--primary);
  color: var(--background);
}
.link[data-style=button]:hover {
  background: var(--secondary);
}

/*# sourceMappingURL=link.css.map */