.wv_cats-bg{
    width: 400px;
    height: 250px;
    position: absolute;
    left: 0;
    top: 30%;
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
}
.wv_cats-right{min-height: 350px;}
.wv_cats-right ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}
.wv_cats-right ul li{
	--background: #fff;
    --background-image: #fff, rgba(0, 107, 175, 0.2);
    --text-color: #666;
    --text-headline: #000;
    --card-shadow: #0082ff;
    --card-height: 190px;
    --card-width: 190px;
    --card-radius: 12px;
    --header-height: 47px;
    --blend-mode: overlay;
    --transition: 0.15s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wv_cats-right ul li .wv_cats-body {
  display: grid;
  grid-auto-rows: calc(var(--card-height) - var(--header-height)) auto;
  background: var(--background);
  height: var(--card-height);
  width: var(--card-width);
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  transform: scale(var(--scale, 1)) translateZ(0);
}
.wv_cats-right ul li .wv_cats-body:hover{text-decoration: none}
.wv_cats-cover {
    --c-border:
    var(--card-radius) var(--card-radius) 0 0;
    --c-width: 100%;
    --c-height: 100%;
    position: relative;
    overflow: hidden;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, var(--x-y1, 100% 90%), var(--x-y2, 67% 83%), var(--x-y3, 33% 90%), var(--x-y4, 0% 85%));
    clip-path: polygon(0% 0%, 100% 0%, var(--x-y1, 100% 90%), var(--x-y2, 67% 83%), var(--x-y3, 33% 90%), var(--x-y4, 0% 85%));
    display: flex;
    justify-content: center;
    align-items: center;
}
.wv_cats-cover:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--c-width);
  height: var(--c-height);
  border-radius: var(--c-border);
  background: linear-gradient(to bottom right, var(--background-image));
  mix-blend-mode: var(--blend-mode);
  opacity: var(--opacity-bg, 1);
  transition: opacity var(--transition) linear;
}
.wv_cats-image {
    width: 100px;
    height: auto;
    -o-object-fit: cover;
    border-radius: var(--c-border);
    filter: var(--filter-bg, grayscale(1));
    margin-top: -15px;
}
svg.wv_cats-image {height: 3em;width: 3em;color: #d9aa0f;}
.wv_cats-right ul .wv_cats-body:hover .wv_cats-image {
    --filter-bg: grayscale(0);
}
.wv_cats-right ul li:nth-child(odd) .wv_cats-image {
    --x-y1: 100% 90%;
    --x-y2: 67% 83%;
    --x-y3: 33% 90%;
    --x-y4: 0% 85%;
}
.wv_cats-header {
  height: var(--header-height);
  background: var(--background);
  padding: 0 10px 10px 13px;
  margin-top: -5px;
}
.wv_cats-title {
  color: var(--text-headline);
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 1rem;
}
.wv_cats-subtitle {
  color: var(--text-color);
  font-size: 0.9rem;
  margin:0
}