a {
  color: var(--si-color-dark-blue);
  cursor: pointer;
  font-weight: var(--si-fw-semibold);
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: all 0.35s ease-in-out;
}
a:hover, a:focus {
  color: var(--si-color-dark-blue);
  text-decoration: none;
}
a.c-link-image {
  background-image: linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), currentColor calc(100% - 1px), currentColor 100%);
  background-position: 0 calc(100% - 0px);
  background-repeat: no-repeat;
  background-size: 0;
  display: inline;
  padding-bottom: 2px;
  position: relative;
  text-decoration: none;
  transition: background-size 0.2s cubic-bezier(0.37, 0, 0.63, 1);
}
a.c-link-image:hover, a.c-link-image:focus {
  background-size: 100%;
  text-decoration: none;
}
a.c-link-image:hover, a.c-link-image:focus {
  background-size: 100%;
  text-decoration: none;
}
@media (min-width: 768px) {
  a {
    text-underline-offset: 5px;
  }
}
a.ck-anchor {
  text-decoration: none;
  color: var(--si-color-black);
  font-weight: inherit;
  cursor: none;
}

a.arrow-link {
  font-size: var(--si-fs-body-18);
  line-height: var(--si-lh-body-18);
  color: var(--si-color-black);
  cursor: pointer;
  display: inline-block;
  font-family: var(--si-ff-sans);
  position: relative;
  text-decoration: none;
  transition: none;
}
a.arrow-link::after {
  background-color: var(--si-color-black);
  background-position: 0 calc(100% - 0px);
  background-repeat: no-repeat;
  background-size: 0;
  block-size: 28px;
  content: "";
  display: inline-block;
  inline-size: 28px;
  margin-inline-start: 4px;
  -webkit-mask: var(--si-i-arrow-right) no-repeat center;
          mask: var(--si-i-arrow-right) no-repeat center;
  background-image: linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), currentColor calc(100% - 1px), currentColor 100%);
  transition: transform 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  transform: translateX(0);
  vertical-align: bottom;
  inset-block-end: -2px;
  position: relative;
}
a.arrow-link:not(.button):hover, a.arrow-link:not(.button):focus {
  color: var(--si-color-dark-blue);
  text-decoration: underline;
}
a.arrow-link:not(.button):hover::after, a.arrow-link:not(.button):focus::after {
  background-color: var(--si-color-dark-blue);
}
a.arrow-link:hover:after, a.arrow-link:focus:after {
  transform: translateX(4px);
}

a svg.ext {
  opacity: 0;
  width: 0;
  transition: 0.3s opacity ease-in-out, 0.3s width ease-in-out;
  margin-left: 0;
}
a:hover .extlink,
a:hover svg.ext, a:focus .extlink,
a:focus svg.ext {
  opacity: 1;
  width: 1em;
  margin-left: 4px;
}
a:hover .extlink path,
a:hover svg.ext path, a:focus .extlink path,
a:focus svg.ext path {
  fill: currentColor;
}
a:hover .extlink path,
a:hover svg.ext path, a:focus .extlink path,
a:focus svg.ext path {
  stroke: currentColor;
}

.toolbar a {
  text-underline-offset: initial;
}