---
// Grid-group template — for a set of sibling cards separated by hairlines.
//
// Note the separator technique: `gap: 1px` over a coloured parent background.
// That is DELIBERATE house style throughout this site, not a workaround.
// Do not "fix" it into `border`.
interface Props {
label: string;
/** Number of columns at the widest breakpoint. */
columns?: number;
}
const { label, columns = 3 } = Astro.props;
---