.popular-posts .post-item {
    display: flex;
    align-items: center;
}

.popular-posts .post-item:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.popular-posts .post-item .thumb {
    width: 80px;
    min-width: 80px;
    overflow: hidden;
    border-radius: 3px;
    display: inline-block;
    margin-right: 16px;
}

.popular-posts .post-item .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.popular-posts .post-item .title a {
    line-height: 1.2em;
    display: inline-block;
}

.popular-posts .post-item .title a:not(:hover) {
    color: rgb(var(--heading-color));
}

.popular-posts .post-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #696969;
}

.popular-posts .post-item ul .icon {
    margin-right: 8px;
    line-height: 1em;
}

.popular-posts .post-item ul li {
    font-size: 14px;
    display: flex;
    align-items: center;
}


@media only screen and (max-width: 480px) {
    .popular-posts .post-item {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .popular-posts .post-item .thumb {
        margin-right: 0;
        margin-bottom: 16px;
    }

}