.firstParagraph {
    height: fit-content;
    overflow: hidden;
}

.post {
    background-color: white;
    display: flex;
    height: fit-content;
    min-height: 400px;
    /* equal height of the children */
    flex-direction: row;
    margin: 30px 0px;
    overflow: hidden;
}

div.cover {
    flex: 1;
    /* additionally, equal width */
    width: 50%;
}

img.cover {
    width: 100%;
    height:100%;
    object-fit: cover;
}

.postBody {
    /* additionally, equal width */
    width: 50%;
    padding: 10px 15px;
    overflow-wrap: break-word;
}

.post:nth-of-type(odd) {
    flex-flow: row-reverse;
}

@media screen and (max-width: 768px) {
    .post {
        flex-direction: column;
        height:auto;
    }

    .post:nth-of-type(odd) {
        flex-flow: column;
    }

    div.cover {
        width: 100%;
    }

    .postBody {
        width:100%;
    }
}
