.hcp-home-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.hcp-category-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.hcp-category-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hcp-category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.hcp-category-card h3 {
  margin: 12px 10px 8px;
  font-size: 18px;
}
.hcp-category-card p {
  margin: 0 10px 14px;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .hcp-home-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .hcp-home-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hcp-category-card img {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .hcp-home-categories {
    grid-template-columns: 1fr;
  }
}
