.wrapper-masthead {
  margin-bottom: 50px;
  background-color: $lightGray;
}

.masthead {
  padding: 15px 0;

  @include mobile-breakpoint {
    text-align: center;
  }
}

.site-avatar {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 15px;

  @include mobile-breakpoint {
    float: none;
    display: block;
    margin: 0 auto;
  }

  img {
    border-radius: 5px;
  }
}

.site-info {
  float: left;

  @include mobile-breakpoint {
    float: none;
    display: block;
    margin: 0 auto;
  }
}

.site-name {
  line-height: 1;
  margin: 0 0 7px;
  color: $darkGray;
  cursor: pointer;
  font-family: $helveticaNeue;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 1px;
}

.site-description {
  @include absolute-hidden;
}

.header-options {
  overflow: hidden;
  padding-left: 20px;

  & > * {
    float: right;
  }

  @include mobile-breakpoint {
    padding-left: 0;

    & > * {
      float: none;
    }
  }
}

nav {
  font-family: $helveticaNeue;
  font-size: 20px;

  @include mobile-breakpoint {
    display: block;
  }

  a {
    margin-left: 15px;
    color: $darkGray;
    text-align: right;
    font-weight: 300;
    letter-spacing: 1px;

    @include mobile-breakpoint {
      margin: 0 10px;
      color: $blue;
    }
  }
}