.toc {
  font-family: var(--font-primary);
  background: rgba(2, 24, 44, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.toc::-webkit-scrollbar {
  width: 6px;
}
.toc::-webkit-scrollbar-track {
  background: transparent;
}
.toc::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.toc__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light, #fff);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc__item {
  margin-bottom: 16px;
}
.toc__item:last-child {
  margin-bottom: 0;
}
.toc__link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.toc__link svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.toc__link:hover, .toc__link.is-active {
  color: var(--color-light-blue);
  transform: translateX(4px);
}
.toc__link:hover svg, .toc__link.is-active svg {
  opacity: 1;
}
.toc__link.is-active {
  font-weight: 700;
}

/*# sourceMappingURL=toc.css.map */
