.HeroItem {
  position: relative;
  border-radius: var(--sizeButtonBorderRadius);
  z-index: var(--layerPageSecondaryZIndex);
}

@media (min-width: 48.01rem) {
  .HeroItem {
    flex-direction: row;
  }
}

.HeroItem-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--spaceMd);
  max-width: 33rem;
  z-index: var(--layerPageZIndex);
}

.HeroItem-content::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colorWhite);
  border-radius: 0.25rem;
  z-index: var(--layerNegativeZIndex);
}

@media (min-width: 48.01rem) {
  .HeroItem-content {
    padding: 1.5rem;
    margin: 1rem;
  }
}

.HeroItem .HeroItem-heading {
  margin-bottom: var(--spaceRg);
  color: var(--colorBrand);
  font-size: var(--textXs);
}

.HeroItem-title {
  margin-bottom: 1.5rem;
  font-size: var(--textXl);
  font-weight: 700;
}

.HeroItem-text {
  margin-bottom: 2.5rem;
}

.HeroItem picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: var(--sizeButtonBorderRadius);
  object-fit: cover;
  z-index: var(--layerNegativeZIndex);
}

/*# sourceMappingURL=hero-item.min.css.map */
