.category-wall .category-card {
    padding: 15px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    background: #f3f5f7;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.category-wall .category-cards {
    display: flex;
    gap: 15px;
}

.category-wall .category-card:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 7px 14px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 7px 14px 0 rgb(0 0 0 / 10%);
}

.category-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.category-catalog-wrap {
    width: 100%;
}

@media (min-width: 768px) {
    .category-catalog-wrap {
        width: calc(50% - 8px);
    }

    .category-catalog-wrap.is-columns {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .category-catalog-wrap.not-column {
        width: calc(20% - 12px);
    }
}

.category-wall .category-name {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    display: block;
    text-transform: uppercase;
    transition: all .25s;
}

.category-wall .category-list a {
    display: block;
    margin-bottom: 4px;
    color: #333;
    transition: all .25s;
}

.category-wall .category-name:hover, .category-wall .category-name:focus, .category-wall .category-list a:focus:not(.category-count), .category-wall .category-list a:hover:not(.category-count) {
    color: #ff75ae;
}

.category-wall .category-image {
    order: 1;
    flex-shrink: 0;
}

.category-body {
    flex: 1;
    flex-basis: auto;
    min-width: 50%;
}

.category-wall .category-img-link img {
    mix-blend-mode: multiply;
}

.category-wall a.category-count {
    color: #ffffff;
    display: inline-block;
    background: #41c962;
    border-radius: 25px;
    padding: 2px 7px;
    -webkit-box-shadow: 0 4px 18px 0 rgb(90 210 119 / 50%);
    box-shadow: 0 4px 18px 0 rgb(90 210 119 / 50%);
    margin-top: 12px;
    text-shadow: 0 1px rgb(23 187 62 / 22%);
}

.category-list {
    margin-top: 20px;
}