/* article-toc.css — runhockeyapparel.com table of contents.
 * ERP contract: #toc-nav-container / .toc-nav / #toc-list-content (shell TOC) and
 * .article-toc / .article-toc-title / .article-toc-list / .article-toc-item / .article-toc-link (generated TOC).
 * Default state = collapsed; clicking the title toggles .expanded on the container. */
#toc-nav-container,.article-toc,.toc-nav{background:#F7F9FC;border:1px solid #DCE3EC;border-left:4px solid #F59E0B;border-radius:12px;padding:1.05rem 1.35rem;margin:0 auto 2.25rem;max-width:780px}

.article-toc-title,.toc-title{font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;font-size:.9rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:#0B1B33;margin:0;display:flex;align-items:center;justify-content:space-between;gap:.5rem;cursor:pointer;user-select:none;line-height:1.4}

.article-toc-list,.toc-list{list-style:none;margin:0;padding:0}
.article-toc-item{margin:0}
.article-toc-link,.toc-list li a{display:block;padding:.45rem .75rem;border-left:3px solid #DCE3EC;color:#1F4E79;font-size:.95rem;font-weight:500;line-height:1.45;text-decoration:none;transition:border-color .18s ease,color .18s ease,background .18s ease}
.article-toc-link:hover,.toc-list li a:hover{border-left-color:#F59E0B;color:#0B1B33;background:#fff}

.toc-toggle-icon{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:6px;background:#fff;border:1px solid #DCE3EC;color:#0B1B33;font-size:.85rem;flex:none;transition:transform .3s ease}
#toc-nav-container.expanded .toc-toggle-icon{transform:rotate(180deg)}

#toc-list-content{max-height:0;overflow:hidden;transition:max-height .35s ease}
#toc-nav-container.expanded #toc-list-content{max-height:1500px;margin-top:.875rem;transition:max-height .5s ease}

@media (prefers-reduced-motion:reduce){#toc-list-content,#toc-nav-container.expanded #toc-list-content,.toc-toggle-icon{transition:none}}
.toc-list li.toc-sub a,.article-toc-item.toc-sub .article-toc-link{padding-left:1.6rem;font-size:.9rem;color:#53647A}
