div.post-column-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

div.post-c3 {
    transition: all 0.3s ease;
    flex: 1;
    max-width: 350px;
    min-width: 350px;
    padding: 15px;
    background-color: #f1f1ff;
    margin: 5px;
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

div.post-c3:hover {
    background-color: #e1e1ff;
}

div.post-c3.expanded {
    max-width: 600px;
    min-width: 350px;
    white-space: normal;
}

.post-content {
    max-height: 93px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: max-height 0.3s ease;
}

div.post-c3.expanded .post-content {
    max-height: 1000px;
    -webkit-line-clamp: unset;
}

.post-text {
    margin: 0;
    word-break: break-word;
    white-space: pre-line;
}

.actions-objects {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.edit-obj, .delete-obj {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2em;
}