section.board-category {
    border: 16px var(--border-color-01) ridge;
    width: 80vw;
    margin-bottom: 16px;
}

header.board-cat-heading {
    background-color: var(--bg-color-02);
    border-bottom: 1px solid var(--border-color-01);
}

h4.board-cat-description {
    margin: 0;
    padding: 0;
    padding-left: 5px;
    padding-bottom: 5px;
    font-weight: 100;
    color: var(--text-color-02);
}

.board-cat-name {
    margin: 0;
    padding: 5px;
    display: block;
    width: max-content;
    color: var(--link-color-02);
}
.board-cat-name > h3 {
    margin: 0;
}

section.board-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.board-list-header {
    display: grid;
    grid-template-columns: 6fr 1fr 1fr 2fr;
    color: white;
    background-color: black;
    font-weight: bold;
}
.board-list-header > span {
    padding: 4px;
    border-left: 1px solid var(--border-color-01);
}
.board-list-header > span:first-child {
    border-left: none;
}

.board-thread-count, .board-post-count {
    text-align: center;
}

.board-list-entry {
    display: grid;
    grid-template-columns: 6fr 1fr 1fr 2fr;
    border-top: 1px solid var(--border-color-01);
}
.board-list-entry:first-child {
    border-top: none;
}
.board-list-entry > div {
    border-left: 1px solid var(--border-color-01);
}
.board-list-entry > div:first-child {
    border-left: none;
}

.board-name {
    padding: 5px;
}
.board-description {
    color: var(--text-color-01);
}

.board-count-item {
    display: grid;
    place-items: center;
    color: var(--text-color-01);
}

.board-newest-post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 5px;
    align-items: flex-end;
}
.board-newest-post > span {
    color: var(--text-color-01);
}

.board-no-newest-post {
    display: grid;
    place-items: center;
    color: var(--text-color-01);
}

thead.board-header-row {
    color: white;
    background-color: black;
    font-weight: bold;
}

a {
    color: var(--link-color-01);
}

a.board-link {
    display: block;
    width: max-content;
}

.subboard-section {
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    color: var(--text-color-01);
}
.subboard-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    margin-left: 10px;
    padding: 0;
}