.bmh-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bmh-category-card {
  position: relative;
  min-height: 158px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--bmh-border);
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--bmh-shadow-soft);
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.bmh-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bmh-shadow);
}

.bmh-category-card:after {
  content: "";
  position: absolute;
  right: -28px;
  top: -32px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(242,140,40,.13);
}

.bmh-category-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eef8fb;
  box-shadow: 0 10px 26px rgba(8,47,79,.08);
  font-size: 24px;
}

.bmh-category-card strong {
  display: block;
  margin-top: 18px;
  color: var(--bmh-blue-dark);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 950;
}

.bmh-category-card small {
  display: block;
  margin-top: 6px;
  color: var(--bmh-muted);
  font-size: 13px;
  line-height: 1.35;
}
