.toc {
  text-align: left;
  position: relative;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .toc {
    display: none;
  }
}

.toc__container {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 991px) {
  .toc__container {
    padding-right: 16px;
  }
}

.toc__title {
  font-size: var(--text-font-size-small);
  color: var(--primary-color);
  margin: 0 0 8px;
}

.toc__list {
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto;
}

.toc__element {
  display: block;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.toc__element a {
  color: var(--primary-text-color);
}

.toc__element.is-active a {
  font-weight: bold;
}

.toc__element a:hover {
  color: var(--link-color);
}
