body {
  font-family: system-ui, sans-serif;
  background: #f4f6f8;
  padding: 32px;
}

#cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: cover;
}