/* Card grid — short feature cards, two per row from sm up */

.card-grid {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
}
.card__title {
  margin-bottom: 0.4rem;
}
.card__body {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
