.tc-hero {
  /* Product CTAs */
}
.tc-hero__left-figure {
  bottom: 0;
  left: 0;
  margin: unset;
  max-width: 30vw;
  position: absolute;
}
.tc-hero__left-image {
  display: none;
}
.tc-hero__inner {
  position: relative;
}
.tc-hero__title-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.tc-hero__title-content {
  flex: 48rem 0 1;
}
.tc-hero__title-figure {
  flex: 20rem 0 1;
}
.tc-hero__h1 {
  color: var(--c-000);
  font-size: 3rem;
  line-height: 3rem;
  max-width: 40rem;
}
.tc-hero__title-image,
.tc-hero__title-image > img {
  height: auto;
  margin-block: 1rem;
  object-fit: contain;
  width: 100%;
}
.tc-hero__text {
  color: var(--c-000);
  font-size: 1.5rem;
  line-height: 2rem;
}
.tc-hero__cta-container {
  display: grid;
  gap: 2rem;
}
.tc-hero__cta {
  background-color: var(--c-000);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 3.75rem;
  overflow: hidden;
  padding: 2rem 5.5rem 2rem 2rem;
  position: relative;
}
.tc-hero__cta::before {
  background-color: var(--c-hover);
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s;
  width: 3.5rem;
}
.tc-hero__cta::after {
  content: '\f061';
  color: var(--c-000);
  font-size: 2rem;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 700;
  position: absolute;
  right: 1rem;
  bottom: 2rem;
}
.tc-hero__cta:focus,
.tc-hero__cta:hover {
  text-decoration: none;
}
.tc-hero__cta:focus::before,
.tc-hero__cta:hover::before {
  width: 100%;
}
.tc-hero__cta:focus .tc-hero__hover,
.tc-hero__cta:hover .tc-hero__hover {
  opacity: 1;
}
.tc-hero__label {
  align-self: flex-start;
  background-color: var(--c-hover);
  border-radius: 0.5rem;
  color: var(--c-000);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.25rem 2rem;
  text-transform: uppercase;
}
.tc-hero__logo {
  margin-bottom: 1.5rem;
}
.tc-hero__logo,
.tc-hero__logo > img {
  max-height: 2rem;
  max-width: 7rem;
  object-fit: contain;
}
.tc-hero__pitch {
  color: var(--c-dark);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}
.tc-hero__pitch p {
  margin-bottom: 0;
}
.tc-hero__pitch strong {
  color: var(--c-light);
}
.tc-hero__usps {
  color: var(--c-light);
  margin-block: 0.5rem 0;
}
.tc-hero__hover {
  bottom: 2rem;
  color: var(--c-000);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: unset;
  opacity: 0;
  padding-left: 1.5rem;
  position: absolute;
  right: 4rem;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .tc-hero__h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }
  .tc-hero__text {
    font-size: 1.675rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .tc-hero__left-image,
  .tc-hero__left-image > img {
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: 50% 100%;
    width: 100%;
  }
  .tc-hero__inner {
    margin-inline: 15vw 5rem;
  }
  .tc-hero__h1 {
    font-size: 5rem;
    line-height: 4.75rem;
  }
  .tc-hero__text {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .tc-hero__cta-container {
    grid-template-columns: 1fr 1fr;
  }
  .tc-hero__cta:nth-child(3) {
    align-items: center;
    border-radius: 1.25rem;
    flex-direction: row;
    grid-column: span 2;
    padding: 0;
  }
  .tc-hero__cta:nth-child(3) .tc-hero__label {
    margin: unset;
    padding-block: 1rem;
  }
  .tc-hero__cta:nth-child(3) .tc-hero__logo {
    margin: 0 2rem;
  }
  .tc-hero__cta:nth-child(3) .tc-hero__pitch {
    padding-right: 5.5rem;
  }
  .tc-hero__cta:nth-child(3)::after {
    bottom: 1rem;
  }
  .tc-hero__cta:nth-child(3) .tc-hero__hover {
    bottom: 1rem;
  }
}
@media screen and (min-width: 1410px) {
  .tc-hero__inner {
    margin-inline: auto 5rem;
    max-width: min(80rem, 75vw);
  }
  .tc-hero__pitch {
    font-size: 1.75rem;
  }
}
