.cat-list-with-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
    padding: 1em;
}

@media screen and (max-width:767px) {
    .cat-list-with-icons {
        padding: 0;
    }
}

.post-cat-icon-wrp {
    display: block;
    width: 12%;
    margin-bottom: 1em;
}

@media screen and (max-width:767px) {
    .post-cat-icon-wrp {
        display: block;
        width: 24%;
    }
}

.post-cat-icon-wrp .cat-label {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1em 0;
    font-size: min(.9em, 3vw);
    font-family: var(--en);
}

.post-cat-icon-wrp .post-cat-icon {
    display: block;
    width: 70%;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 100%;
    overflow: hidden;
}

.post-cat-icon-wrp .post-cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}