.container {
    width: 100%;
    padding-top: 2em;
}

.main_content {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.8em;
}

.new_post {
    padding: 0.7em 0.6em;
    color: white;
    border-radius: 0.6em;
    background-color: rgba(120,120,255,1);
    width: 7.6em;
    text-align: center;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em 0.4em;
    font-size: 1.3em;
    cursor: pointer;
    font-weight: 600;
}

.posts {
    padding-top: 2em;
}

.intro {
    font-size: 2.1em;
    margin-bottom: 1.2em;
    display: inline-block;
    border-bottom: 0.05em solid black;
    line-height: 1.4;
}

.posts .post {
    margin: 0 0.6em;
    margin-right: 0;
    border-bottom: 0.06em dotted black;
    border-left: 0.06em dotted black;
    padding-left: 1.5em;
    padding-top: 0em;
    /* padding-bottom: 3em; */
    border-radius: 0;
    /* cursor: pointer; */
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
    flex-flow: column;
    position: relative;
}

.post_data .title h1 {
    font-size: 1.7em;
    margin: 0.3em 0;
}

.live > h2, .drafts > h2 {
    margin: 0;
    margin-bottom: 0.5em;
    /* text-decoration: underline; */
    border-bottom: 0.01em dotted black;
    display: inline-block;
    font-size: 2.3em;
    font-feature-settings: 'c2sc';
    line-height: 1;
}

.live+.drafts {
    margin-top: 2em;
}

.interact {
    display: flex;
    flex-flow: row wrap;
    /* align-items: center; */
    /* justify-content: space-between; */
    /* height: 100%; */
    gap: 0 1em;
    align-self: flex-end;
    align-items: end;
    /* position: absolute; */
    bottom: 0em;
    right: 0.2em;
}

.interact div {
    cursor: pointer;
    padding: 0.3em 0.8em;
    /* background: gray; */
    /* padding: 0; */
    /* height: auto; */
    line-height: 0;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap:  0.5em;
    height: 3em;
    border-radius: 0.2em;
    /* border: 0.1em solid black; */
    margin-bottom: 0.2em;
    font-weight: 700;
    color: rgba(0,0,0,0.8);
    font-size: 0.9em;
}

.delete {
    background-color: rgba(200,120,120,1);
}

.delete:hover {
    background-color: rgba(230,120,120,0.7);
}

.edit {
    background-color: rgba(120,120,200,1);
}

.edit:hover {
    background-color: rgba(120,120,230,0.7);
}

.publish, .unpublish {
    background-color: rgba(120,200,120,1);
}

.unpublish:after {
    content: 'Unpublish';
}

.publish:after {
    content: 'Publish';
}

.publish:hover, .unpublish:hover {
    background-color: rgba(120,230,120,1);
}

.unpublish svg {
    transform: rotate(180deg);
}

.posts .post + .post {
    margin-top: 3.5em;
}

.new_post:hover {
    background-color: rgba(120,120,120,1);
}