@levo-so/blocks 0.1.54 → 0.1.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/package.json +2 -2
  2. package/src/blocks/about-us/about-us-1.schema.ts +14 -0
  3. package/src/blocks/about-us/about-us-1.tsx +4 -2
  4. package/src/blocks/about-us/about-us-2.schema.ts +48 -0
  5. package/src/blocks/about-us/about-us-2.tsx +6 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +10 -0
  7. package/src/blocks/blogs/blog-listing-2.schema.ts +42 -162
  8. package/src/blocks/blogs/blog-listing-2.tsx +7 -0
  9. package/src/blocks/blogs/blog-listing-3.schema.ts +9 -0
  10. package/src/blocks/blogs/blog-post-1.schema.ts +7 -1
  11. package/src/blocks/blogs/blog-post-1.tsx +1 -1
  12. package/src/blocks/blogs/blog-post-2.schema.ts +464 -28
  13. package/src/blocks/blogs/blog-post-2.tsx +6 -13
  14. package/src/blocks/blogs/blog-post-3.schema.ts +42 -0
  15. package/src/blocks/blogs/blog-post-3.tsx +4 -1
  16. package/src/blocks/calendar/calendar-1.schema.ts +537 -0
  17. package/src/blocks/calendar/calendar-1.tsx +145 -0
  18. package/src/blocks/cards/cards-10.schema.ts +52 -4
  19. package/src/blocks/cards/cards-10.tsx +13 -1
  20. package/src/blocks/cards/cards-14.schema.ts +532 -0
  21. package/src/blocks/cards/cards-14.tsx +54 -0
  22. package/src/blocks/cards/cards-15.schema.ts +277 -0
  23. package/src/blocks/cards/cards-15.tsx +40 -0
  24. package/src/blocks/cards/cards-6.schema.ts +46 -0
  25. package/src/blocks/cards/cards-6.tsx +27 -1
  26. package/src/blocks/cards/cards-7.tsx +2 -0
  27. package/src/blocks/carousel/carousel-2.schema.ts +1128 -0
  28. package/src/blocks/carousel/carousel-2.tsx +159 -0
  29. package/src/blocks/content/content-5.schema.ts +112 -6
  30. package/src/blocks/content/content-5.tsx +19 -3
  31. package/src/blocks/content/content-6.schema.ts +16 -3
  32. package/src/blocks/content/content-6.tsx +1 -0
  33. package/src/blocks/content/content-8.schema.ts +125 -0
  34. package/src/blocks/content/content-8.tsx +27 -0
  35. package/src/blocks/content/content-9.schema.ts +2729 -0
  36. package/src/blocks/content/content-9.tsx +91 -0
  37. package/src/blocks/cta/cta-2.schema.ts +46 -4
  38. package/src/blocks/cta/cta-2.tsx +9 -1
  39. package/src/blocks/embed/embed-1.schema.ts +100 -0
  40. package/src/blocks/event/ClientOnly.tsx +27 -0
  41. package/src/blocks/event/event-details.tsx +10 -3
  42. package/src/blocks/event/event-listing-3.tsx +9 -2
  43. package/src/blocks/event/event-listing-4.tsx +11 -2
  44. package/src/blocks/event/event-listing.tsx +11 -4
  45. package/src/blocks/faq/faq-1.schema.ts +58 -1
  46. package/src/blocks/faq/faq-1.tsx +18 -1
  47. package/src/blocks/faq/faq-2.tsx +2 -1
  48. package/src/blocks/faq/faq-3.schema.ts +6 -1
  49. package/src/blocks/faq/faq-3.tsx +1 -0
  50. package/src/blocks/features/features-1/features-1.schema.ts +2 -0
  51. package/src/blocks/features/features-1/variants/index.ts +2 -0
  52. package/src/blocks/features/features-1/variants/stylized-cards-v3.ts +451 -0
  53. package/src/blocks/features/features-4.schema.ts +358 -20
  54. package/src/blocks/features/features-4.tsx +3 -1
  55. package/src/blocks/features/features-6.tsx +2 -0
  56. package/src/blocks/filter-listing/filter-listing-1.schema.ts +614 -0
  57. package/src/blocks/filter-listing/filter-listing-1.tsx +128 -0
  58. package/src/blocks/footer/footer-6.schema.ts +2 -2
  59. package/src/blocks/hero/hero-11.schema.ts +849 -0
  60. package/src/blocks/hero/hero-11.tsx +59 -0
  61. package/src/blocks/hero/hero-12.schema.ts +712 -0
  62. package/src/blocks/hero/hero-12.tsx +76 -0
  63. package/src/blocks/hero/hero-13.schema.ts +238 -0
  64. package/src/blocks/hero/hero-13.tsx +31 -0
  65. package/src/blocks/hero/hero-4.tsx +2 -0
  66. package/src/blocks/hero/hero-5.tsx +2 -0
  67. package/src/blocks/hero/hero-7.tsx +2 -1
  68. package/src/blocks/hero/hero-8.tsx +2 -0
  69. package/src/blocks/hero/hero-9.schema.ts +5 -0
  70. package/src/blocks/hero/hero-9.tsx +2 -0
  71. package/src/blocks/index.ts +27 -0
  72. package/src/blocks/navbar/navbar-1.schema.ts +6 -6
  73. package/src/blocks/navbar/navbar-1.tsx +6 -7
  74. package/src/blocks/navbar/navbar-2.schema.ts +9 -9
  75. package/src/blocks/navbar/navbar-2.tsx +7 -8
  76. package/src/blocks/navbar/navbar-3.schema.ts +9 -9
  77. package/src/blocks/navbar/navbar-3.tsx +139 -114
  78. package/src/blocks/polling/polling-1.schema.ts +134 -0
  79. package/src/blocks/polling/polling-1.tsx +466 -0
  80. package/src/blocks/products/products-listing-2.schema.ts +596 -0
  81. package/src/blocks/products/products-listing-2.tsx +56 -0
  82. package/src/blocks/products/products-listing-3.schema.ts +818 -0
  83. package/src/blocks/products/products-listing-3.tsx +125 -0
  84. package/src/blocks/profile/profile-2.schema.ts +505 -0
  85. package/src/blocks/profile/profile-2.tsx +64 -0
  86. package/src/blocks/profile/profile-3.schema.ts +867 -0
  87. package/src/blocks/profile/profile-3.tsx +98 -0
  88. package/src/blocks/services/service-1.schema.ts +1743 -0
  89. package/src/blocks/services/service-1.tsx +139 -0
  90. package/src/blocks/services/service-2.schema.ts +433 -0
  91. package/src/blocks/services/service-2.tsx +98 -0
  92. package/src/blocks/services/service-3.schema.ts +631 -0
  93. package/src/blocks/services/service-3.tsx +135 -0
  94. package/src/blocks/tabs/tab-1.schema.ts +831 -0
  95. package/src/blocks/tabs/tab-1.tsx +126 -0
  96. package/src/blocks/tabs/tab-2.schema.ts +767 -0
  97. package/src/blocks/tabs/tab-2.tsx +60 -0
  98. package/src/blocks/team/team-3.schema.ts +5 -1
  99. package/src/blocks/team/team-3.tsx +7 -0
  100. package/src/blocks/team/team-4.schema.ts +17 -13
  101. package/src/blocks/team/team-4.tsx +4 -1
  102. package/src/blocks/team/team-5.schema.ts +369 -0
  103. package/src/blocks/team/team-5.tsx +38 -0
  104. package/src/blocks/testimonial/testimonial-1.tsx +0 -1
  105. package/src/blocks/testimonial/testimonial-2.tsx +2 -1
  106. package/src/blocks/testimonial/testimonial-3.tsx +2 -0
  107. package/src/blocks/testimonial/testimonial-4.tsx +2 -1
  108. package/src/blocks/testimonial/testimonial-5.tsx +2 -0
  109. package/src/blocks/testimonial/testimonial-6.tsx +2 -1
  110. package/src/blocks/testimonial/testimonial-7.schema.ts +438 -0
  111. package/src/blocks/testimonial/testimonial-7.tsx +125 -0
  112. package/src/blocks/timeline/timeline-1.schema.ts +741 -0
  113. package/src/blocks/timeline/timeline-1.tsx +52 -0
  114. package/src/blocks/users/edit-profile.schema.ts +294 -0
  115. package/src/blocks/users/edit-profile.tsx +184 -0
  116. package/src/schemas/blocks.ts +64 -12
  117. package/src/schemas/categories.ts +36 -0
