.page-text .page-hero {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(10, 45, 105, 0.9) 0%, rgba(10, 45, 105, 0.78) 100%),
    url("../../images/backgrounds/background-cta.svg") center center / cover no-repeat;
  text-align: left;
}

.page-text .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--bg-light) 100%);
}

.page-text .page-hero .container--wide,
.page-text .text-page .container--wide {
  width: min(var(--container-fluid), 100%);
  max-width: var(--container-wide-max);
  margin-inline: auto;
}

.page-text .breadcrumb-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: 0;
  display: grid;
  justify-items: start;
  text-align: left;
}

.page-text .breadcrumb-wrap .eyebrow {
  margin-bottom: 0.9rem;
}

.page-text .breadcrumb-wrap h1 {
  max-width: 12ch;
  margin-inline: 0;
  margin-bottom: 0;
  color: var(--color-white);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-text .breadcrumb-wrap p {
  max-width: 680px;
  margin: 0.9rem 0 0;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  line-height: 1.75;
}

.page-text .breadcrumb {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  color: rgba(255,255,255,0.76);
}

.page-text .breadcrumb a {
  color: var(--color-white);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.page-text .breadcrumb a:hover {
  color: var(--color-primary);
}

.page-text .text-page {
  padding: 5.75rem 0 3rem;
}

.page-text .text-page__wrap {
  display: block;
  width: 100%;
}

.page-text .text-content {
  width: 100%;
  max-width: 100%;
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.page-text .text-content > * {
  max-width: 860px;
}

.page-text .text-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.page-text .text-content p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

.page-text .text-content ul {
  margin: 0 0 1.25rem 1.2rem;
  padding: 0;
}

.page-text .text-content li {
  margin-bottom: 0.55rem;
  line-height: 1.75;
}

.page-text .text-content a {
  color: var(--color-primary-dark);
  font-weight: 600;
  transition: color 0.25s ease;
}

.page-text .text-content a:hover {
  color: var(--color-primary);
}

.page-text .text-content strong {
  color: var(--color-heading);
}