.wccb {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.wccb__cats {
  width: 220px;
  flex: 0 0 220px;
}

.wccb__catlist {
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.wccb__catlist li {
    margin: 0 0 10px;
    list-style: none;
    padding-left: 0;
}

.wccb__cat {
  text-decoration: none;
  display: inline-block;
  font-family: 'Georgia', Georgia, "Times New Roman", serif;
}

.wccb__cat.is-active {
  font-weight: 700;
  text-decoration: underline;
}

.wccb__products {
  flex: 1 1 auto;
  min-width: 0;
}

.wccb__grid {
  display: grid;
  gap: 18px;
}

.wccb__card {

}

.wccb__img {
    box-shadow: none !important;
    margin: 0px 0px 9px !important;
}

.wccb__title {
      font-family: Georgia, Georgia, "Times New Roman", serif;
    line-height: 1.3 !important;
        padding: .5em 0;
    margin: 0;
    font-size: 1em;
}

.wccb__grid--cols-1 { grid-template-columns: 1fr; }
.wccb__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.wccb__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.wccb__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.wccb__img img {
  width: 100%;
  height: auto;
  display: block;
}

.wccb.is-loading .wccb__products {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 980px) {
  .wccb { flex-direction: column; }
  .wccb__cats { width: 100%; flex: 0 0 auto; }
  .wccb__grid--cols-3,
  .wccb__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wccb__grid { grid-template-columns: 1fr !important; }
}