.card {
  background: var(--q-surface);
  border: 1px solid var(--q-stroke);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: border-color var(--dur-micro) var(--q-ease-out);
}

.card:hover {
  border-color: var(--q-stroke-strong);
}

.card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--q-accent);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-code);
}

.card h3 {
  margin-bottom: 6px;
}

.card p {
  color: var(--q-text-secondary);
  font-size: var(--text-caption);
  line-height: 1.6;
}
