import type { ReactNode } from 'react';

export interface FaqGridProps {
  /** An even number of `FaqItem`s, four in the template. */
  children: ReactNode;
}

/**
 * Two-column grid of FAQ cards (`.kwac-faq`), max 960px, stacked below 740px.
 * Belongs on an `alt` band.
 */
export function FaqGrid({ children }: FaqGridProps) {
  return <div className="kwac-faq">{children}</div>;
}
