.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: var(--type-body-l-size);
  font-weight: var(--type-body-l-weight);
  line-height: var(--type-body-l-line-height);
  color: var(--functional-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease, border-radius 0.15s ease;
}

.link:hover,
.link:focus-visible {
  color: var(--accents-olive);
  border-radius: 50px;
}

.link:focus-visible {
  outline: 2px solid var(--accents-olive);
  outline-offset: 2px;
}
