.post {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    container-type: inline-size;
    background-color: #051825;
    border: 1px solid #303030;
    border-radius: 6px;
    overflow: hidden;
    margin: 2em 0em 2em 0em;
    position: relative;
}

.post:hover {
    background-color: #041622;
}

.post-text-box {
    padding: 10px 10px 0px 10px;
    margin: 0px 0px 14px 0px;
    line-height: 1.2;
}

.post-text {
    margin-bottom: -8px;    
}

.post-image-box {
    line-height: 0;
    display: block;
    margin-left: auto;
    margin-right: 0px;
}

.post-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@container (width > 600px) {
    .post-text-box {
        width: 47%;
        padding-right: 0px;
        margin-bottom: 18px;
    }
    .post-image-box {
        width: 50%;
        margin-top: auto;
        margin-bottom: auto;
    }
}

h5 {
    font-size: 150%;
    margin: 0em 1em 0em 0em;
    color: #90D0F0;
}