.ts-hero {
  max-height: none;
  height: auto;
  min-height: 50vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ts-hero img.hero-image {
  height: 100%;
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.ts-hero .hero-content {
  position: relative;
  z-index: 1;
  color: white;
  line-height: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 750px;
  margin: 0 auto;
  text-wrap: balance;
}
.ts-hero .hero-content * {
  color: white;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 900px) {
  .ts-hero {
    height: 500px;
    min-height: auto;
  }
  .ts-hero .hero-content * {
    color: white;
    line-height: 1.4;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .ts-hero.ts-hero-full-width {
    margin: 0 calc((1200px - 100vw) / 2);
    max-width: none;
  }
}/*# sourceMappingURL=block-ts-hero.css.map */