.hp-hero {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hp-hero ul {
  list-style-type: none;
  margin-bottom: 0;
}

.hp-hero__wrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 64rem) {
  .hp-hero__wrapper {
    gap: var(--anrt-spacing-100);
  }
}

.hp-hero__left {
  column-gap: var(--anrt-grid-gap);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hp-hero__left>* {
  grid-column: 1 / -1;
}

@media (min-width: 64rem) {
  .hp-hero__left>* {
    grid-column: 1 / span 6;
    padding-right: var(--anrt-spacing-050);
  }
}

.hp-hero__left,
.hp-hero__right {
  flex: 0 0 50%;
}

/* Content */
.hp-hero__content {
  color: var(--anrt-color-white);
  background-color: var(--anrt-color-primary);
  padding-top: var(--anrt-spacing-200);
  padding-bottom: var(--anrt-spacing-500);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 64rem) {
  .hp-hero__content {
    background-color: transparent;
    color: var(--anrt-color-text);
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }
}

.hp-hero__content .slimline-icon.hero__icon-brand svg {
  width: 200%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 64rem) {
  .hp-hero__content .slimline-icon.hero__icon-brand svg {
    display: none;
  }
}

.hp-hero h1 {
  color: var(--anrt-color-white);
}

@media (min-width: 64rem) {
  .hp-hero h1 {
    color: var(--anrt-color-primary-b);
    margin-top: var(--anrt-spacing-200);
  }
}

.hp-hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--anrt-spacing-100);
  margin-top: calc(var(--anrt-spacing-500) * -1);
  margin-bottom: var(--anrt-spacing-200);
}

@media (min-width: 64rem) {
  .hp-hero__stats {
    margin-top: 0;
  }
}

.hp-hero__stats__badges-link {
  align-self: center;
}

.hp-hero__link {
  margin-top: var(--anrt-spacing-100);
}

.hp-hero__link a {
  color: var(--anrt-color-white);
}

@media (min-width: 64rem) {
  .hp-hero__link a {
    color: var(--anrt-color-primary);
  }
}

/* Image */
.hp-hero__image {
  display: none;
}

@media (min-width: 64rem) {
  .hp-hero__image {
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: -1;
  }

  .hp-hero__image * {
    height: 100%;
  }

  .hp-hero__image img {
    mask-image: url('../../../assets/images/hp-hero-clip.svg');
    mask-repeat: no-repeat;
    mask-size: 100%;
    object-fit: cover;
    width: 100%;
  }
}
