.ta-internal-hero {
  background: var(--ta-color-navy-deep);
  color: var(--ta-color-white);
  font-family: var(--ta-font-primary);
  padding-block: 0;
  margin: 0;
  overflow: hidden;
}

.ta-page-main > .ta-internal-hero:first-child {
  margin-block-start: calc(var(--ta-page-content-start-gap) * -1);
}

.ta-internal-hero .ta-internal-hero__container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.ta-internal-hero .ta-internal-hero__frame {
  position: relative;
  min-height: calc(var(--ta-projects-card-min-height) * 1.65);
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--ta-color-navy-deep);
  box-shadow: none;
  isolation: isolate;
}

.ta-internal-hero .ta-internal-hero__bg,
.ta-internal-hero .ta-internal-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ta-internal-hero .ta-internal-hero__bg {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ta-internal-hero .ta-internal-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--ta-color-navy-deep) 96%, transparent) 0%,
      color-mix(in srgb, var(--ta-color-navy-deep) 92%, transparent) 34%,
      color-mix(in srgb, var(--ta-color-navy-deep) 76%, transparent) 50%,
      color-mix(in srgb, var(--ta-color-navy-deep) 46%, transparent) 74%,
      color-mix(in srgb, var(--ta-color-navy-deep) 26%, transparent) 100%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--ta-color-navy-deep) 20%, transparent) 0%,
      color-mix(in srgb, var(--ta-color-navy-deep) 62%, transparent) 100%);
}

.ta-internal-hero .ta-internal-hero__content {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-inline-start: auto;
  padding-block: var(--ta-space-8);
  padding-inline: var(--ta-container-padding-x) var(--ta-space-10);
  text-align: start;
}

.ta-internal-hero .ta-internal-hero__eyebrow {
  display: block;
  width: var(--ta-space-12);
  height: var(--ta-menu-active-height);
  margin-block-end: var(--ta-space-6);
  border-radius: var(--ta-radius-circle);
  background: var(--ta-color-turquoise);
}

.ta-internal-hero .ta-internal-hero__title {
  margin: 0;
  color: var(--ta-color-white);
  font-size: calc(var(--ta-type-section-title-size) * 1.45);
  font-weight: var(--ta-type-section-title-weight);
  line-height: var(--ta-type-section-title-line-height);
  letter-spacing: var(--ta-type-section-title-letter-spacing);
}

.ta-internal-hero .ta-internal-hero__subtitle {
  margin: var(--ta-space-5) 0 0;
  color: var(--ta-color-turquoise);
  font-size: var(--ta-type-section-title-size-mobile);
  font-weight: var(--ta-type-section-title-weight);
  line-height: var(--ta-type-section-title-line-height);
}

.ta-internal-hero .ta-internal-hero__text {
  max-width: calc(var(--ta-container-max-width) / 2.5);
  margin: var(--ta-space-7) 0 0;
  color: var(--ta-color-text-light);
  font-size: var(--ta-type-card-text-size);
  font-weight: var(--ta-type-card-text-weight);
  line-height: var(--ta-type-card-text-line-height);
}

.ta-internal-hero .ta-internal-hero__breadcrumb {
  direction: rtl;
  margin-block-start: var(--ta-space-9);
  padding-block-start: var(--ta-space-6);
  border-block-start: var(--ta-news-card-border-width) solid color-mix(in srgb, var(--ta-color-white) 22%, transparent);
}

.ta-internal-hero .ta-internal-hero__breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--ta-space-3);
  list-style: none;
  margin: 0;
  padding: 0;
  direction: rtl;
  color: var(--ta-color-text-light);
  font-size: var(--ta-type-section-link-size);
  font-weight: var(--ta-type-card-text-weight);
  line-height: var(--ta-menu-line-height);
}

.ta-internal-hero .ta-internal-hero__breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: var(--ta-space-3);
}

.ta-internal-hero .ta-internal-hero__breadcrumb li + li::before {
  content: "/";
  color: var(--ta-color-text-light);
}

.ta-internal-hero .ta-internal-hero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: var(--ta-space-2);
  color: var(--ta-color-text-light);
  text-decoration: none;
  transition: color var(--ta-transition-normal);
}

.ta-internal-hero .ta-internal-hero__breadcrumb a:hover {
  color: var(--ta-color-turquoise);
}

.ta-internal-hero .ta-internal-hero__breadcrumb i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

/* The global icon file contains a compact shared subset. */
.ta-internal-hero .bi-house-door::before { content: "\f423"; }
