.postListPost__content {
    container-type: inline-size;
    container-name: postListPost__content;
}

.postListPost__title {
    margin: 0;
    transition: color 200ms ease-in-out;
}

.postListPost:hover .postListPost__title {
    color: #0090e7;
}

@container (max-width: 400px) {
    .postListPost__title {
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
