.HeroItem {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
  overflow: hidden;
  min-height: 20rem;
}

.HeroItem-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, transparent 62.5%);
}

.HeroItem-contentWrapper {
  max-width: 35rem;
  top: 4.5rem;
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 80rem) {
  .HeroItem-contentWrapper {
    max-width: unset;
    top: unset;
    position: relative;
    gap: 1rem;
  }
}

.HeroItem-contentFrame {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

@media (min-width: calc(80rem + 1px)) {
  .HeroItem-contentFrame {
    width: 90%;
  }
}

.HeroItem-title {
  font-size: var(--textXl);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 80rem) {
  .HeroItem-title {
    font-size: var(--textLg);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
  }
}

.HeroItem-title:last-child {
  margin-bottom: 0;
}

.HeroItem-text {
  color: #fff;
  margin: 0;
}

@media (max-width: 80rem) {
  .HeroItem-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
  }
}

.HeroItem-text:last-child {
  margin-bottom: 0;
}

.HeroItem img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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