.content__heading {
  width: 100%;
}

.content-heading__hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 300px;
  position: relative;
}

.content-heading__hero-background {
  background-color: var(--color-primary--1);
  display: grid;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  min-height: 600px;
}

.content-heading__hero-content {
  max-width: 450px;
  color: white;
}

.content-heading__hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.content-heading__hero-subtitle {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
}

.content-heading__hero-image {
  display: none;
}

@media (min-width: 1000px) {
  .content-heading__hero {
    grid-template-columns: 7fr 5fr;
    min-height: auto;
  }

  .content-heading__hero-background {
    grid-column: 1 / -1;
  }

  .content-heading__hero-content {
    grid-column: 1;
  }

  .content-heading__hero-image {
    display: block;
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    z-index: 1;
  }

  .content-heading__hero-image img {
    width: 100% !important;
    height: auto !important;
    max-width: none;
    display: block;
  }

  .content-heading__hero-title {
    font-size: 3.5rem;
    line-height: 120%;
  }

  .content-heading__hero-subtitle {
    font-size: 2rem;
    line-height: 120%;
  }
}



@media (min-width: 1250px) {
  .content-heading__hero-content {
    max-width: 500px;
  }
  .content-heading__hero-title {
    font-size: 4rem;
  }

  .content-heading__hero-subtitle {
    font-size: 2.444rem;
  }
}
