.social {
  @extend %unstyled-list;
  display: flex;
  justify-content: center;

  &__link {
    @extend %transition;
    color: $c-social;
    margin: rem-calc(5);

    .site-header & {
      color: $c-social--header;
    }

    .site-footer & {
      color: $c-social--footer;
    }

    .site-main {
      color: $c-social--content;
    }

    &.facebook {

      &:hover {
        color: $c-facebook;
      }
    }

    &.googleplus {

      &:hover {
        color: $c-google-plus;
      }
    }

    &.twitter {

      &:hover {
        color: $c-twitter;
      }
    }

    &.linkedin {

      &:hover {
        color: $c-linkedin;
      }
    }

    &.instagram {

      &:hover {
        color: $c-instagram;
      }
    }

    &.pinterest {

      &:hover {
        color: $c-pinterest;
      }
    }

    &.youtube {

      &:hover {
        color: $c-youtube;
      }
    }
  }

  &__icon {
    height: rem-calc(40);
    width: rem-calc(40);
  }

  @include breakpoint($small-up) {
    justify-content: flex-start;

    &__link {
      margin: 0;
    }
  } // $small-up
}
