.category {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(35, 29, 70, .05);
}
.category::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b7aaf8, var(--primary));
  transform: scaleX(.25);
  transform-origin: right;
  transition: transform .3s ease;
}
.category::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -34px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 18px solid rgba(107, 82, 229, .06);
  transition: transform .3s ease;
}
.category b {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  margin-top: 34px;
  font-size: 15px;
}
.category small {
  position: relative;
  z-index: 1;
}
.category:hover,
.category.active {
  border-color: rgba(107, 82, 229, .6);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(44, 35, 89, .13);
}
.category:hover::before,
.category.active::before { transform: scaleX(1); }
.category:hover::after,
.category.active::after { transform: scale(1.15); }
.category.active small { color: var(--muted); }
body.dark .category {
  background: var(--white);
  color: var(--ink);
}
@media (max-width: 650px) {
  .category { min-height: 125px; }
  .category b { margin-top: 24px; }
}
