.post-content>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.post-content>ul>li {
    display: flex;
    flex-direction: column;
}

.post-content>ul>li>p>img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.post-content>ul>li>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
    text-align: center;
}

.post-content>ul>li>ul>li {
    margin: 0;
}

.post-content>ul>li>ul>li:nth-of-type(2) {
    font-weight: bold;
}