.bannerHeroMultiple {
  
  --heroHeight: 470px;
  
  --maxWidth: 1400px;

  --heroH2Size: 32px;
  --heroH3Size: 24px;
  --heroSpacing: 24px;
  --heroSpacing: 24px;
  --brandButtonWidth: 100%;

  @include media(">=uol-media-s") {
    --heroH2Size: 48px;
    --heroH3Size: 32px;
    --heroSpacing: 24px;
    --brandButtonWidth: inherit;
  }

  height: var(--heroHeight);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  width: 100%;
  color: white;
  display: flex;
  position: relative;
  width: 100%;
  min-height: 400px;

  .bannerHeroSingle {
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .bannerHeroContent {
    position: absolute;
    width: calc(100% - 2 * var(--heroSpacing));
    max-width: calc(var(--maxWidth) - 2 * var(--heroSpacing));
    position: absolute;
    place-self: center; 
    inset: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    > * {
      margin: 0 0  var(--heroSpacing);
    }
    .bannerHeroLogoOuter svg {
      fill: white;
      max-height: 90px;
      max-width: 100%;
    }
    h2 {
      font-size: var(--heroH2Size);
      font-weight: 600;
    }

    h3 {
      font-size: var(--heroH3Size);
    }

    p {
      font-size: var(--heroPSize);
    }

    & :first-child {
      margin-top: 0;
    }

    & :last-child {
      margin-bottom: 0;
    }
  }
}

// TODO: to put in new buttons component (when built)

.brandButton {
  width: var(--brandButtonWidth);
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0 32px;
  height: 52px;
  margin-right: 0;
  display: inline-flex;
  align-items: center;

  @include media(">=uol-media-s") {
    margin-right: 16px;
  }
}

.brandButton:not(:last-child) {
  margin-bottom: 20px;
}

// TODO: to put in some other component - can probably do with a mixin
.bgbrand-vivid-green {background: $brand-vivid-green;}
.bgbrand-teal {background: $brand-teal;}
.bgbrand-dark-blue {background: $brand-dark-blue;}
.bgbrand-pink {background: $brand-pink;}
.bgbrand-white {background: $brand-white;}

.fgbrand-black {color: $brand-black;}




