.--default .postListPost {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
}

.--default .postListPost + .postListPost {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.postListPost__imageWrapper:has(.--fallback) {
    display: none;
}

.--default .tagsList {
    order: -1;
}

.--default .postListPost__image {
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 0;
}

.--default .postMetaInfo__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .--default .postListPost {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .--default .postListPost__content {
        flex: 1 1 70%;
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .--default .postListPost__imageWrapper {
        display: block;
        flex: 0 0 30%;
        overflow: clip;
    }
}

@media (min-width: 1024px) {
    .--default .postListPost {
        gap: 4rem;
    }
}
