.postMetaInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--marginExtraSmall);
}

.blogPost .postMetaInfo {
    flex-direction: column;
}

.postMetaInfo__authorWrapper {
    display: flex;
    flex-direction: row;
    gap: var(--marginExtraSmall);
}

.postMetaInfo__authorName {
    font-weight: 600;
}

.postMetaInfo__authorImage {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.postMetaInfo__authorName,
.postMetaInfo__date {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--labelSize);
}

:not(.blogPost) .postMetaInfo__reactionCount {
    justify-self: flex-end;
    font-size: var(--labelSize);
}

:is(.--imageGrid, .--highlight) .postListPost__meta .postMetaInfo__reactionCount {
    display: none;
}

:is(.--default) .postListPost__titleWrapper .postMetaInfo__reactionCount {
    display: none;
}

@media (min-width: 512px) {
    .postMetaInfo {
        flex-direction: row;
        align-items: center;
    }

    .blogPost .postMetaInfo:has(.postMetaInfo__authorImage, .postMetaInfo__authorName, .postMetaInfo__date) .postMetaInfo__reactionCount {
        margin-inline: auto 0;
    }

    .blogPost .postMetaInfo:has(.postMetaInfo__authorImage, .postMetaInfo__authorName, .postMetaInfo__date) .postMetaInfo__reactionCount {
        margin: 0;
    }
}
