.content-page-container {
  padding: 0 30px;
}

.content-page-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.content-page-inner-full-width {
  margin: 0 auto;
  overflow-x: auto;
}

.left-nav-pane {
  flex: 25%;
  min-width: 250px;
  max-width: 350px;
  padding-right: 18px;
}

.content-pane {
  flex: 75%;

  .figure-img {
    padding-top: 24px;
  }
}

.left-nav-block {
  background-color: #f7f5f6;
  border-radius: 6px;
  padding: 14px 18px;
  margin-right: 8px;
  height: 100%;

  ul {
    padding-left: 0;
  }

  ul li {
    margin-bottom: 20px;
    list-style: none;
  } 

  ul li.root a {
    font-size: 1.5rem;
    font-weight: bold;
  }
  ul li.parent {
    margin-left: 0px;
  }
  ul li.child {
    margin-left: 18px;
  } 

  ul li a {
    color: #181818;
    text-decoration: none;
    position: relative;
    font-size: 1.25rem;
  }
  ul li a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0px;
    height: 2px;
    background: #EB5E5E;
    transition: all 0.45s;
  }
  ul li a:hover:after {
    width: 100%;
    left: 0;
  }
  ul li.active a:after {
    width: 100%;
    left: 0;
  }
  ul li a:hover {
    text-decoration: none;
  }

  .nav-children-toggle {
    padding: 0.3rem .4rem .4rem .5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
  }
  .nav-children-toggle:hover,
  .nav-children-toggle:focus {
    color: rgb(0, 0, 0);
    background-color: #dfdfdf;
  }
  .nav-children-toggle::before {
    width: 1.2em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
  }
  .nav-children-toggle[aria-expanded="true"] {
    color: rgb(0, 0, 0);
  }
  .nav-children-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
  }
}

.nav-tile {
  margin-bottom: 40px;
  a {
    color:#4C4C4C;
  }
}

.nav-tile-image {
  border-radius: 10px;
  overflow:hidden;
  margin-bottom: 16px;
}

.nav-tile-caption {
  font-weight: 600;
}


