/* Support section. Prefix qbng- : the site's design system owns bd-card. */
.qbng-support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 900px;
}
.qbng-support-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 0.5rem;
  background: linear-gradient(145deg, #0F1629, #151D35);
}
.qbng-support-card:hover { border-color: rgba(0, 212, 255, 0.40); }
.qbng-support-card h3 { margin: 0; font-size: 1.125rem; font-weight: 600; line-height: 1.35; }
.qbng-support-card p  { margin: 0; font-size: 0.875rem; color: #94A3B8; flex: 1; }
.qbng-chip {
  display: inline-block; padding: 0.15rem 0.45rem; border-radius: 3px;
  font-size: 0.6875rem; color: #94A3B8;
  background: #1A2340; border: 1px solid rgba(0, 212, 255, 0.12);
}
.qbng-go { font-size: 0.875rem; color: #00D4FF; text-decoration: none; }
.qbng-go:hover { text-decoration: underline; }

@media (max-width: 600px) { .qbng-support-cards { grid-template-columns: 1fr; } }
