.hero-tile {
  --hero-tile-text-color: #FFFFFF;
  --hero-tile-title-font-size-mobile: 24px;
  --hero-tile-subtitle-font-size-mobile: 16px;
  --hero-tile-title-font-size-tablet: 40px;
  --hero-tile-subtitle-font-size-tablet: 22px;
  --hero-tile-title-font-size-desktop: 40px;
  --hero-tile-subtitle-font-size-desktop: 22px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--hero-tile-text-color);
}
.hero-tile__background, .hero-tile__content {
  grid-column: 1/2;
  grid-row: 1/2;
}
.hero-tile__background {
  width: 100%;
  height: 100%;
}
.hero-tile__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-tile__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem;
  z-index: 1;
  padding-top: 80px;
  position: relative;
}
.hero-tile__title {
  margin: 0;
  text-transform: uppercase;
  font-family: "Montserrat Semi", sans-serif;
  line-height: 135%;
  font-size: var(--hero-tile-title-font-size-mobile);
}
.hero-tile__subtitle {
  margin: 12px 0 0 0;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
  font-size: var(--hero-tile-subtitle-font-size-mobile);
}
.hero-tile__link {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-tile--full-height {
  width: 100%;
  height: calc(100vh - 46px);
}
@media (min-width: 992px) {
  .hero-tile--full-height {
    height: calc(100vh - 62px);
  }
}
.hero-tile--aspect-16-9 {
  width: 100%;
  aspect-ratio: 16/9;
}
.hero-tile--aspect-4-3 {
  width: 100%;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .hero-tile__content {
    padding-top: 120px;
  }
  .hero-tile__title {
    font-size: var(--hero-tile-title-font-size-tablet);
  }
  .hero-tile__subtitle {
    font-size: var(--hero-tile-subtitle-font-size-tablet);
  }
}
@media (min-width: 1200px) {
  .hero-tile__content {
    justify-content: center;
    padding-top: 0;
  }
  .hero-tile__title {
    font-size: var(--hero-tile-title-font-size-desktop);
  }
  .hero-tile__subtitle {
    font-size: var(--hero-tile-subtitle-font-size-desktop);
  }
}

/*# sourceMappingURL=style.css.map */
