"use client"; import { cn } from "@app/lib/cn"; export function InfoSections({ children, cols, columnSizing = "content" }: { children: React.ReactNode; cols?: number; /** content (default): fixed gap, columns hug content, left-aligned; fill: equal-width columns across the row */ columnSizing?: "fill" | "content"; }) { const n = cols || 1; const track = columnSizing === "fill" ? "minmax(0, 1fr)" : "minmax(0, max-content)"; return (