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;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 1000;
}

.modal {
  background: white;
  padding: 24px;
  border-radius: 12px;
  width: 350px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);

  display: flex;
  flex-direction: column;
  gap: 10px;
}
