.post {
    background-color: var(--bg-main);
    padding: 0;
}

.right-post {
    flex-direction: row-reverse;
    text-align: right;
}

.left-post {
    flex-direction: row;
}

@media (max-width: 768px) {
    .right-post, .left-post {
        flex-direction: column;
        text-align: left;
    }
}