.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 280px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
  height: auto;
}

.card-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
