.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-content {
  padding: 1.5rem;
}
.card-category {
  display: block;
  color: #97B879;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.card h3 {
  margin-bottom: 1rem;
  color: #1A5F3F;
}
