.category-card-link{
  text-decoration:none;
  color:inherit;
  display:block;
}
.category-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(15,23,42,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}
.category-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 44px rgba(15,23,42,.12);
}
.category-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#f8fafc;
}
.category-card-body{
  padding:16px;
}
.category-card h3{
  margin:0 0 8px;
  font-size:1rem;
}
.category-card p{
  margin:0;
  color:#64748b;
  line-height:1.6;
  font-size:.94rem;
}

/* Categories polish — colors untouched */
.category-card{height:100%; min-width:0}
.category-card img{display:block}
.category-card :where(h1,h2,h3,p){overflow-wrap:anywhere}
@media (max-width:560px){
  .category-card{border-radius:18px}
}

/* Category page motion + mobile finish - colors preserved */
.category-card-link{
  height:100%;
}

.category-card{
  transform-origin:center bottom;
}

.category-card-body{
  min-height:118px;
}

.category-card h3{
  line-height:1.25;
}

.category-card p{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

@media (max-width:640px){
  .category-card-body{
    padding:12px;
    min-height:104px;
  }

  .category-card h3{
    font-size:.95rem;
  }

  .category-card p{
    font-size:.84rem;
    line-height:1.45;
  }
}
