.anchor-block {
  --color-link: #0066cc;

  padding: 2.4rem 6.3rem 2.3rem 1.9rem;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  background: #ffffff;
  position: relative;
  width: 100%;

  @media only screen and (min-width: 768px) {
    padding: 3.7rem 2rem 3.3rem 2rem;
    max-width: 24.8rem;
  }
}

.anchor-block__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.6rem;
  display: block;
  word-break: break-word;
  hyphens: auto;
}

.anchor-block__description {
  margin: 1.6rem 0 2.2rem 0;
  font-size: 1.6rem;
}

.anchor-block__anchor-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 1rem;
  color: var(--color-link);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6rem;
  text-decoration: underline;

  &:hover {
    text-decoration: unset;
    color: var(--color-link);
  }

  &:focus {
    color: var(--color-link);
  }

  span {
    display: none;
    margin-bottom: 0.3rem;
  }

  svg {
    position: absolute;
    inset: auto 1.4rem 2.1rem auto;
  }

  @media only screen and (min-width: 768px) {
    span {
      display: block;
    }

    svg {
      position: relative;
      inset: unset;
    }
  }
}
