/**
 * cards.css — Meadow Lane Park
 * General-purpose card component.
 */

.card {
  background: white;
  border: 1px solid rgba(74,124,111,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}

.card--raised {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-teal-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-teal);
}

.card__title {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--clr-slate);
  margin-bottom: var(--space-2);
}

.card__body {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: var(--leading-normal);
}
