.djwb-toc {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-l);
    display: none;
    flex-direction: column;
}

.djwb-toc__heading {
    color: var(--secondary-500);
    font-family: var(--headline-font);
    font-size: var(--body-l);
    font-weight: var(--headline-font-weight);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.djwb-toc__admin-heading {
    color: var(--secondary-500);
    font-family: var(--headline-font);
    font-size: var(--body-l)!important;
    font-weight: var(--headline-font-weight) !important;
    line-height: 1.3;
}

.djwb-toc__list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 0 32px !important;
    row-gap: 0.75rem;
}

.djwb-toc__link {
    display: inline-block;
    position: relative;
    color: var(--text-300);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: var(--body-xs);
    font-weight: 600;
    line-height: 1.4;
}

.djwb-toc__link::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--secondary-500);
    margin-top: 11px;
    margin-left: -32px;
}

.djwb-toc__link--h3 {
    margin-left: 32px;
}

.djwb-toc__link:hover,
.djwb-toc__link:focus {
    color: var(--primary);
    text-decoration: underline;
}