.c-link-group {
	text-align: center;
  margin: 1rem 0;

  @media all and (min-width: 47em) {
    display: flex;
    justify-content: center;
  }

  * {
    @media all and (max-width: 751px) {
      margin-left: auto;
      margin-right: auto;
    }
  }
}

.c-link-group__link {
  display: block;
  font-size: .8rem;
  padding: 12px 0;
  text-decoration: none;

  @media all and (min-width: 47em) {
    display: inline-block;
    margin: 0 25px;
    padding: 4px 0;
  }

  &:hover,
  &:focus {
    text-decoration: underline;

    svg {
      color: var(--color-link-group-svg);
    }
  }

  .icon {
    height: 20px;
    vertical-align: middle;
    width: 20px;
  }
}

label.c-link-group__link {
  cursor: pointer;

  &:hover,
  &:focus {
    text-decoration: none;

    span {
      text-decoration: underline;
    }
  }

  [type="checkbox"] {
    margin-right: -20px;
    opacity: 0;
  }

  svg {
    vertical-align: bottom;
  }
}

.c-link-group__checkbox:checked {
  + svg #check-square-regular-checkmark {
    fill: var(--color-link-group-svg);
  }
}
