.category-wall {
    margin-bottom: 20px;
}

.wall-item {
    display: block;
    line-height: 0;
    text-decoration: none;
    margin-bottom: 20px;
}

.wall-item:hover {
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.wall-item img {
    width: auto;
    height: auto;
}

.category-wall-inner {
    position: relative;
    height: 100%;
    width: 100%;
    line-height: 1;
}

.wall-title {
    color: var(--black, #231F20);
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    top: 18px;
    left: 18px;
}

.wall-title span {
    color: #828282;
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

.wall-more {
    color: var(--black, #231F20);
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-transform: uppercase;

    display: inline-block;
    border-bottom: 1px solid transparent;
    position: absolute;
    bottom: 18px;
    left: 18px;

    transition: color, border 0.2s ease-in-out;
}

.wall-more:hover {
    color: var(--accent, #2D5BFF);
    border-bottom: 1px solid #2D5BFF;
    transition: color, border 0.2s ease-in-out;
}

.category-empty {
    pointer-events: none;
}

.category-empty.wall-item img {
    /* opacity: 0; */
    filter: grayscale(1);
}

.category-empty .wall-title {
    color: var(--silver, #858585);
}

.category-empty .wall-more,
.category-empty .wall-more:hover {
    color: var(--silver, #858585);
}

.wall-item:hover,
.wall-item {
    transition: all 0.2s ease-in-out;
}

.wall-item.healthy_line {
    background: rgba(125, 42, 144, 0.20);
}

.wall-item.healthy_line .category-wall-inner {
    background: radial-gradient(110.05% 57.55% at 71.71% 49.89%, rgba(255, 255, 255, 0.40) 32.45%, rgba(217, 217, 217, 0.00) 100%);
}

.wall-item.home_line {
    background: rgba(242, 101, 34, 0.20);
}

.wall-item.home_line .category-wall-inner {
    background: radial-gradient(110.05% 57.55% at 71.71% 49.89%, rgba(255, 255, 255, 0.40) 32.45%, rgba(217, 217, 217, 0.00) 100%);
}

.wall-item.professional {
    background: rgba(201, 60, 129, 0.20);
}

.wall-item.professional .category-wall-inner {
    background: radial-gradient(90.91% 50.03% at 77.11% 55.52%, rgba(255, 255, 255, 0.40) 32.45%, rgba(217, 217, 217, 0.00) 100%);
}

.wall-item.vet_line {
    background: rgba(87, 192, 167, 0.20);
}

.wall-item.vet_line .category-wall-inner {
    background: #F3F3F3;
}

.wall-item.softvet .category-wall-inner {
    background: #e4f7e8;
}

.wall-item.profiline .category-wall-inner {
    background: #d1e7f3;
}

.category-mod {
    display: none;
}

.category-mod .wall-item img {
    margin-left: auto;
    display: block;
}

@media (min-width: 576px) {
    .wall-title {
        top: 40px;
        left: 40px;
    }

    .wall-more {
        bottom: 40px;
        left: 40px;
    }

    .category-mod .wall-title {
        top: 20px;
        left: 20px;
    }

    .category-mod .wall-more {
        bottom: 20px;
        left: 20px;
    }
}

@media (min-width: 992px) {

    .category-mod {
        display: block;
    }

    .category-wall {
        margin-bottom: 50px;
    }

    .wall-item {
        margin-bottom: 30px;
    }

    .wall-title {
        font-size: 42px;
    }

    .wall-title span {
        font-size: 14px;
        margin-top: 0.75rem;
    }

    .wall-more {
        font-size: 16px;
    }

    .category-mod .wall-title {
        font-size: 30px;
        max-width: 60%;
    }

    .category-mod .wall-more {
        font-size: 14px;
    }

    .category-mod .wall-title span {
        font-size: 12px;
        line-height: 1.3;
    }

}