.post-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

#main>.post-container+.post-container {
    margin-top: 2rem;
}

main .post-container code {
    background-color: #F5F5F5;
    border-radius: .2rem;
    color: #AA0000;
    font-family: 'Latin Modern Mono', Courier, monospace;
    padding: 0 .2rem;
}

.post-container>.post>h2 {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.post-container>.post>div>div>div {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 1rem;
    flex-wrap: wrap;
}

.post-container>.post>div>div>div>time {
    font-size: 1rem;
    font-weight: normal;
    justify-self: flex-end;
    margin-left: unset;
}

.post-container>.post>div>div>div>span {
    font-size: 1rem;
    font-weight: normal;
    color: gray;
    /* margin-left: 1rem; */
}

.post-container>.post>.content {
    display: unset;
    /* padding-top: 1rem; */
}

.post-meta-wrapper {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.post-thumb {
    display: none;
    flex-shrink: 0;
    position: relative;
    width: 128px;
    height: 128px;
    align-self: center;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 10%;
    margin-top: 0.25rem;
}

.post-thumb-alt {
    display: unset;
    flex-shrink: 0;
    position: relative;
    width: 75px;
    height: 75px;
    align-self: center;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 10%;
}

@media screen and (min-width: 768px) {
    #main>.post>div {
        margin-left: 2rem;
    }

    .post-meta-wrapper {
        margin-top: unset;
        margin-bottom: unset;
    }

    .post-thumb {
        display: unset;
    }

    .post-thumb-alt {
        display: none;
    }
}