/* 06-components/_toc.css */
/* ── c-toc — in-frame contents */
.c-toc { font-size: var(--text-sm); }
/* c-toc__aside — the contents rail sticks to the top of the scrolling body so it stays
   usable no matter how far down the page you are. */
@media (min-width: 56rem) {
  .c-toc__aside { position: sticky; top: var(--space-lg); align-self: start; }
}
.c-toc__link { display: block; padding: var(--space-3xs) 0; color: var(--text-muted); }
.c-toc__link::before { content: "· "; color: var(--text-dim); }
.c-toc__link:hover, .c-toc__link.is-current { color: var(--accent); }
.c-toc__link.is-current::before { content: "▸ "; color: var(--accent); }
