.child-page {
  background: var(--color-brand-navy-deep, #082030);
  color: var(--color-brand-text-inverse, #ffffff);
}

.child-page__body {
  padding: 96px 0;
}

.child-page__body-inner {
  width: min(1512px, calc(100% - 48px));
  margin: 0 auto;
}

.child-page__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: min(740px, 100%);
  margin-bottom: 48px;
}

.child-page__intro-title {
  margin: 0;
  color: var(--color-brand-text-inverse, #ffffff);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: var(--fw-regular);
  line-height: 1.1;
}

.child-page__intro-copy,
.child-page__intro-copy p {
  margin: 0;
  color: var(--color-brand-text-inverse, #ffffff);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 1.7;
}

.child-page__intro-copy p + p {
  margin-top: 24px;
}

.child-page .content-page-layout,
.child-page .content-page-layout__container,
.child-page .content-page-sections {
  width: 100%;
}

.child-page .content-page-layout__container {
  display: grid;
  gap: 48px;
  align-items: start;
}

.child-page .content-page-layout__container.content-page-layout__container--no-toc {
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
}

.child-page .content-page-sections {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.child-page .content-block,
.child-page .content-block--fallback {
  width: min(740px, 100%);
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.child-page .content-block + .content-block,
.child-page .content-block--fallback + .content-block--fallback {
  margin-top: 48px;
}

.child-page .content-block__inner {
  width: 100%;
  max-width: none;
  padding: 0;
}

.child-page .content-block__divider {
  display: none;
}

.child-page .content-block__h2 {
  margin: 0 0 24px;
  color: var(--color-brand-text-inverse, #ffffff);
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: var(--fw-regular);
  line-height: 1.1;
}

.child-page .content-block__text,
.child-page .content-block__text p,
.child-page .content-block__text li {
  color: var(--color-brand-text-inverse, #ffffff);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

.child-page .content-block__text p {
  margin: 0 0 24px;
}

.child-page .content-block__text h3,
.child-page .content-block__text h4,
.child-page .content-block__text h5,
.child-page .content-block__text h6 {
  margin: 0 0 24px;
  color: var(--color-brand-text-inverse, #ffffff);
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: 1.1;
}

.child-page .content-block__text h3 {
  font-size: 39px;
}

.child-page .content-block__text h4 {
  font-size: 33px;
}

.child-page .content-block__text h5 {
  font-size: 27px;
}

.child-page .content-block__text h6 {
  font-size: 23px;
}

.child-page .content-block__image {
  width: 100%;
  margin: 0 0 24px;
  border-radius: 0;
  box-shadow: none;
}

.child-page .content-block--injected,
.child-page .content-block-appended-component {
  width: min(740px, 100%);
}

.child-page .toc {
  position: sticky;
  top: 120px;
  width: min(320px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  outline: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.child-page .toc__heading {
  margin-bottom: 8px;
  color: var(--color-cta-default, #a9d8de);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  line-height: 1.7;
}

.child-page .toc__link {
  color: var(--color-text-secondary, #bfc5ca);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  line-height: 1.7;
}

.child-page .toc__link.is-active,
.child-page .toc__link:hover,
.child-page .toc__link:focus-visible {
  color: var(--color-cta-default, #a9d8de);
}

@media (min-width: 1100px) {
  .child-page .content-page-layout__container {
    grid-template-columns: minmax(220px, 320px) minmax(0, 740px);
    justify-content: start;
    padding-left: max(24px, calc((100% - 320px - 48px - 740px) / 2));
  }

  .child-page__body-inner {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 1099px) {
  .child-page__body {
    padding: 64px 0;
  }

  .child-page__body-inner {
    width: calc(100% - 40px);
  }

  .child-page .content-page-layout__container {
    grid-template-columns: minmax(0, 1fr);
  }

  .child-page .toc {
    position: static;
    width: 100%;
    margin-bottom: 8px;
  }

  .child-page__intro-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .child-page__body {
    padding: 48px 0;
  }

  .child-page__intro-title {
    font-size: 34px;
  }
}
