/* Table of contents */
.table-of-contents {
    display: inline-block;
    border: solid 1px var(--theme-color-border);
    border-radius: 3px;
    background: var(--theme-color-background-secondary)
}
.table-of-contents .toc-title h3 {
    margin: 0;
    font-size: 17px;
}
.table-of-contents .toc-title {
    padding: 15px;
}
.table-of-contents .toc-toggle {
    cursor: pointer;
}
.table-of-contents .toc-content {
    padding: 10px;
    border-top: solid 1px var(--theme-color-border);
}
.table-of-contents .toc-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.table-of-contents .toc-list li {
    margin: 1px 0
}
.table-of-contents .toc-list.secondary li {
    margin-left: 10px;
}
.table-of-contents .toc-list .toc-number {
    color: var(--theme-color-text-secondary);
}
.table-of-contents .toc-list .toc-number:after {
    content: '.'
}
.table-of-contents .toc-list a {
    color: var(--theme-color-text);
    display: inline-block;
    width: 100%;
    padding: 4px 10px;
    border-radius: 3px;
    transition: 0.3s background;
    box-sizing: border-box;
}
.table-of-contents .toc-list a:hover {
    background: rgba(var(--theme-color-link-rgb), .15);
    color: var(--theme-color-link);
    text-decoration: none
}
.table-of-contents .toc-list a:hover .toc-number {
    color: var(--theme-color-link)
}

/* Blog lists */
.blog-list {
    list-style-type: none;
    padding: 0;
}
.blog-list .blog-item {
    display: flex;
    column-gap: 20px;
    margin: 6px 0;
}
.blog-date {
    text-align: right;
    color: var(--theme-color-text-secondary);
    min-width: 155px
}
.blog-link {
    font-weight: bold;
}
@media only screen and (max-width: 800px) {
    .blog-list .blog-item {
        flex-direction: column;
        margin-bottom: 15px;
    }
    .blog-date {
        text-align: left
    }
}

/* Blog titles */
.blog-post-title {
    margin-bottom: 16px
}
.page-intro {
    margin-bottom: 12px;
    font-style: italic;
    line-height: var(--theme-font-line-height);
}
.page-subtitle {
    margin-bottom: 20px;
    font-size: 11.2pt;
    color: var(--theme-color-text-secondary);
}
.page-subtitle div {
    padding: 5px 0
}
.subtitle-tags {
    display: flex;
    align-items: center
}
.subtitle-tags .tags-list {
    margin-left: 2px
}
.subtitle-tags .tags-list a {
    margin: 0 2px;
    font-weight: normal;
    font-size: 14px;
}

/* Taxonomies stuff */
.taxonomies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 25px;
    margin-top: 30px
}