.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.help-card {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--mist-50);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.help-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}

.help-card__mono {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--ink-900);
  color: var(--lime-400);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
}

.help-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.help-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
