.ws-category-card {
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    transition: all .5s;
}
.ws-category-card .cat-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ws-category-card .cat-img-wrap:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(162deg, rgba(0, 0, 0, 0.60) 3.65%, rgba(0, 0, 0, 0.28) 24.24%, rgba(0, 0, 0, 0.00) 67.58%) no-repeat;
}
.ws-category-card .cat-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s;
}
.ws-category-card:hover .cat-img-wrap img {
    transform: scale(1.03);
}
.ws-category-card span {
    display: block;
    color: #FFF;
    font-weight: 600;
    position: absolute;
    z-index: 2;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 2rem);
    line-height: 1.2;
    white-space: normal;
    hyphens: auto;
}
@media (min-width: 768px) and (max-width:991px) {
    .ws-category-card span {
        top: 1rem;
        left: 1rem;
        width: calc(100% - 1rem);
    }    
}
@media (min-width: 768px) {
    .ws-category-card {
        aspect-ratio: 0.75;
    }
}
@media (max-width: 767px) {
    .ws-category-card {
        aspect-ratio: 0.75;
    }
}