@@ -0,0 +1,2729 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ title: "Comprehensive Solutions Overview",
7
+ sections: [
8
+ {
9
+ wrapper: null,
10
+ trigger: null,
11
+ content: null,
12
+ sectionTitle: "Technology Solutions",
13
+ container: null,
14
+ headerContainer: null,
15
+ iconLabelContainer: null,
16
+ icon: {
17
+ kind: "icon",
18
+ data: {
19
+ id: "arrow-circle-right",
20
+ label: "Arrow Circle Right",
21
+ tags: ["arrow", "circle", "custom", "directional", "right"],
22
+ svgCode:
23
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M10.7397 16.28C10.5497 16.28 10.3597 16.21 10.2097 16.06C9.91969 15.77 9.91969 15.29 10.2097 15L13.2097 12L10.2097 8.99997C9.91969 8.70997 9.91969 8.22997 10.2097 7.93997C10.4997 7.64997 10.9797 7.64997 11.2697 7.93997L14.7997 11.47C15.0897 11.76 15.0897 12.24 14.7997 12.53L11.2697 16.06C11.1197 16.21 10.9297 16.28 10.7397 16.28Z" fill="var(--color-icon-primary)"/>\n</svg>',
24
+ },
25
+ },
26
+ label: "Technology",
27
+ title: "Advanced Technology Infrastructure",
28
+ cards: [
29
+ {
30
+ card: null,
31
+ label: "Cloud Computing",
32
+ title: "Scalable Cloud Infrastructure",
33
+ description:
34
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
35
+ },
36
+ {
37
+ card: null,
38
+ label: "Cloud Computing",
39
+ title: "Scalable Cloud Infrastructure",
40
+ description:
41
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
42
+ },
43
+ {
44
+ card: null,
45
+ label: "Cloud Computing",
46
+ title: "Scalable Cloud Infrastructure",
47
+ description:
48
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
49
+ },
50
+ {
51
+ card: null,
52
+ label: "Cloud Computing",
53
+ title: "Scalable Cloud Infrastructure",
54
+ description:
55
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
56
+ },
57
+ ],
58
+ },
59
+ {
60
+ wrapper: null,
61
+ trigger: null,
62
+ content: null,
63
+ sectionTitle: "Technology Solutions",
64
+ container: null,
65
+ headerContainer: null,
66
+ iconLabelContainer: null,
67
+ icon: {
68
+ kind: "icon",
69
+ data: {
70
+ id: "arrow-circle-right",
71
+ label: "Arrow Circle Right",
72
+ tags: ["arrow", "circle", "custom", "directional", "right"],
73
+ svgCode:
74
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M10.7397 16.28C10.5497 16.28 10.3597 16.21 10.2097 16.06C9.91969 15.77 9.91969 15.29 10.2097 15L13.2097 12L10.2097 8.99997C9.91969 8.70997 9.91969 8.22997 10.2097 7.93997C10.4997 7.64997 10.9797 7.64997 11.2697 7.93997L14.7997 11.47C15.0897 11.76 15.0897 12.24 14.7997 12.53L11.2697 16.06C11.1197 16.21 10.9297 16.28 10.7397 16.28Z" fill="var(--color-icon-primary)"/>\n</svg>',
75
+ },
76
+ },
77
+ label: "Technology",
78
+ title: "Advanced Technology Infrastructure",
79
+ cards: [
80
+ {
81
+ card: null,
82
+ label: "Cloud Computing",
83
+ title: "Scalable Cloud Infrastructure",
84
+ description:
85
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
86
+ },
87
+ {
88
+ card: null,
89
+ label: "Cloud Computing",
90
+ title: "Scalable Cloud Infrastructure",
91
+ description:
92
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
93
+ },
94
+ {
95
+ card: null,
96
+ label: "Cloud Computing",
97
+ title: "Scalable Cloud Infrastructure",
98
+ description:
99
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
100
+ },
101
+ {
102
+ card: null,
103
+ label: "Cloud Computing",
104
+ title: "Scalable Cloud Infrastructure",
105
+ description:
106
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
107
+ },
108
+ ],
109
+ },
110
+ {
111
+ wrapper: null,
112
+ trigger: null,
113
+ content: null,
114
+ sectionTitle: "Technology Solutions",
115
+ container: null,
116
+ headerContainer: null,
117
+ iconLabelContainer: null,
118
+ icon: {
119
+ kind: "icon",
120
+ data: {
121
+ id: "arrow-circle-right",
122
+ label: "Arrow Circle Right",
123
+ tags: ["arrow", "circle", "custom", "directional", "right"],
124
+ svgCode:
125
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M10.7397 16.28C10.5497 16.28 10.3597 16.21 10.2097 16.06C9.91969 15.77 9.91969 15.29 10.2097 15L13.2097 12L10.2097 8.99997C9.91969 8.70997 9.91969 8.22997 10.2097 7.93997C10.4997 7.64997 10.9797 7.64997 11.2697 7.93997L14.7997 11.47C15.0897 11.76 15.0897 12.24 14.7997 12.53L11.2697 16.06C11.1197 16.21 10.9297 16.28 10.7397 16.28Z" fill="var(--color-icon-primary)"/>\n</svg>',
126
+ },
127
+ },
128
+ label: "Technology",
129
+ title: "Advanced Technology Infrastructure",
130
+ cards: [
131
+ {
132
+ card: null,
133
+ label: "Cloud Computing",
134
+ title: "Scalable Cloud Infrastructure",
135
+ description:
136
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
137
+ },
138
+ {
139
+ card: null,
140
+ label: "Cloud Computing",
141
+ title: "Scalable Cloud Infrastructure",
142
+ description:
143
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
144
+ },
145
+ {
146
+ card: null,
147
+ label: "Cloud Computing",
148
+ title: "Scalable Cloud Infrastructure",
149
+ description:
150
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
151
+ },
152
+ {
153
+ card: null,
154
+ label: "Cloud Computing",
155
+ title: "Scalable Cloud Infrastructure",
156
+ description:
157
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
158
+ },
159
+ ],
160
+ },
161
+ {
162
+ wrapper: null,
163
+ trigger: null,
164
+ content: null,
165
+ sectionTitle: "Technology Solutions",
166
+ container: null,
167
+ headerContainer: null,
168
+ iconLabelContainer: null,
169
+ icon: {
170
+ kind: "icon",
171
+ data: {
172
+ id: "arrow-circle-right",
173
+ label: "Arrow Circle Right",
174
+ tags: ["arrow", "circle", "custom", "directional", "right"],
175
+ svgCode:
176
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M10.7397 16.28C10.5497 16.28 10.3597 16.21 10.2097 16.06C9.91969 15.77 9.91969 15.29 10.2097 15L13.2097 12L10.2097 8.99997C9.91969 8.70997 9.91969 8.22997 10.2097 7.93997C10.4997 7.64997 10.9797 7.64997 11.2697 7.93997L14.7997 11.47C15.0897 11.76 15.0897 12.24 14.7997 12.53L11.2697 16.06C11.1197 16.21 10.9297 16.28 10.7397 16.28Z" fill="var(--color-icon-primary)"/>\n</svg>',
177
+ },
178
+ },
179
+ label: "Technology",
180
+ title: "Advanced Technology Infrastructure",
181
+ cards: [
182
+ {
183
+ card: null,
184
+ label: "Cloud Computing",
185
+ title: "Scalable Cloud Infrastructure",
186
+ description:
187
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
188
+ },
189
+ {
190
+ card: null,
191
+ label: "Cloud Computing",
192
+ title: "Scalable Cloud Infrastructure",
193
+ description:
194
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
195
+ },
196
+ {
197
+ card: null,
198
+ label: "Cloud Computing",
199
+ title: "Scalable Cloud Infrastructure",
200
+ description:
201
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
202
+ },
203
+ {
204
+ card: null,
205
+ label: "Cloud Computing",
206
+ title: "Scalable Cloud Infrastructure",
207
+ description:
208
+ "<p>The journey starts here — where your team and ours align on goals, scope, roles, and timelines. Together, we define responsibilities, set milestones, and establish a clear path forward for a smooth implementation.</p>",
209
+ },
210
+ ],
211
+ },
212
+ ],
213
+ };
214
+
215
+ export type IContent9Content = typeof DEFAULT_CONTENT;
216
+
217
+ export const Content9: IBlock = {
218
+ category_id: "content",
219
+ title: "Content 9",
220
+ key: "content-9",
221
+ version: "v1",
222
+ prompt_description:
223
+ "A content block with a main title and accordion sections. Each accordion contains an icon and label container, a title below it, and a group of cards with label, title, and description.",
224
+ content_schema: [
225
+ {
226
+ key: "layout",
227
+ label: "Layout",
228
+ field_interface: "LayoutWidget",
229
+ },
230
+ {
231
+ key: "container",
232
+ label: "Container",
233
+ field_interface: "ContainerWidget",
234
+ },
235
+ {
236
+ key: "title",
237
+ label: "Title",
238
+ field_interface: "HeadingWidget",
239
+ hint: {
240
+ prompt_description:
241
+ "The main title for the content block. Should be clear and descriptive, giving users an overview of what content they'll find in the accordions.",
242
+ min_characters: 16,
243
+ max_characters: 40,
244
+ },
245
+ },
246
+ {
247
+ key: "sections",
248
+ label: "Sections",
249
+ field_interface: "BoxWidget",
250
+ kind: "group",
251
+ fields: [
252
+ {
253
+ key: "wrapper",
254
+ label: "Wrapper",
255
+ field_interface: "BoxWidget",
256
+ },
257
+ {
258
+ key: "trigger",
259
+ label: "Trigger",
260
+ field_interface: "BoxWidget",
261
+ },
262
+ {
263
+ key: "content",
264
+ label: "Content",
265
+ field_interface: "BoxWidget",
266
+ },
267
+ {
268
+ key: "container",
269
+ label: "Container",
270
+ field_interface: "BoxWidget",
271
+ },
272
+ {
273
+ key: "headerContainer",
274
+ label: "Header Container",
275
+ field_interface: "BoxWidget",
276
+ },
277
+ {
278
+ key: "iconLabelContainer",
279
+ label: "Icon Label Container",
280
+ field_interface: "BoxWidget",
281
+ },
282
+ {
283
+ key: "icon",
284
+ label: "Icon",
285
+ field_interface: "IconWidget",
286
+ },
287
+ {
288
+ key: "label",
289
+ label: "Label",
290
+ field_interface: "TypographyWidget",
291
+ hint: {
292
+ prompt_description:
293
+ "A short label that categorizes the section content. Should be 1-2 words maximum.",
294
+ min_characters: 8,
295
+ max_characters: 20,
296
+ },
297
+ },
298
+ {
299
+ key: "title",
300
+ label: "Title",
301
+ field_interface: "TypographyWidget",
302
+ hint: {
303
+ prompt_description:
304
+ "The main title that appears below the icon and label. Should provide context for the cards that follow.",
305
+ min_characters: 24,
306
+ max_characters: 60,
307
+ },
308
+ },
309
+ {
310
+ key: "cards",
311
+ label: "Cards",
312
+ field_interface: "BoxWidget",
313
+ kind: "group",
314
+ fields: [
315
+ {
316
+ key: "card",
317
+ label: "Card",
318
+ field_interface: "BoxWidget",
319
+ },
320
+ {
321
+ key: "label_container",
322
+ label: "Label Container",
323
+ field_interface: "BoxWidget",
324
+ },
325
+ {
326
+ key: "label_divider",
327
+ label: "Label Divider",
328
+ field_interface: "BoxWidget",
329
+ },
330
+ {
331
+ key: "label",
332
+ label: "Card Label",
333
+ field_interface: "TypographyWidget",
334
+ hint: {
335
+ prompt_description:
336
+ "A short label that categorizes the card content. Should be 1-2 words maximum.",
337
+ min_characters: 8,
338
+ max_characters: 20,
339
+ },
340
+ },
341
+ {
342
+ key: "title",
343
+ label: "Card Title",
344
+ field_interface: "TypographyWidget",
345
+ hint: {
346
+ prompt_description:
347
+ "The main title for the card. Should be compelling and informative, clearly stating what the card is about.",
348
+ min_characters: 20,
349
+ max_characters: 50,
350
+ },
351
+ },
352
+ {
353
+ key: "description",
354
+ label: "Card Description",
355
+ field_interface: "TypographyWidget",
356
+ hint: {
357
+ prompt_description:
358
+ "A brief description that provides additional context about the card topic. Should be informative but concise.",
359
+ min_characters: 40,
360
+ max_characters: 120,
361
+ },
362
+ },
363
+ ],
364
+ hint: {
365
+ prompt_description:
366
+ "A group of cards that provide detailed information about specific features, services, or topics within the section.",
367
+ min_items: 2,
368
+ max_items: 6,
369
+ },
370
+ },
371
+ ],
372
+ hint: {
373
+ prompt_description:
374
+ "Accordion sections that organize content into expandable categories, each containing detailed information through cards.",
375
+ min_items: 2,
376
+ max_items: 6,
377
+ },
378
+ },
379
+ ],
380
+ layouts: [
381
+ {
382
+ key: "default",
383
+ title: "Default",
384
+ styles: {
385
+ layout: {
386
+ "padding-top": "5xl",
387
+ "padding-bottom": "5xl",
388
+ "padding-left": "3xl",
389
+ "padding-right": "3xl",
390
+ width: "100%",
391
+ tablet: {
392
+ "padding-top": "4xl",
393
+ "padding-bottom": "4xl",
394
+ "padding-left": "2xl",
395
+ "padding-right": "2xl",
396
+ },
397
+ mobile: {
398
+ "padding-top": "3xl",
399
+ "padding-bottom": "3xl",
400
+ "padding-left": "base",
401
+ "padding-right": "base",
402
+ },
403
+ },
404
+ container: {
405
+ "max-width": "1280px",
406
+ "margin-left": "auto",
407
+ "margin-right": "auto",
408
+ display: "flex",
409
+ "flex-direction": "column",
410
+ "row-gap": "4xl",
411
+ },
412
+ title: {
413
+ "font-size": "5xl",
414
+ "font-weight": 700,
415
+ color: "text-1",
416
+ margin: "0",
417
+ "text-align": "center",
418
+ mobile: {
419
+ "font-size": "3xl",
420
+ },
421
+ },
422
+ accordions_container: {
423
+ display: "flex",
424
+ "flex-direction": "column",
425
+ "row-gap": "lg",
426
+ },
427
+ sections: [
428
+ {
429
+ wrapper: {
430
+ "padding-top": "none",
431
+ "padding-bottom": "none",
432
+ "border-color": "border",
433
+ "border-bottom-width": "1px",
434
+ "border-style": "solid",
435
+ },
436
+ sectionTitle: {
437
+ "font-size": "xl",
438
+ "font-weight": 600,
439
+ color: "text-1",
440
+ tablet: {
441
+ "font-size": "lg",
442
+ },
443
+ },
444
+ content: {
445
+ "padding-top": "none",
446
+ "padding-bottom": "lg",
447
+ },
448
+ trigger: {
449
+ "padding-top": "lg",
450
+ "padding-bottom": "lg",
451
+ display: "flex",
452
+ },
453
+ container: {
454
+ display: "flex",
455
+ "flex-direction": "column",
456
+ "row-gap": "lg",
457
+ },
458
+ headerContainer: {
459
+ display: "flex",
460
+ "flex-direction": "row",
461
+ "row-gap": "base",
462
+ "column-gap": "lg",
463
+ mobile: {
464
+ "flex-direction": "column",
465
+ },
466
+ },
467
+ iconLabelContainer: {
468
+ display: "flex",
469
+ "align-items": "center",
470
+ "column-gap": "2xs",
471
+ "background-color": "background-3",
472
+ width: "fit-content",
473
+ "padding-left": "2xs",
474
+ "padding-right": "2xs",
475
+ "padding-top": "4xs",
476
+ "padding-bottom": "4xs",
477
+ "border-radius": "3xl",
478
+ },
479
+ label: {
480
+ "text-transform": "uppercase",
481
+ "letter-spacing": "0.05em",
482
+ color: "brand",
483
+ "font-size": "sm",
484
+ },
485
+ title: {
486
+ "font-size": "xl",
487
+ "font-weight": 700,
488
+ color: "text-1",
489
+ tablet: {
490
+ "font-size": "xl",
491
+ },
492
+ mobile: {
493
+ "text-align": "left",
494
+ },
495
+ },
496
+ icon: {
497
+ height: "22px",
498
+ width: "22px",
499
+ "font-size": "22px",
500
+ },
501
+ cards_levoGroup: {
502
+ display: "flex",
503
+ "column-gap": "sm",
504
+ tablet: {
505
+ display: "flex",
506
+ "flex-direction": "column",
507
+ "row-gap": "sm",
508
+ },
509
+ },
510
+ cards: [
511
+ {
512
+ card: {
513
+ "background-color": "background-3",
514
+ "padding-left": "base",
515
+ "padding-right": "base",
516
+ "padding-top": "base",
517
+ "padding-bottom": "base",
518
+ "border-radius": "base",
519
+ },
520
+ label: {
521
+ color: "brand",
522
+ },
523
+ title: {
524
+ color: "text-1",
525
+ "font-size": "lg",
526
+ "font-weight": 700,
527
+ "padding-top": "2xs",
528
+ "padding-bottom": "2xs",
529
+ },
530
+ label_divider: {
531
+ width: "20px",
532
+ height: "1px",
533
+ "background-color": "brand",
534
+ },
535
+ label_container: {
536
+ display: "flex",
537
+ "justify-content": "start",
538
+ "align-items": "center",
539
+ "column-gap": "3xs",
540
+ },
541
+ },
542
+ {
543
+ card: {
544
+ "background-color": "background-3",
545
+ "padding-left": "base",
546
+ "padding-right": "base",
547
+ "padding-top": "base",
548
+ "padding-bottom": "base",
549
+ "border-radius": "base",
550
+ },
551
+ label: {
552
+ color: "brand",
553
+ },
554
+ title: {
555
+ color: "text-1",
556
+ "font-size": "lg",
557
+ "font-weight": 700,
558
+ "padding-top": "2xs",
559
+ "padding-bottom": "2xs",
560
+ },
561
+ label_divider: {
562
+ width: "20px",
563
+ height: "1px",
564
+ "background-color": "brand",
565
+ },
566
+ label_container: {
567
+ display: "flex",
568
+ "justify-content": "start",
569
+ "align-items": "center",
570
+ "column-gap": "3xs",
571
+ },
572
+ },
573
+ {
574
+ card: {
575
+ "background-color": "background-3",
576
+ "padding-left": "base",
577
+ "padding-right": "base",
578
+ "padding-top": "base",
579
+ "padding-bottom": "base",
580
+ "border-radius": "base",
581
+ },
582
+ label: {
583
+ color: "brand",
584
+ },
585
+ title: {
586
+ color: "text-1",
587
+ "font-size": "lg",
588
+ "font-weight": 700,
589
+ "padding-top": "2xs",
590
+ "padding-bottom": "2xs",
591
+ },
592
+ label_divider: {
593
+ width: "20px",
594
+ height: "1px",
595
+ "background-color": "brand",
596
+ },
597
+ label_container: {
598
+ display: "flex",
599
+ "justify-content": "start",
600
+ "align-items": "center",
601
+ "column-gap": "3xs",
602
+ },
603
+ },
604
+ {
605
+ card: {
606
+ "background-color": "background-3",
607
+ "padding-left": "base",
608
+ "padding-right": "base",
609
+ "padding-top": "base",
610
+ "padding-bottom": "base",
611
+ "border-radius": "base",
612
+ },
613
+ label: {
614
+ color: "brand",
615
+ },
616
+ title: {
617
+ color: "text-1",
618
+ "font-size": "lg",
619
+ "font-weight": 700,
620
+ "padding-top": "2xs",
621
+ "padding-bottom": "2xs",
622
+ },
623
+ label_divider: {
624
+ width: "20px",
625
+ height: "1px",
626
+ "background-color": "brand",
627
+ },
628
+ label_container: {
629
+ display: "flex",
630
+ "justify-content": "start",
631
+ "align-items": "center",
632
+ "column-gap": "3xs",
633
+ },
634
+ },
635
+ {
636
+ card: {
637
+ "background-color": "background-3",
638
+ "padding-left": "base",
639
+ "padding-right": "base",
640
+ "padding-top": "base",
641
+ "padding-bottom": "base",
642
+ "border-radius": "base",
643
+ },
644
+ label: {
645
+ color: "brand",
646
+ },
647
+ title: {
648
+ color: "text-1",
649
+ "font-size": "lg",
650
+ "font-weight": 700,
651
+ "padding-top": "2xs",
652
+ "padding-bottom": "2xs",
653
+ },
654
+ },
655
+ {
656
+ card: {
657
+ "background-color": "background-3",
658
+ "padding-left": "base",
659
+ "padding-right": "base",
660
+ "padding-top": "base",
661
+ "padding-bottom": "base",
662
+ "border-radius": "base",
663
+ },
664
+ label: {
665
+ color: "brand",
666
+ },
667
+ title: {
668
+ color: "text-1",
669
+ "font-size": "lg",
670
+ "font-weight": 700,
671
+ "padding-top": "2xs",
672
+ "padding-bottom": "2xs",
673
+ },
674
+ },
675
+ {
676
+ card: {
677
+ "background-color": "background-3",
678
+ "padding-left": "base",
679
+ "padding-right": "base",
680
+ "padding-top": "base",
681
+ "padding-bottom": "base",
682
+ "border-radius": "base",
683
+ },
684
+ label: {
685
+ color: "brand",
686
+ },
687
+ title: {
688
+ color: "text-1",
689
+ "font-size": "lg",
690
+ "font-weight": 700,
691
+ "padding-top": "2xs",
692
+ "padding-bottom": "2xs",
693
+ },
694
+ },
695
+ {
696
+ card: {
697
+ "background-color": "background-3",
698
+ },
699
+ },
700
+ {
701
+ card: {
702
+ "background-color": "background-3",
703
+ },
704
+ },
705
+ {
706
+ card: {
707
+ "background-color": "background-3",
708
+ },
709
+ },
710
+ ],
711
+ },
712
+ {
713
+ wrapper: {
714
+ "padding-top": "none",
715
+ "padding-bottom": "none",
716
+ "border-color": "border",
717
+ "border-bottom-width": "1px",
718
+ "border-style": "solid",
719
+ },
720
+ sectionTitle: {
721
+ "font-size": "xl",
722
+ "font-weight": 600,
723
+ color: "text-1",
724
+ tablet: {
725
+ "font-size": "lg",
726
+ },
727
+ },
728
+ content: {
729
+ "padding-top": "none",
730
+ "padding-bottom": "lg",
731
+ },
732
+ trigger: {
733
+ "padding-top": "lg",
734
+ "padding-bottom": "lg",
735
+ display: "flex",
736
+ },
737
+ container: {
738
+ display: "flex",
739
+ "flex-direction": "column",
740
+ "row-gap": "lg",
741
+ },
742
+ headerContainer: {
743
+ display: "flex",
744
+ "flex-direction": "row",
745
+ "row-gap": "base",
746
+ "column-gap": "lg",
747
+ mobile: {
748
+ "flex-direction": "column",
749
+ },
750
+ },
751
+ iconLabelContainer: {
752
+ display: "flex",
753
+ "align-items": "center",
754
+ "column-gap": "2xs",
755
+ "background-color": "background-3",
756
+ width: "fit-content",
757
+ "padding-left": "2xs",
758
+ "padding-right": "2xs",
759
+ "padding-top": "4xs",
760
+ "padding-bottom": "4xs",
761
+ "border-radius": "3xl",
762
+ },
763
+ label: {
764
+ "text-transform": "uppercase",
765
+ "letter-spacing": "0.05em",
766
+ color: "brand",
767
+ "font-size": "sm",
768
+ },
769
+ title: {
770
+ "font-size": "xl",
771
+ "font-weight": 700,
772
+ color: "text-1",
773
+ tablet: {
774
+ "font-size": "xl",
775
+ },
776
+ mobile: {
777
+ "text-align": "left",
778
+ },
779
+ },
780
+ icon: {
781
+ height: "22px",
782
+ width: "22px",
783
+ "font-size": "22px",
784
+ },
785
+ cards_levoGroup: {
786
+ display: "flex",
787
+ "column-gap": "sm",
788
+ tablet: {
789
+ display: "flex",
790
+ "flex-direction": "column",
791
+ "row-gap": "sm",
792
+ },
793
+ },
794
+ cards: [
795
+ {
796
+ card: {
797
+ "background-color": "background-3",
798
+ "padding-left": "base",
799
+ "padding-right": "base",
800
+ "padding-top": "base",
801
+ "padding-bottom": "base",
802
+ "border-radius": "base",
803
+ },
804
+ label: {
805
+ color: "brand",
806
+ },
807
+ title: {
808
+ color: "text-1",
809
+ "font-size": "lg",
810
+ "font-weight": 700,
811
+ "padding-top": "2xs",
812
+ "padding-bottom": "2xs",
813
+ },
814
+ label_divider: {
815
+ width: "20px",
816
+ height: "1px",
817
+ "background-color": "brand",
818
+ },
819
+ label_container: {
820
+ display: "flex",
821
+ "justify-content": "start",
822
+ "align-items": "center",
823
+ "column-gap": "3xs",
824
+ },
825
+ },
826
+ {
827
+ card: {
828
+ "background-color": "background-3",
829
+ "padding-left": "base",
830
+ "padding-right": "base",
831
+ "padding-top": "base",
832
+ "padding-bottom": "base",
833
+ "border-radius": "base",
834
+ },
835
+ label: {
836
+ color: "brand",
837
+ },
838
+ title: {
839
+ color: "text-1",
840
+ "font-size": "lg",
841
+ "font-weight": 700,
842
+ "padding-top": "2xs",
843
+ "padding-bottom": "2xs",
844
+ },
845
+ label_divider: {
846
+ width: "20px",
847
+ height: "1px",
848
+ "background-color": "brand",
849
+ },
850
+ label_container: {
851
+ display: "flex",
852
+ "justify-content": "start",
853
+ "align-items": "center",
854
+ "column-gap": "3xs",
855
+ },
856
+ },
857
+ {
858
+ card: {
859
+ "background-color": "background-3",
860
+ "padding-left": "base",
861
+ "padding-right": "base",
862
+ "padding-top": "base",
863
+ "padding-bottom": "base",
864
+ "border-radius": "base",
865
+ },
866
+ label: {
867
+ color: "brand",
868
+ },
869
+ title: {
870
+ color: "text-1",
871
+ "font-size": "lg",
872
+ "font-weight": 700,
873
+ "padding-top": "2xs",
874
+ "padding-bottom": "2xs",
875
+ },
876
+ label_divider: {
877
+ width: "20px",
878
+ height: "1px",
879
+ "background-color": "brand",
880
+ },
881
+ label_container: {
882
+ display: "flex",
883
+ "justify-content": "start",
884
+ "align-items": "center",
885
+ "column-gap": "3xs",
886
+ },
887
+ },
888
+ {
889
+ card: {
890
+ "background-color": "background-3",
891
+ "padding-left": "base",
892
+ "padding-right": "base",
893
+ "padding-top": "base",
894
+ "padding-bottom": "base",
895
+ "border-radius": "base",
896
+ },
897
+ label: {
898
+ color: "brand",
899
+ },
900
+ title: {
901
+ color: "text-1",
902
+ "font-size": "lg",
903
+ "font-weight": 700,
904
+ "padding-top": "2xs",
905
+ "padding-bottom": "2xs",
906
+ },
907
+ label_divider: {
908
+ width: "20px",
909
+ height: "1px",
910
+ "background-color": "brand",
911
+ },
912
+ label_container: {
913
+ display: "flex",
914
+ "justify-content": "start",
915
+ "align-items": "center",
916
+ "column-gap": "3xs",
917
+ },
918
+ },
919
+ {
920
+ card: {
921
+ "background-color": "background-3",
922
+ "padding-left": "base",
923
+ "padding-right": "base",
924
+ "padding-top": "base",
925
+ "padding-bottom": "base",
926
+ "border-radius": "base",
927
+ },
928
+ label: {
929
+ color: "brand",
930
+ },
931
+ title: {
932
+ color: "text-1",
933
+ "font-size": "lg",
934
+ "font-weight": 700,
935
+ "padding-top": "2xs",
936
+ "padding-bottom": "2xs",
937
+ },
938
+ },
939
+ {
940
+ card: {
941
+ "background-color": "background-3",
942
+ "padding-left": "base",
943
+ "padding-right": "base",
944
+ "padding-top": "base",
945
+ "padding-bottom": "base",
946
+ "border-radius": "base",
947
+ },
948
+ label: {
949
+ color: "brand",
950
+ },
951
+ title: {
952
+ color: "text-1",
953
+ "font-size": "lg",
954
+ "font-weight": 700,
955
+ "padding-top": "2xs",
956
+ "padding-bottom": "2xs",
957
+ },
958
+ },
959
+ {
960
+ card: {
961
+ "background-color": "background-3",
962
+ "padding-left": "base",
963
+ "padding-right": "base",
964
+ "padding-top": "base",
965
+ "padding-bottom": "base",
966
+ "border-radius": "base",
967
+ },
968
+ label: {
969
+ color: "brand",
970
+ },
971
+ title: {
972
+ color: "text-1",
973
+ "font-size": "lg",
974
+ "font-weight": 700,
975
+ "padding-top": "2xs",
976
+ "padding-bottom": "2xs",
977
+ },
978
+ },
979
+ {
980
+ card: {
981
+ "background-color": "background-3",
982
+ },
983
+ },
984
+ {
985
+ card: {
986
+ "background-color": "background-3",
987
+ },
988
+ },
989
+ {
990
+ card: {
991
+ "background-color": "background-3",
992
+ },
993
+ },
994
+ ],
995
+ },
996
+ {
997
+ wrapper: {
998
+ "padding-top": "none",
999
+ "padding-bottom": "none",
1000
+ "border-color": "border",
1001
+ "border-bottom-width": "1px",
1002
+ "border-style": "solid",
1003
+ },
1004
+ sectionTitle: {
1005
+ "font-size": "xl",
1006
+ "font-weight": 600,
1007
+ color: "text-1",
1008
+ tablet: {
1009
+ "font-size": "lg",
1010
+ },
1011
+ },
1012
+ content: {
1013
+ "padding-top": "none",
1014
+ "padding-bottom": "lg",
1015
+ },
1016
+ trigger: {
1017
+ "padding-top": "lg",
1018
+ "padding-bottom": "lg",
1019
+ display: "flex",
1020
+ },
1021
+ container: {
1022
+ display: "flex",
1023
+ "flex-direction": "column",
1024
+ "row-gap": "lg",
1025
+ },
1026
+ headerContainer: {
1027
+ display: "flex",
1028
+ "flex-direction": "row",
1029
+ "row-gap": "base",
1030
+ "column-gap": "lg",
1031
+ mobile: {
1032
+ "flex-direction": "column",
1033
+ },
1034
+ },
1035
+ iconLabelContainer: {
1036
+ display: "flex",
1037
+ "align-items": "center",
1038
+ "column-gap": "2xs",
1039
+ "background-color": "background-3",
1040
+ width: "fit-content",
1041
+ "padding-left": "2xs",
1042
+ "padding-right": "2xs",
1043
+ "padding-top": "4xs",
1044
+ "padding-bottom": "4xs",
1045
+ "border-radius": "3xl",
1046
+ },
1047
+ label: {
1048
+ "text-transform": "uppercase",
1049
+ "letter-spacing": "0.05em",
1050
+ color: "brand",
1051
+ "font-size": "sm",
1052
+ },
1053
+ title: {
1054
+ "font-size": "xl",
1055
+ "font-weight": 700,
1056
+ color: "text-1",
1057
+ tablet: {
1058
+ "font-size": "xl",
1059
+ },
1060
+ mobile: {
1061
+ "text-align": "left",
1062
+ },
1063
+ },
1064
+ icon: {
1065
+ height: "22px",
1066
+ width: "22px",
1067
+ "font-size": "22px",
1068
+ },
1069
+ cards_levoGroup: {
1070
+ display: "flex",
1071
+ "column-gap": "sm",
1072
+ tablet: {
1073
+ display: "flex",
1074
+ "flex-direction": "column",
1075
+ "row-gap": "sm",
1076
+ },
1077
+ },
1078
+ cards: [
1079
+ {
1080
+ card: {
1081
+ "background-color": "background-3",
1082
+ "padding-left": "base",
1083
+ "padding-right": "base",
1084
+ "padding-top": "base",
1085
+ "padding-bottom": "base",
1086
+ "border-radius": "base",
1087
+ },
1088
+ label: {
1089
+ color: "brand",
1090
+ },
1091
+ title: {
1092
+ color: "text-1",
1093
+ "font-size": "lg",
1094
+ "font-weight": 700,
1095
+ "padding-top": "2xs",
1096
+ "padding-bottom": "2xs",
1097
+ },
1098
+ label_divider: {
1099
+ width: "20px",
1100
+ height: "1px",
1101
+ "background-color": "brand",
1102
+ },
1103
+ label_container: {
1104
+ display: "flex",
1105
+ "justify-content": "start",
1106
+ "align-items": "center",
1107
+ "column-gap": "3xs",
1108
+ },
1109
+ },
1110
+ {
1111
+ card: {
1112
+ "background-color": "background-3",
1113
+ "padding-left": "base",
1114
+ "padding-right": "base",
1115
+ "padding-top": "base",
1116
+ "padding-bottom": "base",
1117
+ "border-radius": "base",
1118
+ },
1119
+ label: {
1120
+ color: "brand",
1121
+ },
1122
+ title: {
1123
+ color: "text-1",
1124
+ "font-size": "lg",
1125
+ "font-weight": 700,
1126
+ "padding-top": "2xs",
1127
+ "padding-bottom": "2xs",
1128
+ },
1129
+ label_divider: {
1130
+ width: "20px",
1131
+ height: "1px",
1132
+ "background-color": "brand",
1133
+ },
1134
+ label_container: {
1135
+ display: "flex",
1136
+ "justify-content": "start",
1137
+ "align-items": "center",
1138
+ "column-gap": "3xs",
1139
+ },
1140
+ },
1141
+ {
1142
+ card: {
1143
+ "background-color": "background-3",
1144
+ "padding-left": "base",
1145
+ "padding-right": "base",
1146
+ "padding-top": "base",
1147
+ "padding-bottom": "base",
1148
+ "border-radius": "base",
1149
+ },
1150
+ label: {
1151
+ color: "brand",
1152
+ },
1153
+ title: {
1154
+ color: "text-1",
1155
+ "font-size": "lg",
1156
+ "font-weight": 700,
1157
+ "padding-top": "2xs",
1158
+ "padding-bottom": "2xs",
1159
+ },
1160
+ label_divider: {
1161
+ width: "20px",
1162
+ height: "1px",
1163
+ "background-color": "brand",
1164
+ },
1165
+ label_container: {
1166
+ display: "flex",
1167
+ "justify-content": "start",
1168
+ "align-items": "center",
1169
+ "column-gap": "3xs",
1170
+ },
1171
+ },
1172
+ {
1173
+ card: {
1174
+ "background-color": "background-3",
1175
+ "padding-left": "base",
1176
+ "padding-right": "base",
1177
+ "padding-top": "base",
1178
+ "padding-bottom": "base",
1179
+ "border-radius": "base",
1180
+ },
1181
+ label: {
1182
+ color: "brand",
1183
+ },
1184
+ title: {
1185
+ color: "text-1",
1186
+ "font-size": "lg",
1187
+ "font-weight": 700,
1188
+ "padding-top": "2xs",
1189
+ "padding-bottom": "2xs",
1190
+ },
1191
+ label_divider: {
1192
+ width: "20px",
1193
+ height: "1px",
1194
+ "background-color": "brand",
1195
+ },
1196
+ label_container: {
1197
+ display: "flex",
1198
+ "justify-content": "start",
1199
+ "align-items": "center",
1200
+ "column-gap": "3xs",
1201
+ },
1202
+ },
1203
+ {
1204
+ card: {
1205
+ "background-color": "background-3",
1206
+ "padding-left": "base",
1207
+ "padding-right": "base",
1208
+ "padding-top": "base",
1209
+ "padding-bottom": "base",
1210
+ "border-radius": "base",
1211
+ },
1212
+ label: {
1213
+ color: "brand",
1214
+ },
1215
+ title: {
1216
+ color: "text-1",
1217
+ "font-size": "lg",
1218
+ "font-weight": 700,
1219
+ "padding-top": "2xs",
1220
+ "padding-bottom": "2xs",
1221
+ },
1222
+ },
1223
+ {
1224
+ card: {
1225
+ "background-color": "background-3",
1226
+ "padding-left": "base",
1227
+ "padding-right": "base",
1228
+ "padding-top": "base",
1229
+ "padding-bottom": "base",
1230
+ "border-radius": "base",
1231
+ },
1232
+ label: {
1233
+ color: "brand",
1234
+ },
1235
+ title: {
1236
+ color: "text-1",
1237
+ "font-size": "lg",
1238
+ "font-weight": 700,
1239
+ "padding-top": "2xs",
1240
+ "padding-bottom": "2xs",
1241
+ },
1242
+ },
1243
+ {
1244
+ card: {
1245
+ "background-color": "background-3",
1246
+ "padding-left": "base",
1247
+ "padding-right": "base",
1248
+ "padding-top": "base",
1249
+ "padding-bottom": "base",
1250
+ "border-radius": "base",
1251
+ },
1252
+ label: {
1253
+ color: "brand",
1254
+ },
1255
+ title: {
1256
+ color: "text-1",
1257
+ "font-size": "lg",
1258
+ "font-weight": 700,
1259
+ "padding-top": "2xs",
1260
+ "padding-bottom": "2xs",
1261
+ },
1262
+ },
1263
+ {
1264
+ card: {
1265
+ "background-color": "background-3",
1266
+ },
1267
+ },
1268
+ {
1269
+ card: {
1270
+ "background-color": "background-3",
1271
+ },
1272
+ },
1273
+ {
1274
+ card: {
1275
+ "background-color": "background-3",
1276
+ },
1277
+ },
1278
+ ],
1279
+ },
1280
+ {
1281
+ wrapper: {
1282
+ "padding-top": "none",
1283
+ "padding-bottom": "none",
1284
+ "border-color": "border",
1285
+ "border-bottom-width": "1px",
1286
+ "border-style": "solid",
1287
+ },
1288
+ sectionTitle: {
1289
+ "font-size": "xl",
1290
+ "font-weight": 600,
1291
+ color: "text-1",
1292
+ tablet: {
1293
+ "font-size": "lg",
1294
+ },
1295
+ },
1296
+ content: {
1297
+ "padding-top": "none",
1298
+ "padding-bottom": "lg",
1299
+ },
1300
+ trigger: {
1301
+ "padding-top": "lg",
1302
+ "padding-bottom": "lg",
1303
+ display: "flex",
1304
+ },
1305
+ container: {
1306
+ display: "flex",
1307
+ "flex-direction": "column",
1308
+ "row-gap": "lg",
1309
+ },
1310
+ headerContainer: {
1311
+ display: "flex",
1312
+ "flex-direction": "row",
1313
+ "row-gap": "base",
1314
+ "column-gap": "lg",
1315
+ mobile: {
1316
+ "flex-direction": "column",
1317
+ },
1318
+ },
1319
+ iconLabelContainer: {
1320
+ display: "flex",
1321
+ "align-items": "center",
1322
+ "column-gap": "2xs",
1323
+ "background-color": "background-3",
1324
+ width: "fit-content",
1325
+ "padding-left": "2xs",
1326
+ "padding-right": "2xs",
1327
+ "padding-top": "4xs",
1328
+ "padding-bottom": "4xs",
1329
+ "border-radius": "3xl",
1330
+ },
1331
+ label: {
1332
+ "text-transform": "uppercase",
1333
+ "letter-spacing": "0.05em",
1334
+ color: "brand",
1335
+ "font-size": "sm",
1336
+ },
1337
+ title: {
1338
+ "font-size": "xl",
1339
+ "font-weight": 700,
1340
+ color: "text-1",
1341
+ tablet: {
1342
+ "font-size": "xl",
1343
+ },
1344
+ mobile: {
1345
+ "text-align": "left",
1346
+ },
1347
+ },
1348
+ icon: {
1349
+ height: "22px",
1350
+ width: "22px",
1351
+ "font-size": "22px",
1352
+ },
1353
+ cards_levoGroup: {
1354
+ display: "flex",
1355
+ "column-gap": "sm",
1356
+ tablet: {
1357
+ display: "flex",
1358
+ "flex-direction": "column",
1359
+ "row-gap": "sm",
1360
+ },
1361
+ },
1362
+ cards: [
1363
+ {
1364
+ card: {
1365
+ "background-color": "background-3",
1366
+ "padding-left": "base",
1367
+ "padding-right": "base",
1368
+ "padding-top": "base",
1369
+ "padding-bottom": "base",
1370
+ "border-radius": "base",
1371
+ },
1372
+ label: {
1373
+ color: "brand",
1374
+ },
1375
+ title: {
1376
+ color: "text-1",
1377
+ "font-size": "lg",
1378
+ "font-weight": 700,
1379
+ "padding-top": "2xs",
1380
+ "padding-bottom": "2xs",
1381
+ },
1382
+ label_divider: {
1383
+ width: "20px",
1384
+ height: "1px",
1385
+ "background-color": "brand",
1386
+ },
1387
+ label_container: {
1388
+ display: "flex",
1389
+ "justify-content": "start",
1390
+ "align-items": "center",
1391
+ "column-gap": "3xs",
1392
+ },
1393
+ },
1394
+ {
1395
+ card: {
1396
+ "background-color": "background-3",
1397
+ "padding-left": "base",
1398
+ "padding-right": "base",
1399
+ "padding-top": "base",
1400
+ "padding-bottom": "base",
1401
+ "border-radius": "base",
1402
+ },
1403
+ label: {
1404
+ color: "brand",
1405
+ },
1406
+ title: {
1407
+ color: "text-1",
1408
+ "font-size": "lg",
1409
+ "font-weight": 700,
1410
+ "padding-top": "2xs",
1411
+ "padding-bottom": "2xs",
1412
+ },
1413
+ label_divider: {
1414
+ width: "20px",
1415
+ height: "1px",
1416
+ "background-color": "brand",
1417
+ },
1418
+ label_container: {
1419
+ display: "flex",
1420
+ "justify-content": "start",
1421
+ "align-items": "center",
1422
+ "column-gap": "3xs",
1423
+ },
1424
+ },
1425
+ {
1426
+ card: {
1427
+ "background-color": "background-3",
1428
+ "padding-left": "base",
1429
+ "padding-right": "base",
1430
+ "padding-top": "base",
1431
+ "padding-bottom": "base",
1432
+ "border-radius": "base",
1433
+ },
1434
+ label: {
1435
+ color: "brand",
1436
+ },
1437
+ title: {
1438
+ color: "text-1",
1439
+ "font-size": "lg",
1440
+ "font-weight": 700,
1441
+ "padding-top": "2xs",
1442
+ "padding-bottom": "2xs",
1443
+ },
1444
+ label_divider: {
1445
+ width: "20px",
1446
+ height: "1px",
1447
+ "background-color": "brand",
1448
+ },
1449
+ label_container: {
1450
+ display: "flex",
1451
+ "justify-content": "start",
1452
+ "align-items": "center",
1453
+ "column-gap": "3xs",
1454
+ },
1455
+ },
1456
+ {
1457
+ card: {
1458
+ "background-color": "background-3",
1459
+ "padding-left": "base",
1460
+ "padding-right": "base",
1461
+ "padding-top": "base",
1462
+ "padding-bottom": "base",
1463
+ "border-radius": "base",
1464
+ },
1465
+ label: {
1466
+ color: "brand",
1467
+ },
1468
+ title: {
1469
+ color: "text-1",
1470
+ "font-size": "lg",
1471
+ "font-weight": 700,
1472
+ "padding-top": "2xs",
1473
+ "padding-bottom": "2xs",
1474
+ },
1475
+ label_divider: {
1476
+ width: "20px",
1477
+ height: "1px",
1478
+ "background-color": "brand",
1479
+ },
1480
+ label_container: {
1481
+ display: "flex",
1482
+ "justify-content": "start",
1483
+ "align-items": "center",
1484
+ "column-gap": "3xs",
1485
+ },
1486
+ },
1487
+ {
1488
+ card: {
1489
+ "background-color": "background-3",
1490
+ "padding-left": "base",
1491
+ "padding-right": "base",
1492
+ "padding-top": "base",
1493
+ "padding-bottom": "base",
1494
+ "border-radius": "base",
1495
+ },
1496
+ label: {
1497
+ color: "brand",
1498
+ },
1499
+ title: {
1500
+ color: "text-1",
1501
+ "font-size": "lg",
1502
+ "font-weight": 700,
1503
+ "padding-top": "2xs",
1504
+ "padding-bottom": "2xs",
1505
+ },
1506
+ },
1507
+ {
1508
+ card: {
1509
+ "background-color": "background-3",
1510
+ "padding-left": "base",
1511
+ "padding-right": "base",
1512
+ "padding-top": "base",
1513
+ "padding-bottom": "base",
1514
+ "border-radius": "base",
1515
+ },
1516
+ label: {
1517
+ color: "brand",
1518
+ },
1519
+ title: {
1520
+ color: "text-1",
1521
+ "font-size": "lg",
1522
+ "font-weight": 700,
1523
+ "padding-top": "2xs",
1524
+ "padding-bottom": "2xs",
1525
+ },
1526
+ },
1527
+ {
1528
+ card: {
1529
+ "background-color": "background-3",
1530
+ "padding-left": "base",
1531
+ "padding-right": "base",
1532
+ "padding-top": "base",
1533
+ "padding-bottom": "base",
1534
+ "border-radius": "base",
1535
+ },
1536
+ label: {
1537
+ color: "brand",
1538
+ },
1539
+ title: {
1540
+ color: "text-1",
1541
+ "font-size": "lg",
1542
+ "font-weight": 700,
1543
+ "padding-top": "2xs",
1544
+ "padding-bottom": "2xs",
1545
+ },
1546
+ },
1547
+ {
1548
+ card: {
1549
+ "background-color": "background-3",
1550
+ },
1551
+ },
1552
+ {
1553
+ card: {
1554
+ "background-color": "background-3",
1555
+ },
1556
+ },
1557
+ {
1558
+ card: {
1559
+ "background-color": "background-3",
1560
+ },
1561
+ },
1562
+ ],
1563
+ },
1564
+ {
1565
+ wrapper: {
1566
+ "padding-top": "none",
1567
+ "padding-bottom": "none",
1568
+ "border-color": "border",
1569
+ "border-bottom-width": "1px",
1570
+ "border-style": "solid",
1571
+ },
1572
+ sectionTitle: {
1573
+ "font-size": "xl",
1574
+ "font-weight": 600,
1575
+ color: "text-1",
1576
+ tablet: {
1577
+ "font-size": "lg",
1578
+ },
1579
+ },
1580
+ content: {
1581
+ "padding-top": "none",
1582
+ "padding-bottom": "lg",
1583
+ },
1584
+ trigger: {
1585
+ "padding-top": "lg",
1586
+ "padding-bottom": "lg",
1587
+ display: "flex",
1588
+ },
1589
+ container: {
1590
+ display: "flex",
1591
+ "flex-direction": "column",
1592
+ "row-gap": "lg",
1593
+ },
1594
+ headerContainer: {
1595
+ display: "flex",
1596
+ "flex-direction": "row",
1597
+ "row-gap": "base",
1598
+ "column-gap": "lg",
1599
+ mobile: {
1600
+ "flex-direction": "column",
1601
+ },
1602
+ },
1603
+ iconLabelContainer: {
1604
+ display: "flex",
1605
+ "align-items": "center",
1606
+ "column-gap": "2xs",
1607
+ "background-color": "background-3",
1608
+ width: "fit-content",
1609
+ "padding-left": "2xs",
1610
+ "padding-right": "2xs",
1611
+ "padding-top": "4xs",
1612
+ "padding-bottom": "4xs",
1613
+ "border-radius": "3xl",
1614
+ },
1615
+ label: {
1616
+ "text-transform": "uppercase",
1617
+ "letter-spacing": "0.05em",
1618
+ color: "brand",
1619
+ "font-size": "sm",
1620
+ },
1621
+ title: {
1622
+ "font-size": "xl",
1623
+ "font-weight": 700,
1624
+ color: "text-1",
1625
+ tablet: {
1626
+ "font-size": "xl",
1627
+ },
1628
+ mobile: {
1629
+ "text-align": "left",
1630
+ },
1631
+ },
1632
+ icon: {
1633
+ height: "22px",
1634
+ width: "22px",
1635
+ "font-size": "22px",
1636
+ },
1637
+ cards_levoGroup: {
1638
+ display: "flex",
1639
+ "column-gap": "sm",
1640
+ tablet: {
1641
+ display: "flex",
1642
+ "flex-direction": "column",
1643
+ "row-gap": "sm",
1644
+ },
1645
+ },
1646
+ cards: [
1647
+ {
1648
+ card: {
1649
+ "background-color": "background-3",
1650
+ "padding-left": "base",
1651
+ "padding-right": "base",
1652
+ "padding-top": "base",
1653
+ "padding-bottom": "base",
1654
+ "border-radius": "base",
1655
+ },
1656
+ label: {
1657
+ color: "brand",
1658
+ },
1659
+ title: {
1660
+ color: "text-1",
1661
+ "font-size": "lg",
1662
+ "font-weight": 700,
1663
+ "padding-top": "2xs",
1664
+ "padding-bottom": "2xs",
1665
+ },
1666
+ },
1667
+ {
1668
+ card: {
1669
+ "background-color": "background-3",
1670
+ "padding-left": "base",
1671
+ "padding-right": "base",
1672
+ "padding-top": "base",
1673
+ "padding-bottom": "base",
1674
+ "border-radius": "base",
1675
+ },
1676
+ label: {
1677
+ color: "brand",
1678
+ },
1679
+ title: {
1680
+ color: "text-1",
1681
+ "font-size": "lg",
1682
+ "font-weight": 700,
1683
+ "padding-top": "2xs",
1684
+ "padding-bottom": "2xs",
1685
+ },
1686
+ },
1687
+ {
1688
+ card: {
1689
+ "background-color": "background-3",
1690
+ "padding-left": "base",
1691
+ "padding-right": "base",
1692
+ "padding-top": "base",
1693
+ "padding-bottom": "base",
1694
+ "border-radius": "base",
1695
+ },
1696
+ label: {
1697
+ color: "brand",
1698
+ },
1699
+ title: {
1700
+ color: "text-1",
1701
+ "font-size": "lg",
1702
+ "font-weight": 700,
1703
+ "padding-top": "2xs",
1704
+ "padding-bottom": "2xs",
1705
+ },
1706
+ },
1707
+ {
1708
+ card: {
1709
+ "background-color": "background-3",
1710
+ "padding-left": "base",
1711
+ "padding-right": "base",
1712
+ "padding-top": "base",
1713
+ "padding-bottom": "base",
1714
+ "border-radius": "base",
1715
+ },
1716
+ label: {
1717
+ color: "brand",
1718
+ },
1719
+ title: {
1720
+ color: "text-1",
1721
+ "font-size": "lg",
1722
+ "font-weight": 700,
1723
+ "padding-top": "2xs",
1724
+ "padding-bottom": "2xs",
1725
+ },
1726
+ },
1727
+ {
1728
+ card: {
1729
+ "background-color": "background-3",
1730
+ },
1731
+ },
1732
+ {
1733
+ card: {
1734
+ "background-color": "background-3",
1735
+ },
1736
+ },
1737
+ {
1738
+ card: {
1739
+ "background-color": "background-3",
1740
+ },
1741
+ },
1742
+ ],
1743
+ },
1744
+ {
1745
+ wrapper: {
1746
+ "padding-top": "none",
1747
+ "padding-bottom": "none",
1748
+ "border-color": "border",
1749
+ "border-bottom-width": "1px",
1750
+ "border-style": "solid",
1751
+ },
1752
+ sectionTitle: {
1753
+ "font-size": "xl",
1754
+ "font-weight": 600,
1755
+ color: "text-1",
1756
+ tablet: {
1757
+ "font-size": "lg",
1758
+ },
1759
+ },
1760
+ content: {
1761
+ "padding-top": "none",
1762
+ "padding-bottom": "lg",
1763
+ },
1764
+ trigger: {
1765
+ "padding-top": "lg",
1766
+ "padding-bottom": "lg",
1767
+ display: "flex",
1768
+ },
1769
+ container: {
1770
+ display: "flex",
1771
+ "flex-direction": "column",
1772
+ "row-gap": "lg",
1773
+ },
1774
+ headerContainer: {
1775
+ display: "flex",
1776
+ "flex-direction": "row",
1777
+ "row-gap": "base",
1778
+ "column-gap": "lg",
1779
+ mobile: {
1780
+ "flex-direction": "column",
1781
+ },
1782
+ },
1783
+ iconLabelContainer: {
1784
+ display: "flex",
1785
+ "align-items": "center",
1786
+ "column-gap": "2xs",
1787
+ "background-color": "background-3",
1788
+ width: "fit-content",
1789
+ "padding-left": "2xs",
1790
+ "padding-right": "2xs",
1791
+ "padding-top": "4xs",
1792
+ "padding-bottom": "4xs",
1793
+ "border-radius": "3xl",
1794
+ },
1795
+ label: {
1796
+ "text-transform": "uppercase",
1797
+ "letter-spacing": "0.05em",
1798
+ color: "brand",
1799
+ "font-size": "sm",
1800
+ },
1801
+ title: {
1802
+ "font-size": "xl",
1803
+ "font-weight": 700,
1804
+ color: "text-1",
1805
+ tablet: {
1806
+ "font-size": "xl",
1807
+ },
1808
+ mobile: {
1809
+ "text-align": "left",
1810
+ },
1811
+ },
1812
+ icon: {
1813
+ height: "22px",
1814
+ width: "22px",
1815
+ "font-size": "22px",
1816
+ },
1817
+ cards_levoGroup: {
1818
+ display: "flex",
1819
+ "column-gap": "sm",
1820
+ tablet: {
1821
+ display: "flex",
1822
+ "flex-direction": "column",
1823
+ "row-gap": "sm",
1824
+ },
1825
+ },
1826
+ cards: [
1827
+ {
1828
+ card: {
1829
+ "background-color": "background-3",
1830
+ "padding-left": "base",
1831
+ "padding-right": "base",
1832
+ "padding-top": "base",
1833
+ "padding-bottom": "base",
1834
+ "border-radius": "base",
1835
+ },
1836
+ label: {
1837
+ color: "brand",
1838
+ },
1839
+ title: {
1840
+ color: "text-1",
1841
+ "font-size": "lg",
1842
+ "font-weight": 700,
1843
+ "padding-top": "2xs",
1844
+ "padding-bottom": "2xs",
1845
+ },
1846
+ },
1847
+ {
1848
+ card: {
1849
+ "background-color": "background-3",
1850
+ "padding-left": "base",
1851
+ "padding-right": "base",
1852
+ "padding-top": "base",
1853
+ "padding-bottom": "base",
1854
+ "border-radius": "base",
1855
+ },
1856
+ label: {
1857
+ color: "brand",
1858
+ },
1859
+ title: {
1860
+ color: "text-1",
1861
+ "font-size": "lg",
1862
+ "font-weight": 700,
1863
+ "padding-top": "2xs",
1864
+ "padding-bottom": "2xs",
1865
+ },
1866
+ },
1867
+ {
1868
+ card: {
1869
+ "background-color": "background-3",
1870
+ "padding-left": "base",
1871
+ "padding-right": "base",
1872
+ "padding-top": "base",
1873
+ "padding-bottom": "base",
1874
+ "border-radius": "base",
1875
+ },
1876
+ label: {
1877
+ color: "brand",
1878
+ },
1879
+ title: {
1880
+ color: "text-1",
1881
+ "font-size": "lg",
1882
+ "font-weight": 700,
1883
+ "padding-top": "2xs",
1884
+ "padding-bottom": "2xs",
1885
+ },
1886
+ },
1887
+ {
1888
+ card: {
1889
+ "background-color": "background-3",
1890
+ "padding-left": "base",
1891
+ "padding-right": "base",
1892
+ "padding-top": "base",
1893
+ "padding-bottom": "base",
1894
+ "border-radius": "base",
1895
+ },
1896
+ label: {
1897
+ color: "brand",
1898
+ },
1899
+ title: {
1900
+ color: "text-1",
1901
+ "font-size": "lg",
1902
+ "font-weight": 700,
1903
+ "padding-top": "2xs",
1904
+ "padding-bottom": "2xs",
1905
+ },
1906
+ },
1907
+ {
1908
+ card: {
1909
+ "background-color": "background-3",
1910
+ },
1911
+ },
1912
+ {
1913
+ card: {
1914
+ "background-color": "background-3",
1915
+ },
1916
+ },
1917
+ {
1918
+ card: {
1919
+ "background-color": "background-3",
1920
+ },
1921
+ },
1922
+ ],
1923
+ },
1924
+ {
1925
+ wrapper: {
1926
+ "padding-top": "none",
1927
+ "padding-bottom": "none",
1928
+ "border-color": "border",
1929
+ "border-bottom-width": "1px",
1930
+ "border-style": "solid",
1931
+ },
1932
+ sectionTitle: {
1933
+ "font-size": "xl",
1934
+ "font-weight": 600,
1935
+ color: "text-1",
1936
+ tablet: {
1937
+ "font-size": "lg",
1938
+ },
1939
+ },
1940
+ content: {
1941
+ "padding-top": "none",
1942
+ "padding-bottom": "lg",
1943
+ },
1944
+ trigger: {
1945
+ "padding-top": "lg",
1946
+ "padding-bottom": "lg",
1947
+ display: "flex",
1948
+ },
1949
+ container: {
1950
+ display: "flex",
1951
+ "flex-direction": "column",
1952
+ "row-gap": "lg",
1953
+ },
1954
+ headerContainer: {
1955
+ display: "flex",
1956
+ "flex-direction": "row",
1957
+ "row-gap": "base",
1958
+ "column-gap": "lg",
1959
+ mobile: {
1960
+ "flex-direction": "column",
1961
+ },
1962
+ },
1963
+ iconLabelContainer: {
1964
+ display: "flex",
1965
+ "align-items": "center",
1966
+ "column-gap": "2xs",
1967
+ "background-color": "background-3",
1968
+ width: "fit-content",
1969
+ "padding-left": "2xs",
1970
+ "padding-right": "2xs",
1971
+ "padding-top": "4xs",
1972
+ "padding-bottom": "4xs",
1973
+ "border-radius": "3xl",
1974
+ },
1975
+ label: {
1976
+ "text-transform": "uppercase",
1977
+ "letter-spacing": "0.05em",
1978
+ color: "brand",
1979
+ "font-size": "sm",
1980
+ },
1981
+ title: {
1982
+ "font-size": "xl",
1983
+ "font-weight": 700,
1984
+ color: "text-1",
1985
+ tablet: {
1986
+ "font-size": "xl",
1987
+ },
1988
+ mobile: {
1989
+ "text-align": "left",
1990
+ },
1991
+ },
1992
+ icon: {
1993
+ height: "22px",
1994
+ width: "22px",
1995
+ "font-size": "22px",
1996
+ },
1997
+ cards_levoGroup: {
1998
+ display: "flex",
1999
+ "column-gap": "sm",
2000
+ tablet: {
2001
+ display: "flex",
2002
+ "flex-direction": "column",
2003
+ "row-gap": "sm",
2004
+ },
2005
+ },
2006
+ cards: [
2007
+ {
2008
+ card: {
2009
+ "background-color": "background-3",
2010
+ "padding-left": "base",
2011
+ "padding-right": "base",
2012
+ "padding-top": "base",
2013
+ "padding-bottom": "base",
2014
+ "border-radius": "base",
2015
+ },
2016
+ label: {
2017
+ color: "brand",
2018
+ },
2019
+ title: {
2020
+ color: "text-1",
2021
+ "font-size": "lg",
2022
+ "font-weight": 700,
2023
+ "padding-top": "2xs",
2024
+ "padding-bottom": "2xs",
2025
+ },
2026
+ },
2027
+ {
2028
+ card: {
2029
+ "background-color": "background-3",
2030
+ "padding-left": "base",
2031
+ "padding-right": "base",
2032
+ "padding-top": "base",
2033
+ "padding-bottom": "base",
2034
+ "border-radius": "base",
2035
+ },
2036
+ label: {
2037
+ color: "brand",
2038
+ },
2039
+ title: {
2040
+ color: "text-1",
2041
+ "font-size": "lg",
2042
+ "font-weight": 700,
2043
+ "padding-top": "2xs",
2044
+ "padding-bottom": "2xs",
2045
+ },
2046
+ },
2047
+ {
2048
+ card: {
2049
+ "background-color": "background-3",
2050
+ "padding-left": "base",
2051
+ "padding-right": "base",
2052
+ "padding-top": "base",
2053
+ "padding-bottom": "base",
2054
+ "border-radius": "base",
2055
+ },
2056
+ label: {
2057
+ color: "brand",
2058
+ },
2059
+ title: {
2060
+ color: "text-1",
2061
+ "font-size": "lg",
2062
+ "font-weight": 700,
2063
+ "padding-top": "2xs",
2064
+ "padding-bottom": "2xs",
2065
+ },
2066
+ },
2067
+ {
2068
+ card: {
2069
+ "background-color": "background-3",
2070
+ "padding-left": "base",
2071
+ "padding-right": "base",
2072
+ "padding-top": "base",
2073
+ "padding-bottom": "base",
2074
+ "border-radius": "base",
2075
+ },
2076
+ label: {
2077
+ color: "brand",
2078
+ },
2079
+ title: {
2080
+ color: "text-1",
2081
+ "font-size": "lg",
2082
+ "font-weight": 700,
2083
+ "padding-top": "2xs",
2084
+ "padding-bottom": "2xs",
2085
+ },
2086
+ },
2087
+ {
2088
+ card: {
2089
+ "background-color": "background-3",
2090
+ },
2091
+ },
2092
+ {
2093
+ card: {
2094
+ "background-color": "background-3",
2095
+ },
2096
+ },
2097
+ {
2098
+ card: {
2099
+ "background-color": "background-3",
2100
+ },
2101
+ },
2102
+ ],
2103
+ },
2104
+ {
2105
+ wrapper: {
2106
+ "padding-top": "none",
2107
+ "padding-bottom": "none",
2108
+ "border-color": "border",
2109
+ "border-bottom-width": "1px",
2110
+ "border-style": "solid",
2111
+ },
2112
+ sectionTitle: {
2113
+ "font-size": "xl",
2114
+ "font-weight": 600,
2115
+ color: "text-1",
2116
+ tablet: {
2117
+ "font-size": "lg",
2118
+ },
2119
+ },
2120
+ content: {
2121
+ "padding-top": "none",
2122
+ "padding-bottom": "lg",
2123
+ },
2124
+ trigger: {
2125
+ "padding-top": "lg",
2126
+ "padding-bottom": "lg",
2127
+ display: "flex",
2128
+ },
2129
+ container: {
2130
+ display: "flex",
2131
+ "flex-direction": "column",
2132
+ "row-gap": "lg",
2133
+ },
2134
+ headerContainer: {
2135
+ display: "flex",
2136
+ "flex-direction": "row",
2137
+ "row-gap": "base",
2138
+ "column-gap": "lg",
2139
+ },
2140
+ iconLabelContainer: {
2141
+ display: "flex",
2142
+ "align-items": "center",
2143
+ "column-gap": "2xs",
2144
+ "background-color": "background-3",
2145
+ width: "fit-content",
2146
+ "padding-left": "2xs",
2147
+ "padding-right": "2xs",
2148
+ "padding-top": "4xs",
2149
+ "padding-bottom": "4xs",
2150
+ "border-radius": "3xl",
2151
+ },
2152
+ label: {
2153
+ "text-transform": "uppercase",
2154
+ "letter-spacing": "0.05em",
2155
+ color: "brand",
2156
+ "font-size": "sm",
2157
+ },
2158
+ title: {
2159
+ "font-size": "xl",
2160
+ "font-weight": 700,
2161
+ color: "text-1",
2162
+ tablet: {
2163
+ "font-size": "xl",
2164
+ },
2165
+ },
2166
+ icon: {
2167
+ height: "22px",
2168
+ width: "22px",
2169
+ "font-size": "22px",
2170
+ },
2171
+ cards_levoGroup: {
2172
+ display: "flex",
2173
+ "column-gap": "sm",
2174
+ },
2175
+ cards: [
2176
+ {
2177
+ card: {
2178
+ "background-color": "background-3",
2179
+ "padding-left": "base",
2180
+ "padding-right": "base",
2181
+ "padding-top": "base",
2182
+ "padding-bottom": "base",
2183
+ "border-radius": "base",
2184
+ },
2185
+ label: {
2186
+ color: "brand",
2187
+ },
2188
+ title: {
2189
+ color: "text-1",
2190
+ "font-size": "lg",
2191
+ "font-weight": 700,
2192
+ "padding-top": "2xs",
2193
+ "padding-bottom": "2xs",
2194
+ },
2195
+ },
2196
+ {
2197
+ card: {
2198
+ "background-color": "background-3",
2199
+ "padding-left": "base",
2200
+ "padding-right": "base",
2201
+ "padding-top": "base",
2202
+ "padding-bottom": "base",
2203
+ "border-radius": "base",
2204
+ },
2205
+ label: {
2206
+ color: "brand",
2207
+ },
2208
+ title: {
2209
+ color: "text-1",
2210
+ "font-size": "lg",
2211
+ "font-weight": 700,
2212
+ "padding-top": "2xs",
2213
+ "padding-bottom": "2xs",
2214
+ },
2215
+ },
2216
+ {
2217
+ card: {
2218
+ "background-color": "background-3",
2219
+ "padding-left": "base",
2220
+ "padding-right": "base",
2221
+ "padding-top": "base",
2222
+ "padding-bottom": "base",
2223
+ "border-radius": "base",
2224
+ },
2225
+ label: {
2226
+ color: "brand",
2227
+ },
2228
+ title: {
2229
+ color: "text-1",
2230
+ "font-size": "lg",
2231
+ "font-weight": 700,
2232
+ "padding-top": "2xs",
2233
+ "padding-bottom": "2xs",
2234
+ },
2235
+ },
2236
+ {
2237
+ card: {
2238
+ "background-color": "background-3",
2239
+ "padding-left": "base",
2240
+ "padding-right": "base",
2241
+ "padding-top": "base",
2242
+ "padding-bottom": "base",
2243
+ "border-radius": "base",
2244
+ },
2245
+ label: {
2246
+ color: "brand",
2247
+ },
2248
+ title: {
2249
+ color: "text-1",
2250
+ "font-size": "lg",
2251
+ "font-weight": 700,
2252
+ "padding-top": "2xs",
2253
+ "padding-bottom": "2xs",
2254
+ },
2255
+ },
2256
+ {
2257
+ card: {
2258
+ "background-color": "background-3",
2259
+ },
2260
+ },
2261
+ {
2262
+ card: {
2263
+ "background-color": "background-3",
2264
+ },
2265
+ },
2266
+ {
2267
+ card: {
2268
+ "background-color": "background-3",
2269
+ },
2270
+ },
2271
+ ],
2272
+ },
2273
+ {
2274
+ wrapper: {
2275
+ "padding-top": "none",
2276
+ "padding-bottom": "none",
2277
+ "border-color": "border",
2278
+ "border-bottom-width": "1px",
2279
+ "border-style": "solid",
2280
+ },
2281
+ sectionTitle: {
2282
+ "font-size": "xl",
2283
+ "font-weight": 600,
2284
+ color: "text-1",
2285
+ tablet: {
2286
+ "font-size": "lg",
2287
+ },
2288
+ },
2289
+ content: {
2290
+ "padding-top": "none",
2291
+ "padding-bottom": "lg",
2292
+ },
2293
+ trigger: {
2294
+ "padding-top": "lg",
2295
+ "padding-bottom": "lg",
2296
+ display: "flex",
2297
+ },
2298
+ container: {
2299
+ display: "flex",
2300
+ "flex-direction": "column",
2301
+ "row-gap": "lg",
2302
+ },
2303
+ headerContainer: {
2304
+ display: "flex",
2305
+ "flex-direction": "row",
2306
+ "row-gap": "base",
2307
+ "column-gap": "lg",
2308
+ },
2309
+ iconLabelContainer: {
2310
+ display: "flex",
2311
+ "align-items": "center",
2312
+ "column-gap": "2xs",
2313
+ "background-color": "background-3",
2314
+ width: "fit-content",
2315
+ "padding-left": "2xs",
2316
+ "padding-right": "2xs",
2317
+ "padding-top": "4xs",
2318
+ "padding-bottom": "4xs",
2319
+ "border-radius": "3xl",
2320
+ },
2321
+ label: {
2322
+ "text-transform": "uppercase",
2323
+ "letter-spacing": "0.05em",
2324
+ color: "brand",
2325
+ "font-size": "sm",
2326
+ },
2327
+ title: {
2328
+ "font-size": "xl",
2329
+ "font-weight": 700,
2330
+ color: "text-1",
2331
+ tablet: {
2332
+ "font-size": "xl",
2333
+ },
2334
+ },
2335
+ icon: {
2336
+ height: "22px",
2337
+ width: "22px",
2338
+ "font-size": "22px",
2339
+ },
2340
+ cards_levoGroup: {
2341
+ display: "flex",
2342
+ "column-gap": "sm",
2343
+ },
2344
+ cards: [
2345
+ {
2346
+ card: {
2347
+ "background-color": "background-3",
2348
+ "padding-left": "base",
2349
+ "padding-right": "base",
2350
+ "padding-top": "base",
2351
+ "padding-bottom": "base",
2352
+ "border-radius": "base",
2353
+ },
2354
+ label: {
2355
+ color: "brand",
2356
+ },
2357
+ title: {
2358
+ color: "text-1",
2359
+ "font-size": "lg",
2360
+ "font-weight": 700,
2361
+ "padding-top": "2xs",
2362
+ "padding-bottom": "2xs",
2363
+ },
2364
+ },
2365
+ {
2366
+ card: {
2367
+ "background-color": "background-3",
2368
+ "padding-left": "base",
2369
+ "padding-right": "base",
2370
+ "padding-top": "base",
2371
+ "padding-bottom": "base",
2372
+ "border-radius": "base",
2373
+ },
2374
+ label: {
2375
+ color: "brand",
2376
+ },
2377
+ title: {
2378
+ color: "text-1",
2379
+ "font-size": "lg",
2380
+ "font-weight": 700,
2381
+ "padding-top": "2xs",
2382
+ "padding-bottom": "2xs",
2383
+ },
2384
+ },
2385
+ {
2386
+ card: {
2387
+ "background-color": "background-3",
2388
+ "padding-left": "base",
2389
+ "padding-right": "base",
2390
+ "padding-top": "base",
2391
+ "padding-bottom": "base",
2392
+ "border-radius": "base",
2393
+ },
2394
+ label: {
2395
+ color: "brand",
2396
+ },
2397
+ title: {
2398
+ color: "text-1",
2399
+ "font-size": "lg",
2400
+ "font-weight": 700,
2401
+ "padding-top": "2xs",
2402
+ "padding-bottom": "2xs",
2403
+ },
2404
+ },
2405
+ {
2406
+ card: {
2407
+ "background-color": "background-3",
2408
+ "padding-left": "base",
2409
+ "padding-right": "base",
2410
+ "padding-top": "base",
2411
+ "padding-bottom": "base",
2412
+ "border-radius": "base",
2413
+ },
2414
+ label: {
2415
+ color: "brand",
2416
+ },
2417
+ title: {
2418
+ color: "text-1",
2419
+ "font-size": "lg",
2420
+ "font-weight": 700,
2421
+ "padding-top": "2xs",
2422
+ "padding-bottom": "2xs",
2423
+ },
2424
+ },
2425
+ {
2426
+ card: {
2427
+ "background-color": "background-3",
2428
+ },
2429
+ },
2430
+ {
2431
+ card: {
2432
+ "background-color": "background-3",
2433
+ },
2434
+ },
2435
+ {
2436
+ card: {
2437
+ "background-color": "background-3",
2438
+ },
2439
+ },
2440
+ ],
2441
+ },
2442
+ {
2443
+ wrapper: {
2444
+ "padding-top": "none",
2445
+ "padding-bottom": "none",
2446
+ "border-color": "border",
2447
+ "border-bottom-width": "1px",
2448
+ "border-style": "solid",
2449
+ },
2450
+ sectionTitle: {
2451
+ "font-size": "xl",
2452
+ "font-weight": 600,
2453
+ color: "text-1",
2454
+ tablet: {
2455
+ "font-size": "lg",
2456
+ },
2457
+ },
2458
+ content: {
2459
+ "padding-top": "none",
2460
+ "padding-bottom": "lg",
2461
+ },
2462
+ trigger: {
2463
+ "padding-top": "lg",
2464
+ "padding-bottom": "lg",
2465
+ display: "flex",
2466
+ },
2467
+ container: {
2468
+ display: "flex",
2469
+ "flex-direction": "column",
2470
+ "row-gap": "lg",
2471
+ },
2472
+ headerContainer: {
2473
+ display: "flex",
2474
+ "flex-direction": "row",
2475
+ "row-gap": "base",
2476
+ "column-gap": "lg",
2477
+ },
2478
+ iconLabelContainer: {
2479
+ display: "flex",
2480
+ "align-items": "center",
2481
+ "column-gap": "2xs",
2482
+ "background-color": "background-3",
2483
+ width: "fit-content",
2484
+ "padding-left": "2xs",
2485
+ "padding-right": "2xs",
2486
+ "padding-top": "4xs",
2487
+ "padding-bottom": "4xs",
2488
+ "border-radius": "3xl",
2489
+ },
2490
+ label: {
2491
+ "text-transform": "uppercase",
2492
+ "letter-spacing": "0.05em",
2493
+ color: "brand",
2494
+ "font-size": "sm",
2495
+ },
2496
+ title: {
2497
+ "font-size": "xl",
2498
+ "font-weight": 700,
2499
+ color: "text-1",
2500
+ tablet: {
2501
+ "font-size": "xl",
2502
+ },
2503
+ },
2504
+ icon: {
2505
+ height: "22px",
2506
+ width: "22px",
2507
+ "font-size": "22px",
2508
+ },
2509
+ cards_levoGroup: {
2510
+ display: "flex",
2511
+ "column-gap": "sm",
2512
+ },
2513
+ cards: [
2514
+ {
2515
+ card: {
2516
+ "background-color": "background-3",
2517
+ "padding-left": "base",
2518
+ "padding-right": "base",
2519
+ "padding-top": "base",
2520
+ "padding-bottom": "base",
2521
+ "border-radius": "base",
2522
+ },
2523
+ label: {
2524
+ color: "brand",
2525
+ },
2526
+ title: {
2527
+ color: "text-1",
2528
+ "font-size": "lg",
2529
+ "font-weight": 700,
2530
+ "padding-top": "2xs",
2531
+ "padding-bottom": "2xs",
2532
+ },
2533
+ },
2534
+ {
2535
+ card: {
2536
+ "background-color": "background-3",
2537
+ "padding-left": "base",
2538
+ "padding-right": "base",
2539
+ "padding-top": "base",
2540
+ "padding-bottom": "base",
2541
+ "border-radius": "base",
2542
+ },
2543
+ label: {
2544
+ color: "brand",
2545
+ },
2546
+ title: {
2547
+ color: "text-1",
2548
+ "font-size": "lg",
2549
+ "font-weight": 700,
2550
+ "padding-top": "2xs",
2551
+ "padding-bottom": "2xs",
2552
+ },
2553
+ },
2554
+ {
2555
+ card: {
2556
+ "background-color": "background-3",
2557
+ "padding-left": "base",
2558
+ "padding-right": "base",
2559
+ "padding-top": "base",
2560
+ "padding-bottom": "base",
2561
+ "border-radius": "base",
2562
+ },
2563
+ label: {
2564
+ color: "brand",
2565
+ },
2566
+ title: {
2567
+ color: "text-1",
2568
+ "font-size": "lg",
2569
+ "font-weight": 700,
2570
+ "padding-top": "2xs",
2571
+ "padding-bottom": "2xs",
2572
+ },
2573
+ },
2574
+ {
2575
+ card: {
2576
+ "background-color": "background-3",
2577
+ "padding-left": "base",
2578
+ "padding-right": "base",
2579
+ "padding-top": "base",
2580
+ "padding-bottom": "base",
2581
+ "border-radius": "base",
2582
+ },
2583
+ label: {
2584
+ color: "brand",
2585
+ },
2586
+ title: {
2587
+ color: "text-1",
2588
+ "font-size": "lg",
2589
+ "font-weight": 700,
2590
+ "padding-top": "2xs",
2591
+ "padding-bottom": "2xs",
2592
+ },
2593
+ },
2594
+ {
2595
+ card: {
2596
+ "background-color": "background-3",
2597
+ },
2598
+ },
2599
+ {
2600
+ card: {
2601
+ "background-color": "background-3",
2602
+ },
2603
+ },
2604
+ {
2605
+ card: {
2606
+ "background-color": "background-3",
2607
+ },
2608
+ },
2609
+ ],
2610
+ },
2611
+ {
2612
+ wrapper: {
2613
+ "padding-top": "none",
2614
+ "padding-bottom": "none",
2615
+ "border-color": "border",
2616
+ "border-bottom-width": "1px",
2617
+ "border-style": "solid",
2618
+ },
2619
+ sectionTitle: {
2620
+ "font-size": "xl",
2621
+ "font-weight": 600,
2622
+ color: "text-1",
2623
+ tablet: {
2624
+ "font-size": "lg",
2625
+ },
2626
+ },
2627
+ content: {
2628
+ "padding-top": "none",
2629
+ "padding-bottom": "lg",
2630
+ },
2631
+ trigger: {
2632
+ "padding-top": "lg",
2633
+ "padding-bottom": "lg",
2634
+ display: "flex",
2635
+ },
2636
+ container: {
2637
+ display: "flex",
2638
+ "flex-direction": "column",
2639
+ "row-gap": "lg",
2640
+ },
2641
+ headerContainer: {
2642
+ display: "flex",
2643
+ "flex-direction": "column",
2644
+ "row-gap": "base",
2645
+ },
2646
+ iconLabelContainer: {
2647
+ display: "flex",
2648
+ "align-items": "center",
2649
+ "column-gap": "base",
2650
+ },
2651
+ label: {
2652
+ "font-size": "sm",
2653
+ "font-weight": 600,
2654
+ color: "primary",
2655
+ "text-transform": "uppercase",
2656
+ "letter-spacing": "0.05em",
2657
+ },
2658
+ title: {
2659
+ "font-size": "2xl",
2660
+ "font-weight": 700,
2661
+ color: "text-1",
2662
+ tablet: {
2663
+ "font-size": "xl",
2664
+ },
2665
+ },
2666
+ },
2667
+ {
2668
+ wrapper: {
2669
+ "padding-top": "none",
2670
+ "padding-bottom": "none",
2671
+ "border-color": "border",
2672
+ "border-bottom-width": "1px",
2673
+ "border-style": "solid",
2674
+ },
2675
+ sectionTitle: {
2676
+ "font-size": "xl",
2677
+ "font-weight": 600,
2678
+ color: "text-1",
2679
+ tablet: {
2680
+ "font-size": "lg",
2681
+ },
2682
+ },
2683
+ content: {
2684
+ "padding-top": "none",
2685
+ "padding-bottom": "lg",
2686
+ },
2687
+ trigger: {
2688
+ "padding-top": "lg",
2689
+ "padding-bottom": "lg",
2690
+ display: "flex",
2691
+ },
2692
+ container: {
2693
+ display: "flex",
2694
+ "flex-direction": "column",
2695
+ "row-gap": "lg",
2696
+ },
2697
+ headerContainer: {
2698
+ display: "flex",
2699
+ "flex-direction": "column",
2700
+ "row-gap": "base",
2701
+ },
2702
+ iconLabelContainer: {
2703
+ display: "flex",
2704
+ "align-items": "center",
2705
+ "column-gap": "base",
2706
+ },
2707
+ label: {
2708
+ "font-size": "sm",
2709
+ "font-weight": 600,
2710
+ color: "primary",
2711
+ "text-transform": "uppercase",
2712
+ "letter-spacing": "0.05em",
2713
+ },
2714
+ title: {
2715
+ "font-size": "2xl",
2716
+ "font-weight": 700,
2717
+ color: "text-1",
2718
+ tablet: {
2719
+ "font-size": "xl",
2720
+ },
2721
+ },
2722
+ },
2723
+ ],
2724
+ },
2725
+ content: DEFAULT_CONTENT,
2726
+ config: {},
2727
+ },
2728
+ ],
2729
+ };