.title-hero {
  --emblem-area-color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: visible;
  width: 100%;
  aspect-ratio: 1920 / 700;
  background: var(--emblem-area-color);
  color: #ffffff;
  container-type: inline-size;
}

.title-hero--with-emblem {
  /* 700 - 589 = 111 px at the base resolution */
}

.title-hero__visual {
  position: relative;
  width: 100%;
  height: 84.142857%; /* 589 / 700 */
  background: #21245c;
}

.title-hero__image,
.title-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.title-hero__image {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.title-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 22, 91, 0.58) 0%, rgba(25, 35, 108, 0.42) 48%, rgba(33, 36, 92, 0.28) 100%),
    linear-gradient(180deg, rgba(33, 36, 92, 0.04) 0%, rgba(7, 16, 67, 0.18) 100%);
}

.title-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(180px, 13.5%);
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
  padding: 0 8% 0 10%;
}

.title-hero__content {
  max-width: 100%;
  transform: translateY(30%);
}

.title-hero__eyebrow {
  margin: 0 0 0.55em;
  color: #ffffff;
  font-size: 28px;
  line-height: 0.55;
  font-weight: 600;
}

.title-hero__title {
  margin: 0 0 0.35em;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.title-hero__subtitle {
  max-width: 900px;
  margin: 0 0 0.95em;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.title-hero__subtitle p {
  margin: 0 0 0.65em;
}

.title-hero__subtitle p:last-child {
  margin-bottom: 0;
}

.title-hero__button {
  position: relative;
  display: inline-flex;
  align-items: center !important;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 50px;
  border: none;
  border-radius: 999px;
  background: #00aded;
  color: #ffffff !important;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  isolation: isolate;
  transition: min-width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.title-hero__button-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  white-space: nowrap;
  color: inherit !important;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.title-hero__button-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateY(-50%) translateX(0);
  transform-origin: center;
  pointer-events: none;
  transition:
    right 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    left 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

.title-hero__button-icon-image {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.title-hero__button:hover,
.title-hero__button:focus,
.title-hero__button:active {
  min-width: 170px;
  background: #00aded !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  border: none !important;
  opacity: 1 !important;
}

.title-hero__button:hover .title-hero__button-label,
.title-hero__button:focus .title-hero__button-label,
.title-hero__button:active .title-hero__button-label {
  color: #ffffff !important;
  transform: translateX(6px);
}

.title-hero__button:hover .title-hero__button-icon,
.title-hero__button:focus .title-hero__button-icon,
.title-hero__button:active .title-hero__button-icon {
  right: calc(100% - 42px);
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.title-hero__emblem {
  align-self: end;
  justify-self: end;
  z-index: 3;
  width: 100%;
  transform: translate(0, 18.8125%); /* 111 / 589 */
}

.title-hero__emblem img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .title-hero {
    /* Keeps the proportional hero shape on smaller screens. */
    aspect-ratio: 1920 / 700;
  }

  .title-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(72px, 13.5%);
    gap: 4%;
    padding: 0 5%;
  }

  .title-hero__content {
    transform: none;
  }

  .title-hero__emblem {
    transform: translate(0, 18.8125%);
  }

  .title-hero__button {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 0 18px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-hero__button {
    transition: none;
  }]
  
  
}