.toc {
    position: sticky;
    top: 56px;
    padding: 16px;
    border: 1px solid var(--brand-primary);
    border-radius: 16px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-bottom: 60px;
}

.toc ul {
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
}

.toc ul li {
    margin-bottom: 12px;
}

.toc ul li.active {
    font-weight: bold;
}

.toc ul li ul {
    margin-top: 0;
    margin-left: 16px;
}

.toc ul li ul li:before {
    content: "- ";
}

.toc {
    top: 90px;
    max-height: calc(100vh - 200px);
}

.toc-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 0;
    background-color: rgba(0,0,0, 0.4);
    height: 100%;
}
.toc-wrapper .toc {
    position: absolute;
    bottom: 0;
    top: unset;
    width: 100%;
    background-color: white;
    max-height: calc(100dvh - 300px);
    border-radius: 0;
    box-shadow: 1px 1px 15px rgba(0,0,0,.4);
}
.comment-wrapper, .most-recent-wrapper {
    margin-top: 32px;
}
.open-toc {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--brand-primary);
    z-index: 999;
}
.open-toc img {
    max-width: 16px;
}

@media(min-width: 768px) {
    .open-toc {
        display: none;
    }
}
