.faq-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.faq-usecase {
  padding-bottom: 1.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.faq-usecase h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.faq-usecase p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-block {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.faq-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 0.15rem;
  flex-shrink: 0;
  width: 1.75rem;
  color: var(--success);
}

.faq-block h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.faq-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-block code {
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.8125rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  color: var(--accent);
}

@media (max-width: 600px) {
  .faq-card h2 {
    font-size: 1rem;
    margin-bottom: 1.125rem;
  }

  .faq-block {
    gap: 0.75rem;
  }

  .faq-icon {
    width: 1.5rem;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }
}
