/* ─────────────────────────────────────────
   BLOCK: CATEGORIES
───────────────────────────────────────── */
.categories { background: #fff; padding: 70px 0; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ─────────────────────────────────────────
   BLOCK: CATEGORY-CARD
───────────────────────────────────────── */
.category-card {
  height: 300px;
  display: flex;
  justify-content: space-between;
  min-height: 170px;
  overflow: hidden;
  background: var(--gray-bg);
}

.category-card__body { flex: 1; padding: 32px 32px; display: flex; flex-direction: column; justify-content: space-between;}
.category-card__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.category-card__arrow-btn {
  width: 44px;
  height: 32px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--black)
}
.category-card__arrow-btn:hover { fill: var(--purple) }
.category-card__image {
  display: flex;
  max-width: 240px;
  align-items: end;
  justify-content: center;
}
