section.hero.is-hero-bar {
  background-color: $hero-bar-background;
  border-bottom: $light-border;

  .hero-body {
    padding: $default-padding;

    .level-item {
      &.is-hero-avatar-item {
        margin-right: $default-padding;
      }

      > div > .level {
        margin-bottom: $default-padding * .5;
      }

      .subtitle + p {
        margin-top: $default-padding * .5;
      }
    }

    .button {
      &.is-hero-button {
        background-color: rgba($white, .5);
        font-weight: 300;
        @include transition(background-color);

        &:hover {
          background-color: $white;
        }
      }
    }
  }
}

.hero.is-fullheight {
  max-height: 100vh;
  min-height: 0vh;
}