body.content-page {
  scroll-behavior: smooth;
}

body.content-page .navbar::before {
  background: linear-gradient(to bottom, transparent 0 260px, var(--paper) 260px 100%);
}

body.content-page .navbar {
  background: linear-gradient(to bottom, transparent 0 260px, var(--paper) 260px 100%);
}

body.page-from-left.content-page .navbar,
body.page-from-left.content-page .navbar::before {
  background: var(--paper);
}

.content-shell {
  margin-left: calc(50% - (var(--block-width) / 2) + var(--nav-width));
  width: calc(100% - (50% - (var(--block-width) / 2) + var(--nav-width)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-header {
  position: relative;
  width: 100%;
  padding: 200px 24px 56px;
  padding-left: var(--content-gap);
  z-index: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  margin-left: -10px;
  width: calc(100% + 10px);
  padding-left: calc(var(--content-gap) + 10px);
}

.content-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * var(--header-overlap));
  right: 0;
  background: transparent;
  z-index: -1;
}

.content-title {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 600;
}

.content-intro {
  margin: 0 0 24px;
  width: 100%;
  max-width: 100%;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
}

.content-intro p,
.text-breaks p,
.secondary-text p,
.vita-intro p,
.vita-list-intro p {
  margin: 0 0 12px;
}

.content-intro p:last-child,
.text-breaks p:last-child,
.secondary-text p:last-child,
.vita-intro p:last-child,
.vita-list-intro p:last-child {
  margin-bottom: 0;
}

.content-body {
  width: 100%;
  max-width: var(--block-width);
  padding: 32px 24px 64px;
  padding-left: var(--content-gap);
  padding-right: var(--content-right-gap);
  font-weight: 300;
}

.content-body h2 {
  margin: 20px 0 12px;
  font-size: 28px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.content-body h2::after {
  content: "";
  display: block;
  width: 80%;
  height: var(--line-width);
  background: #000;
  margin-top: 6px;
}

.content-body p {
  margin: 0 0 0px;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  text-align: justify;
}

.content-body p + p {
  margin-top: 12px;
}

.content-body p a,
.vita-intro a,
.vita-generic-field-value a,
.vita-cms a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 260ms ease;
}

.content-body p a:hover,
.vita-intro a:hover,
.vita-generic-field-value a:hover,
.vita-cms a:hover {
  color: var(--highlight);
}

@media (max-width: 640px) {
  .content-page .content-body {
    padding-right: 24px;
  }

  .content-header {
    padding-top: 120px;
  }

  .content-title {
    font-size: 23px;
  }

  .content-intro {
    font-size: 20px;
  }

  .content-body h2 {
    font-size: 20px;
  }
}
