.ts-image-hero__media {
  width: 100%;
  aspect-ratio: 1440 / 309;

  img {
    width: 100%;
    aspect-ratio: 1440 / 309;
    height: auto;
    object-fit: cover;
  }
}

.ts-image-hero__content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(25/10 * 1rem) 5vw;

  @container (width > calc(768/10 * 1rem)) {
    padding: calc(50/10 * 1rem) 5vw;
  }

  @container (width > calc(1200/10 * 1rem)) {
    padding: calc(89 / 10 * 1rem);
  }
}

.ts-image-hero__title {
  font-family: var(--font-family--roboto-flex);
  font-size: calc(26/10 * 1rem);
  letter-spacing: calc(0.5/10 * 1rem);
  font-weight: 800;
  line-height: 1;

  @container (width > calc(768/10 * 1rem)) {
    font-size: calc(40 / 10 * 1rem);
  }

  @container (width > calc(1200/10 * 1rem)) {
    font-size: calc(51 / 10 * 1rem);
  }
}