.posts {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    /* justify-content: end; */
    width: 100%;
}

.posts.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.posts .postSeparator {
    height: 1px;
    width: 100%;
    margin: auto;
    background-color: #f0f0f0;
}

.posts.empty {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    height: 100%;
}

.posts .empty-message {
    width: 205px;
    font-family: "Metropolis Bold";
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: 0.18px;
    text-align: center;
    color: #7c7c7c;
}

.dark .posts {
    background-color: transparent;
}

.dark .posts .empty-message {
    color: rgba(255, 255, 255, 0.87);
}

.dark .posts .postSeparator {
    background-color: rgba(255, 255, 255, 0.14);
}
