.arrow-link {
  --text-color: #173f6c;
  --background-color: #173f6c;
  --background-color--hover: #5d2e8f;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  align-items: center;

  color: var(--text-color);
  display: inline-flex;

  flex-flow: row nowrap;
  justify-content: flex-start;
  line-height: 1;
  margin: 0;
  position: relative;

  z-index: 5;
}

.arrow-link__icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  display: inline-flex;

  flex-direction: row;
  flex-shrink: 0;

  justify-content: center;
  margin-right: 12px;
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;

  background-color: var(--background-color);
  box-shadow: 0 0 0 1px var(--background-color);
  transition: background-color 300ms ease, box-shadow 300ms ease;

  svg {
    width: calc(15/16 * 1rem);
    height: 1rem;
  }
}

.arrow-link__text {
  text-wrap: balance;
}

.arrow-link:hover,
.arrow-link:focus {
  .arrow-link__icon {
    background-color: var(--background-color--hover);
    box-shadow: 0 0 0 5px var(--background-color--hover);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arrow-link__icon {
    transition: none;
  }
}
