/* Make category images taller and cover the card top */
.category-img #important{
  width: 100%;
  height: 650px;      /* Increase this value for more height */
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

/* Make the card itself taller */
.category-card {
  height: 100%;
  min-height: 650px;  /* Adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}