.toc h2 {
    cursor: pointer;
    color: var(--white);
}
.toc__title__hr {
    margin-top: 15px;
    margin-bottom: 0;
    width: 95%;
    height: 4px;
    background: var(--purple-dk);
    border-radius: 2px;
}

.toc .toc__content ul {
    margin-top: 15px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toc .toc__content ul li {
    line-height: 1.1;
}

.toc__link-wrap {
    display: flex;
    justify-content: space-between;
}
.toc .toc__content ul li .toggle {
    margin-left: 8px;
    color: var(--white);
    cursor: pointer;
    font-weight: 500;
}

.toc .toc__content ul a {
    font-size: 20px;
    color: var(--white);
}

.toc .toc__content ul li.heading-3 {
    margin-left: 15px;
}
.toc .toc__content ul li.heading-3 a {
    font-size: 18px;
}

/*toggles*/
.toc {
    visibility: visible;
    max-height: 5000px;
    opacity: 1;

    transition: all 0.2s ease;
}
.toc.closed {
    margin-top: 0 !important;

    visibility: hidden;
    max-height: 0;
    opacity: 0;
}

.toc .heading-2 ul.toc__sublist {
    margin-top: 0;

    visibility: hidden;
    max-height: 0;
    opacity: 0;

    border-left: 2px solid var(--white);
    border-radius: 2px;

    transition: all 0.2s ease;
}
.toc .heading-2 ul.toc__sublist.active {
    margin-top: 10px;

    visibility: visible;
    max-height: 1000px;
    opacity: 1;
}
