.category-card {
  display: flex;
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}

.category-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 14px;
  border: 1px solid #ccc;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: zoom-in;
}

.category-card img:hover,
.category-card img:active {
  transform: scale(1.13);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.category-text {
  max-width: 420px;
  text-align: justify;
  font-size: 14.5px;
  line-height: 1.47;
  padding-right: 10px;
}

.category-text h3 {
  margin-top: 5px;
  color: #333;
}

@media(max-width: 660px) {
  .category-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .category-card img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .category-text {
    max-width: 95%;
  }
}
