.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.category-card-body {
  flex-grow: 1;
}

.category-title-small {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.category-sublist {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.category-sublist li {
  margin-bottom: 0.25rem;
}

.category-sublist a {
  text-decoration: none;
  color: #007bff;
  font-size: 0.9rem;
}

.category-sublist a:hover {
  text-decoration: underline;
}

.category-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.category-button:hover {
  background-color: #0056b3;
}

.category-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
