.feed {
    margin-top: 2rem;
    padding: 3rem 1rem 0 1rem;
    min-width: 20rem;
    width: calc(100vw - 40rem);
    z-index: 1;
    transform-origin: top left;
    transition: left 1s cubic-bezier(.2,.8,.2,1), top 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1), opacity 1s ease;
    background-color: var(--background-color);
}

.feed.mobile-sidebar-open {
    transform: rotate(-10deg) translate(calc(100vw * .4), 0) scale(.85);
    box-shadow: 0 0 1rem rgba(0,0,0,0.5);
    margin-top: 0;
    border-radius: 3rem;
    overflow: hidden;
}

.feed.mobile-searchbar-open {
    transform: rotate(10deg) translate(calc(100vw * -.4), 0) scale(.85);
    box-shadow: 0 0 1rem rgba(0,0,0,0.5);
    margin-top: 0;
    border-radius: 3rem;
    overflow: hidden;
}

.post {
    /* margin: 2rem 2rem 0 2rem; */
    margin-bottom: 2rem;
    line-height: 1.3rem;
    /* background-color: var(--background-color); */
}

.post > .post-content {
    border: 1px solid #853939;
    border-top: none;
    border-bottom: none;
    padding: 1rem;
    display: flex;
}

.post > .post-content > div > .text-content {
    width: 100%;
}

.post > .post-content > div > .text-content::before {
    content: " ";
    height: .5rem;
    display: block;
}

.post > .post-content > div > .picture {
    background-color: #eee;
    border-radius: 1rem;
    max-height: 33vh;
    max-width: 100%;
}

.post > .post-content > div:first-child {
    display: block;
    width: 90%;
}

.post > .post-content > div:last-child {
    width: 10%;
    margin: auto 0 auto auto;
    text-align: center;
}

.post > .post-content > div:last-child > i {
    display: block;
    height: 2rem;
    align-content: center;
    border-radius: var(--border-radius);
    margin-left: .25rem;
}

.post > .post-content > div:last-child > span {
    margin-left: .25rem;
}

.post > .title-bar {
    display: flex;
    align-items: center;
    background-color: #ccc;
    background-image: var(--radial-signature-bg-img);    
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: 1px solid #853939;
    padding: .5rem;
    color: #fafafa;
}

.post > .title-bar > a > .post-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #fff;
    background-size: cover;
    background-position: center;
}

.post > .title-bar > .title {
    display: block;
}

.post > .title-bar > .title > .post-title {
    margin-left: 1rem;
    font-weight: bold;
}

.post > .title-bar > .title > .post-subtitle {
    margin-left: 1rem;
    min-height: .9rem;
    font-size: 0.9rem;
}

.post > .bottom {
    padding: 0 1rem 1rem 1rem;
    border: 1px solid #853939;
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: flex;
}

.post > .bottom > .date-posted {
    font-size: 0.8rem;
    color: #555;
    margin: auto 0 auto auto;
}
