.index-post-list-wrapper {
    width: 100%;
}

.filter-post-list-wrapper {
    margin-top: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;

    .filter-post-list-header {
        padding: 0 0 10px 0;
        font-size: 16px;
        color: var(--text-color)
    }
}

#post-list {
    /*border: 1px solid var(--border-color);*/
    margin: unset;
    padding: 0;

    .post-item {
        padding: 10px 0;

        &:not(:last-child) {
            border-bottom: 1px solid var(--border-color);
        }

        .title {
            color: #000;
            font-weight: 500;

            &:hover {
                text-decoration: underline;
            }
        }

        .info {
            .date {
                font-size: 80%;
                color: darkgray;
            }
        }

    }
}