.ml-hero {
  display: grid;
  grid: 1fr auto / 1fr;
  height: 550px;
}

.ml-hero-header,
.ml-hero-video-button {
  grid-column: 1;
  place-self: center;
  z-index: 1;
}

.ml-hero-header {
  color: #fff;
  grid-row: 1;
  margin: 24px;
  text-align: center;
}

.ml-hero-title {
  font: 400 44px / 52px Google Sans, sans-serif;
  margin: 0;
}

.ml-hero-subtitle {
  font: 400 20px / 28px Google Sans, sans-serif;
}

.ml-hero-video {
  filter: brightness(50%);
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ml-hero-video-button {
  border-radius: 20px;
  display: grid;
  grid-row: 2;
  height: 40px;
  margin: 24px;
  padding: 0;
  place-content: center;
  width: 40px;
}

.ml-hero-video-button-icon.material-icons {
  position: static;
}

@media (max-width: 800px) {
  .ml-hero {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .ml-hero-header {
    margin: 16px 16px 0;
  }

  .ml-hero-title {
    font-size: 24px;
    line-height: 32px;
  }

  .ml-hero-subtitle {
    font-size: unset;
    line-height: unset;
  }

  .ml-hero-video-button {
    margin: 0 0 16px;
  }
}
