x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<div class="tw:p-6 tw:max-w-7xl tw:mx-auto tw:space-y-8">
<!-- Introductory tw-callout -->
<div class="tw-callout">
<p class="tw:mb-1 tw:text-sm tw:font-mono">
<strong>INFO GRID:</strong> 2-column label–value grid for structured data display<br>
<strong>COMPOSES:</strong> Typography utilities | Color utilities<br>
<strong>VARIANTS:</strong> Default (2-col) | Compact (.info-grid-sm) | Inline (.info-grid-inline) | Bordered (.info-grid-bordered) | Single column (.info-grid-1) | Three column (.info-grid-3)
</p>
<p class="tw:mb-0 tw:text-sm">
Used in drawer summaries, record sidebars, and tw-expanded tw-card details to display
key–value information in a scannable grid layout.
</p>
</div>
<!-- Section 1: Default 2-Column -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Default (2-Column)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Base:</strong> 2-column grid with semibold labels and normal-weight values.
Each item is a label–value pair occupying one grid cell. Uses semantic
<code><dl></code>/<code><dt></code>/<code><dd></code> markup.
</p>
</div>
<div class="tw:max-w-md tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid">
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Enquiry Date</dt>
<dd class="tw-info-grid-value">26 Nov 2025</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
<div>
<dt class="tw-info-grid-label">Year Group</dt>
<dd class="tw-info-grid-value">Year 7</dd>
</div>
<div>
<dt class="tw-info-grid-label">Assigned To</dt>
<dd class="tw-info-grid-value">Sarah Thompson</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid"><div><dt class="tw-info-grid-label">Label</dt><dd class="tw-info-grid-value">Value</dd></div>...</dl></code>
</div>
</div>
<!-- Section 2: With Badges and Rich Values -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Rich Values (Badges, Links)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Values:</strong> The <code>.info-grid-value</code> cell can contain any content — text, badges, links, or other components.
</p>
</div>
<div class="tw:max-w-md tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid">
<div>
<dt class="tw-info-grid-label">Status</dt>
<dd class="tw-info-grid-value">
<span class="tw-badge tw-badge-success-subtle tw-badge-sm">Active</span>
</dd>
</div>
<div>
<dt class="tw-info-grid-label">Priority</dt>
<dd class="tw-info-grid-value">
<span class="tw-badge tw-badge-danger-subtle tw-badge-sm">High</span>
</dd>
</div>
<div>
<dt class="tw-info-grid-label">Email</dt>
<dd class="tw-info-grid-value tw:text-blue-600">jack.davies@email.com</dd>
</div>
<div>
<dt class="tw-info-grid-label">Phone</dt>
<dd class="tw-info-grid-value">+44 7700 900123</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dd class="tw-info-grid-value"><span class="tw-badge tw-badge-success-subtle tw-badge-sm">Active</span></dd></code>
</div>
</div>
<!-- Section 3: Compact Variant -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Compact Variant (.info-grid-sm)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Compact:</strong> Tighter gaps and smaller value text for tw-expanded cards and narrow panels.
Add <code>.info-grid-sm</code> alongside <code>.info-grid</code>.
</p>
</div>
<div class="tw:max-w-sm tw:p-3 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid tw-info-grid-sm">
<div>
<dt class="tw-info-grid-label">Year Group</dt>
<dd class="tw-info-grid-value">Year 7</dd>
</div>
<div>
<dt class="tw-info-grid-label">DOB</dt>
<dd class="tw-info-grid-value">15/03/2013</dd>
</div>
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-sm">...</dl></code>
</div>
</div>
<!-- Section 4: Inline Variant -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Inline Variant (.info-grid-inline)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Inline:</strong> Label and value on the same line, each pair stacking vertically.
Labels get a consistent minimum width; values fill remaining space.
Add <code>.info-grid-inline</code> alongside <code>.info-grid</code>.
</p>
</div>
<div class="tw:max-w-md tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid tw-info-grid-inline">
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Enquiry Date</dt>
<dd class="tw-info-grid-value">26 Nov 2025</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-inline">...</dl></code>
</div>
</div>
<!-- Section 5: Bordered Variant -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Bordered Variant (.info-grid-bordered)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Bordered:</strong> Subtle bottom border between each pair for visual separation.
Works well with <code>.info-grid-inline</code> and <code>.info-grid-1</code> for list-style layouts.
</p>
</div>
<div class="tw:flex tw:flex-wrap tw:gap-6">
<!-- Bordered + Inline -->
<div class="tw:max-w-md tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Inline + Bordered</h3>
<dl class="tw-info-grid tw-info-grid-inline tw-info-grid-bordered">
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Enquiry Date</dt>
<dd class="tw-info-grid-value">26 Nov 2025</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
</dl>
</div>
<!-- Bordered + Single column -->
<div class="tw:max-w-xs tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Single Column + Bordered</h3>
<dl class="tw-info-grid tw-info-grid-1 tw-info-grid-bordered">
<div>
<dt class="tw-info-grid-label">Full Name</dt>
<dd class="tw-info-grid-value">Oscar Clarke</dd>
</div>
<div>
<dt class="tw-info-grid-label">Email</dt>
<dd class="tw-info-grid-value">jack.davies@email.com</dd>
</div>
<div>
<dt class="tw-info-grid-label">Phone</dt>
<dd class="tw-info-grid-value">+44 7700 900123</dd>
</div>
</dl>
</div>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-inline tw-info-grid-bordered">...</dl></code>
</div>
</div>
<!-- Section 6: Column Variants -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Column Variants</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Layout:</strong> Override the default 2-column layout with <code>.info-grid-1</code> (single column)
or <code>.info-grid-3</code> (three columns) for different contexts.
</p>
</div>
<div class="tw:flex tw:flex-wrap tw:gap-6">
<!-- Single column -->
<div class="tw:max-w-xs tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Single Column (.info-grid-1)</h3>
<dl class="tw-info-grid tw-info-grid-1">
<div>
<dt class="tw-info-grid-label">Full Name</dt>
<dd class="tw-info-grid-value">Oscar Clarke</dd>
</div>
<div>
<dt class="tw-info-grid-label">Email</dt>
<dd class="tw-info-grid-value">jack.davies@email.com</dd>
</div>
<div>
<dt class="tw-info-grid-label">Phone</dt>
<dd class="tw-info-grid-value">+44 7700 900123</dd>
</div>
</dl>
</div>
<!-- Three column -->
<div class="tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Three Column (.info-grid-3)</h3>
<dl class="tw-info-grid tw-info-grid-3">
<div>
<dt class="tw-info-grid-label">Year</dt>
<dd class="tw-info-grid-value">Year 7</dd>
</div>
<div>
<dt class="tw-info-grid-label">Entry</dt>
<dd class="tw-info-grid-value">2026</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
<div>
<dt class="tw-info-grid-label">Assigned</dt>
<dd class="tw-info-grid-value">Sarah T</dd>
</div>
<div>
<dt class="tw-info-grid-label">Priority</dt>
<dd class="tw-info-grid-value">Normal</dd>
</div>
</dl>
</div>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-1">...</dl></code>  | 
<code><dl class="tw-info-grid tw-info-grid-3">...</dl></code>
</div>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<div class="tw:p-6 tw:max-w-7xl tw:mx-auto tw:space-y-8">
<!-- Introductory tw-callout -->
<div class="tw-callout">
<p class="tw:mb-1 tw:text-sm tw:font-mono">
<strong>INFO GRID:</strong> 2-column label–value grid for structured data display<br>
<strong>COMPOSES:</strong> Typography utilities | Color utilities<br>
<strong>VARIANTS:</strong> Default (2-col) | Compact (.info-grid-sm) | Inline (.info-grid-inline) | Bordered (.info-grid-bordered) | Single column (.info-grid-1) | Three column (.info-grid-3)
</p>
<p class="tw:mb-0 tw:text-sm">
Used in drawer summaries, record sidebars, and tw-expanded tw-card details to display
key–value information in a scannable grid layout.
</p>
</div>
<!-- Section 1: Default 2-Column -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Default (2-Column)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Base:</strong> 2-column grid with semibold labels and normal-weight values.
Each item is a label–value pair occupying one grid cell. Uses semantic
<code><dl></code>/<code><dt></code>/<code><dd></code> markup.
</p>
</div>
<div class="tw:max-w-md tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid">
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Enquiry Date</dt>
<dd class="tw-info-grid-value">26 Nov 2025</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
<div>
<dt class="tw-info-grid-label">Year Group</dt>
<dd class="tw-info-grid-value">Year 7</dd>
</div>
<div>
<dt class="tw-info-grid-label">Assigned To</dt>
<dd class="tw-info-grid-value">Sarah Thompson</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid"><div><dt class="tw-info-grid-label">Label</dt><dd class="tw-info-grid-value">Value</dd></div>...</dl></code>
</div>
</div>
<!-- Section 2: With Badges and Rich Values -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Rich Values (Badges, Links)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Values:</strong> The <code>.info-grid-value</code> cell can contain any content — text, badges, links, or other components.
</p>
</div>
<div class="tw:max-w-md tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid">
<div>
<dt class="tw-info-grid-label">Status</dt>
<dd class="tw-info-grid-value">
<span class="tw-badge tw-badge-success-subtle tw-badge-sm">Active</span>
</dd>
</div>
<div>
<dt class="tw-info-grid-label">Priority</dt>
<dd class="tw-info-grid-value">
<span class="tw-badge tw-badge-danger-subtle tw-badge-sm">High</span>
</dd>
</div>
<div>
<dt class="tw-info-grid-label">Email</dt>
<dd class="tw-info-grid-value tw:text-blue-600">jack.davies@email.com</dd>
</div>
<div>
<dt class="tw-info-grid-label">Phone</dt>
<dd class="tw-info-grid-value">+44 7700 900123</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dd class="tw-info-grid-value"><span class="tw-badge tw-badge-success-subtle tw-badge-sm">Active</span></dd></code>
</div>
</div>
<!-- Section 3: Compact Variant -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Compact Variant (.info-grid-sm)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Compact:</strong> Tighter gaps and smaller value text for tw-expanded cards and narrow panels.
Add <code>.info-grid-sm</code> alongside <code>.info-grid</code>.
</p>
</div>
<div class="tw:max-w-sm tw:p-3 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid tw-info-grid-sm">
<div>
<dt class="tw-info-grid-label">Year Group</dt>
<dd class="tw-info-grid-value">Year 7</dd>
</div>
<div>
<dt class="tw-info-grid-label">DOB</dt>
<dd class="tw-info-grid-value">15/03/2013</dd>
</div>
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-sm">...</dl></code>
</div>
</div>
<!-- Section 4: Inline Variant -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Inline Variant (.info-grid-inline)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Inline:</strong> Label and value on the same line, each pair stacking vertically.
Labels get a consistent minimum width; values fill remaining space.
Add <code>.info-grid-inline</code> alongside <code>.info-grid</code>.
</p>
</div>
<div class="tw:max-w-md tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<dl class="tw-info-grid tw-info-grid-inline">
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Enquiry Date</dt>
<dd class="tw-info-grid-value">26 Nov 2025</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
</dl>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-inline">...</dl></code>
</div>
</div>
<!-- Section 5: Bordered Variant -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Bordered Variant (.info-grid-bordered)</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Bordered:</strong> Subtle bottom border between each pair for visual separation.
Works well with <code>.info-grid-inline</code> and <code>.info-grid-1</code> for list-style layouts.
</p>
</div>
<div class="tw:flex tw:flex-wrap tw:gap-6">
<!-- Bordered + Inline -->
<div class="tw:max-w-md tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Inline + Bordered</h3>
<dl class="tw-info-grid tw-info-grid-inline tw-info-grid-bordered">
<div>
<dt class="tw-info-grid-label">Current School</dt>
<dd class="tw-info-grid-value">Oakwood Primary</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Enquiry Date</dt>
<dd class="tw-info-grid-value">26 Nov 2025</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
</dl>
</div>
<!-- Bordered + Single column -->
<div class="tw:max-w-xs tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Single Column + Bordered</h3>
<dl class="tw-info-grid tw-info-grid-1 tw-info-grid-bordered">
<div>
<dt class="tw-info-grid-label">Full Name</dt>
<dd class="tw-info-grid-value">Oscar Clarke</dd>
</div>
<div>
<dt class="tw-info-grid-label">Email</dt>
<dd class="tw-info-grid-value">jack.davies@email.com</dd>
</div>
<div>
<dt class="tw-info-grid-label">Phone</dt>
<dd class="tw-info-grid-value">+44 7700 900123</dd>
</div>
</dl>
</div>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-inline tw-info-grid-bordered">...</dl></code>
</div>
</div>
<!-- Section 6: Column Variants -->
<div class="tw:border-t tw:pt-6">
<h2 class="tw-h4 tw:mb-4">Column Variants</h2>
<div class="tw-callout tw:mb-4">
<p class="tw:mb-0 tw:text-sm">
<strong>Layout:</strong> Override the default 2-column layout with <code>.info-grid-1</code> (single column)
or <code>.info-grid-3</code> (three columns) for different contexts.
</p>
</div>
<div class="tw:flex tw:flex-wrap tw:gap-6">
<!-- Single column -->
<div class="tw:max-w-xs tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Single Column (.info-grid-1)</h3>
<dl class="tw-info-grid tw-info-grid-1">
<div>
<dt class="tw-info-grid-label">Full Name</dt>
<dd class="tw-info-grid-value">Oscar Clarke</dd>
</div>
<div>
<dt class="tw-info-grid-label">Email</dt>
<dd class="tw-info-grid-value">jack.davies@email.com</dd>
</div>
<div>
<dt class="tw-info-grid-label">Phone</dt>
<dd class="tw-info-grid-value">+44 7700 900123</dd>
</div>
</dl>
</div>
<!-- Three column -->
<div class="tw:flex-1 tw:p-4 tw:bg-neutral-0 tw:rounded-lg tw:border tw:border-neutral-200">
<h3 class="tw-h6 tw:mb-3">Three Column (.info-grid-3)</h3>
<dl class="tw-info-grid tw-info-grid-3">
<div>
<dt class="tw-info-grid-label">Year</dt>
<dd class="tw-info-grid-value">Year 7</dd>
</div>
<div>
<dt class="tw-info-grid-label">Entry</dt>
<dd class="tw-info-grid-value">2026</dd>
</div>
<div>
<dt class="tw-info-grid-label">Source</dt>
<dd class="tw-info-grid-value">Open Day</dd>
</div>
<div>
<dt class="tw-info-grid-label">Stage</dt>
<dd class="tw-info-grid-value">Engaged</dd>
</div>
<div>
<dt class="tw-info-grid-label">Assigned</dt>
<dd class="tw-info-grid-value">Sarah T</dd>
</div>
<div>
<dt class="tw-info-grid-label">Priority</dt>
<dd class="tw-info-grid-value">Normal</dd>
</div>
</dl>
</div>
</div>
<div class="tw:mt-4 tw:text-sm tw:text-gray-600">
<code><dl class="tw-info-grid tw-info-grid-1">...</dl></code>  | 
<code><dl class="tw-info-grid tw-info-grid-3">...</dl></code>
</div>
</div>
</div>