count($content) == 2,
'md:grid-cols-3 ' => count($content) >= 3,
])>
@foreach ($content as $item)
@if ($item['heroicon'])
@svg('heroicon-o-'.$item['heroicon'], 'size-32 px-0 p-4 text-primary')
@endif
{{ $item['heading'] }}
{{ $item['subheading'] }}
{{ $item['content'] ?? 'Card content goes here. This is a placeholder for the main content of the card.' }}
@endforeach