@drivy/cobalt 0.29.1 → 0.30.0

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 (33) hide show
  1. package/cjs/tokens/theme.js +1 -1
  2. package/components/Card/index.js +3 -2
  3. package/components/Card/index.js.map +1 -1
  4. package/components/Flash/index.js +4 -4
  5. package/components/Flash/index.js.map +1 -1
  6. package/components/Form/Autocomplete/index.js +1 -1
  7. package/components/Form/Autocomplete/index.js.map +1 -1
  8. package/package.json +1 -1
  9. package/styles/components/Alerter/index.scss +2 -4
  10. package/styles/components/BulletList/index.scss +1 -2
  11. package/styles/components/Buttons/index.scss +0 -1
  12. package/styles/components/Calendar/CalendarRangePicker/index.scss +13 -18
  13. package/styles/components/Calendar/CalendarView/index.scss +6 -8
  14. package/styles/components/Card/index.scss +16 -6
  15. package/styles/components/Flash/index.scss +2 -4
  16. package/styles/components/Form/Autocomplete/index.scss +10 -21
  17. package/styles/components/Form/CheckablePill.scss +1 -2
  18. package/styles/components/Form/Checkmark.scss +1 -5
  19. package/styles/components/Form/Hint.scss +0 -9
  20. package/styles/components/Form/RadioWithDetails.scss +2 -2
  21. package/styles/components/Helper/index.scss +0 -3
  22. package/styles/components/Icon/index.scss +1 -2
  23. package/styles/components/Note/index.scss +4 -0
  24. package/styles/components/PhotoDropzone/index.scss +1 -2
  25. package/styles/components/TabBar/index.scss +1 -1
  26. package/styles/components/Tag/index.scss +2 -4
  27. package/styles/core/_colors-map.scss +164 -164
  28. package/styles/core/text.scss +38 -20
  29. package/styles/core/theme.scss +160 -160
  30. package/styles/core/typography.scss +12 -12
  31. package/tokens/theme.js +1 -1
  32. package/types/components/Card/index.d.ts +3 -1
  33. package/utilities.css +418 -388
package/utilities.css CHANGED
@@ -107,166 +107,166 @@
107
107
  /**********************************/
108
108
 
109
109
  :root {
110
- --c-background-primary: var(--c-l-grey-lighter);
111
- --c-background-secondary: var(--c-l-white);
112
- --c-background-secondaryInteractive: var(--c-l-white);
113
- --c-background-secondaryInteractive--hover: var(--c-l-grey-lighter);
114
- --c-background-accent: var(--c-l-purple);
115
- --c-background-accentInteractive: var(--c-l-purple);
116
- --c-background-accentInteractive--hover: var(--c-l-purple);
117
- --c-background-accentAlt: var(--c-l-indigo);
118
- --c-background-accentAltInteractive: var(--c-l-indigo);
119
- --c-background-accentAltInteractive--hover: var(--c-l-indigo);
120
- --c-background-info: var(--c-l-grey-lighter);
121
- --c-background-error: var(--c-l-red);
122
- --c-background-errorInteractive: var(--c-l-red);
123
- --c-background-errorInteractive--hover: var(--c-l-red);
124
- --c-background-errorAlt: var(--c-l-graphite);
125
- --c-background-success: var(--c-l-green);
126
- --c-background-successAlt: var(--c-l-graphite);
127
- --c-background-connect: var(--c-l-turquoise);
128
- --c-background-connectInteractive: var(--c-l-turquoise);
129
- --c-background-connectInteractive--hover: var(--c-l-turquoise);
130
- --c-background-connectAlt: var(--c-l-grey-light);
131
- --c-background-driver: var(--c-l-deprecatedDriver);
132
- --c-background-owner: var(--c-l-indigo-dark);
133
- --c-background-disabled: var(--c-l-grey-light);
134
- --c-background-neutral: var(--c-l-grey-light);
135
- --c-background-neutralAlt: var(--c-l-grey-lighter);
136
- --c-background-seasonLow: var(--c-l-deprecatedSeasonLow);
137
- --c-background-seasonMedium: var(--c-l-deprecatedSeasonMedium);
138
- --c-background-seasonHigh: var(--c-l-deprecatedSeasonHigh);
139
- --c-background-seasonVeryHigh: var(--c-l-deprecatedSeasonVeryHigh);
140
- --c-text-base: var(--c-l-graphite);
141
- --c-text-baseInteractive: var(--c-l-graphite);
142
- --c-text-baseInteractive--hover: var(--c-l-graphite);
143
- --c-text-subdued: var(--c-l-graphite-light);
144
- --c-text-subduedInteractive: var(--c-l-graphite-light);
145
- --c-text-subduedInteractive--hover: var(--c-l-graphite);
146
- --c-text-accent: var(--c-l-purple);
147
- --c-text-accentInteractive: var(--c-l-blue);
148
- --c-text-accentInteractive--hover: var(--c-l-blue);
149
- --c-text-accentAlt: var(--c-l-white);
150
- --c-text-accentAltInteractive: var(--c-l-white);
151
- --c-text-accentAltInteractive--hover: var(--c-l-white);
152
- --c-text-info: var(--c-l-graphite-light);
153
- --c-text-infoAlt: var(--c-l-turquoise);
154
- --c-text-error: var(--c-l-red);
155
- --c-text-errorAlt: var(--c-l-white);
156
- --c-text-success: var(--c-l-green);
157
- --c-text-successAlt: var(--c-l-white);
158
- --c-text-warning: var(--c-l-coral);
159
- --c-text-connect: var(--c-l-turquoise);
160
- --c-text-driver: var(--c-l-graphite);
161
- --c-text-owner: var(--c-l-white);
162
- --c-text-inversed: var(--c-l-white);
163
- --c-buttonBackground-selected: var(--c-l-indigo);
164
- --c-buttonBackground-destructiveInteractive: var(--c-l-red);
165
- --c-buttonBackground-destructiveInteractive--hover: var(--c-l-red);
166
- --c-buttonBackground-destructiveInteractive--press: var(--c-l-red);
167
- --c-buttonBackground-disabled: var(--c-l-grey-lighter);
168
- --c-buttonBackground-primaryInteractive: var(--c-l-purple);
169
- --c-buttonBackground-primaryInteractive--hover: var(--c-l-indigo);
170
- --c-buttonBackground-primaryInteractive--press: var(--c-l-indigo-dark);
171
- --c-buttonBackground-secondaryInteractive: var(--c-l-white);
172
- --c-buttonBackground-secondaryInteractive--hover: var(--c-l-white);
173
- --c-buttonBackground-secondaryInteractive--press: var(--c-l-white);
174
- --c-buttonBackground-success: var(--c-l-green);
175
- --c-buttonBackground-successAltInteractive: var(--c-l-green);
176
- --c-buttonBackground-successAltInteractive--hover: var(--c-l-green);
177
- --c-buttonBackground-successAltInteractive--press: var(--c-l-green);
178
- --c-buttonBackground-tertiaryInteractive: var(--c-l-white);
179
- --c-buttonBackground-tertiaryInteractive--hover: var(--c-l-white);
180
- --c-buttonBackground-tertiaryInteractive--press: var(--c-l-white);
181
- --c-buttonIcon-selected: var(--c-l-white);
182
- --c-buttonIcon-destructiveInteractive: var(--c-l-red);
183
- --c-buttonIcon-destructiveInteractive--hover: var(--c-l-red);
184
- --c-buttonIcon-destructiveInteractive--press: var(--c-l-red);
185
- --c-buttonIcon-disabled: var(--c-l-graphite-light);
186
- --c-buttonIcon-primaryInteractive: var(--c-l-white);
187
- --c-buttonIcon-primaryInteractive--hover: var(--c-l-white);
188
- --c-buttonIcon-primaryInteractive--press: var(--c-l-white);
189
- --c-buttonIcon-secondaryInteractive: var(--c-l-indigo);
190
- --c-buttonIcon-secondaryInteractive--hover: var(--c-l-indigo);
191
- --c-buttonIcon-secondaryInteractive--press: var(--c-l-indigo-dark);
192
- --c-buttonIcon-success: var(--c-l-white);
193
- --c-buttonIcon-successAltInteractive: var(--c-l-white);
194
- --c-buttonIcon-successAltInteractive--hover: var(--c-l-white);
195
- --c-buttonIcon-successAltInteractive--press: var(--c-l-white);
196
- --c-buttonIcon-tertiaryInteractive: var(--c-l-blue);
197
- --c-buttonIcon-tertiaryInteractive--hover: var(--c-l-blue);
198
- --c-buttonIcon-tertiaryInteractive--press: var(--c-l-blue);
199
- --c-buttonLabel-selected: var(--c-l-white);
200
- --c-buttonLabel-destructiveInteractive: var(--c-l-white);
201
- --c-buttonLabel-destructiveInteractive--hover: var(--c-l-white);
202
- --c-buttonLabel-destructiveInteractive--press: var(--c-l-white);
203
- --c-buttonLabel-disabled: var(--c-l-graphite-light);
204
- --c-buttonLabel-primaryInteractive: var(--c-l-white);
205
- --c-buttonLabel-primaryInteractive--hover: var(--c-l-white);
206
- --c-buttonLabel-primaryInteractive--press: var(--c-l-white);
207
- --c-buttonLabel-secondaryInteractive: var(--c-l-indigo);
208
- --c-buttonLabel-secondaryInteractive--hover: var(--c-l-indigo);
209
- --c-buttonLabel-secondaryInteractive--press: var(--c-l-indigo-dark);
210
- --c-buttonLabel-success: var(--c-l-white);
211
- --c-buttonLabel-successAltInteractive: var(--c-l-white);
212
- --c-buttonLabel-successAltInteractive--hover: var(--c-l-white);
213
- --c-buttonLabel-successAltInteractive--press: var(--c-l-white);
214
- --c-buttonLabel-tertiaryInteractive: var(--c-l-blue);
215
- --c-buttonLabel-tertiaryInteractive--hover: var(--c-l-blue);
216
- --c-buttonLabel-tertiaryInteractive--press: var(--c-l-blue);
217
- --c-icon-base: var(--c-l-graphite);
218
- --c-icon-baseInteractive: var(--c-l-graphite);
219
- --c-icon-baseInteractive--hover: var(--c-l-graphite);
220
- --c-icon-subdued: var(--c-l-graphite-light);
221
- --c-icon-subduedInteractive: var(--c-l-graphite-light);
222
- --c-icon-subduedInteractive--hover: var(--c-l-graphite);
223
- --c-icon-accent: var(--c-l-purple);
224
- --c-icon-accentInteractive: var(--c-l-purple);
225
- --c-icon-accentInteractive--hover: var(--c-l-indigo);
226
- --c-icon-accentAlt: var(--c-l-white);
227
- --c-icon-accentAltInteractive: var(--c-l-white);
228
- --c-icon-accentAltInteractive--hover: var(--c-l-white);
229
- --c-icon-info: var(--c-l-graphite-light);
230
- --c-icon-infoAlt: var(--c-l-turquoise);
231
- --c-icon-error: var(--c-l-red);
232
- --c-icon-errorAlt: var(--c-l-red);
233
- --c-icon-success: var(--c-l-green);
234
- --c-icon-successAlt: var(--c-l-white);
235
- --c-icon-warning: var(--c-l-coral);
236
- --c-icon-connect: var(--c-l-turquoise);
237
- --c-icon-connectAlt: var(--c-l-turquoise);
238
- --c-icon-driver: var(--c-l-graphite);
239
- --c-icon-owner: var(--c-l-white);
240
- --c-icon-inversed: var(--c-l-white);
241
- --c-icon-disabled: var(--c-l-grey-lighter);
242
- --c-stroke-base: var(--c-l-grey);
243
- --c-stroke-baseInteractive: var(--c-l-grey);
244
- --c-stroke-baseInteractive--hover: var(--c-l-graphite-light);
245
- --c-stroke-baseInteractive--press: var(--c-l-graphite);
246
- --c-stroke-strong: var(--c-l-grey-dark);
247
- --c-stroke-strongInteractive: var(--c-l-grey-dark);
248
- --c-stroke-strongInteractive--hover: var(--c-l-graphite-light);
249
- --c-stroke-strongInteractive--press: var(--c-l-graphite);
250
- --c-stroke-subdued: var(--c-l-grey-light);
251
- --c-stroke-accent: var(--c-l-indigo);
252
- --c-stroke-accentInteractive: var(--c-l-indigo);
253
- --c-stroke-accentInteractive--hover: var(--c-l-indigo);
254
- --c-stroke-accentInteractive--press: var(--c-l-indigo-dark);
255
- --c-stroke-accentAlt: var(--c-l-purple);
256
- --c-stroke-error: var(--c-l-red);
257
- --c-stroke-errorAlt: var(--c-l-red);
258
- --c-stroke-success: var(--c-l-green);
259
- --c-stroke-successAlt: var(--c-l-green);
260
- --c-fill-base: var(--c-l-graphite);
261
- --c-fill-secondary: var(--c-l-turquoise);
262
- --c-fill-subdued: var(--c-l-grey-light);
263
- --c-fill-accent: var(--c-l-purple);
264
- --c-fill-accentAlt: var(--c-l-purple);
265
- --c-fill-error: var(--c-l-red);
266
- --c-fill-negative: var(--c-l-red);
267
- --c-fill-success: var(--c-l-green);
268
- --c-fill-disabled: var(--c-l-grey-dark);
269
- --c-fill-neutral: var(--c-l-grey-lighter);
110
+ --c-background-primary: var(--c-white);
111
+ --c-background-secondary: var(--c-white);
112
+ --c-background-secondaryInteractive: var(--c-white);
113
+ --c-background-secondaryInteractive--hover: var(--c-navy-50);
114
+ --c-background-accent: var(--c-purple-500);
115
+ --c-background-accentInteractive: var(--c-purple-500);
116
+ --c-background-accentInteractive--hover: var(--c-purple-700);
117
+ --c-background-accentAlt: var(--c-purple-100);
118
+ --c-background-accentAltInteractive: var(--c-purple-100);
119
+ --c-background-accentAltInteractive--hover: var(--c-purpleLight-100);
120
+ --c-background-info: var(--c-yellow-100);
121
+ --c-background-error: var(--c-red-500);
122
+ --c-background-errorInteractive: var(--c-red-500);
123
+ --c-background-errorInteractive--hover: var(--c-red-700);
124
+ --c-background-errorAlt: var(--c-red-100);
125
+ --c-background-success: var(--c-green-700);
126
+ --c-background-successAlt: var(--c-green-100);
127
+ --c-background-connect: var(--c-turquoise-500);
128
+ --c-background-connectInteractive: var(--c-turquoise-500);
129
+ --c-background-connectInteractive--hover: var(--c-turquoise-700);
130
+ --c-background-connectAlt: var(--c-turquoise-50);
131
+ --c-background-driver: var(--c-yellow-500);
132
+ --c-background-owner: var(--c-navy-700);
133
+ --c-background-disabled: var(--c-navy-100);
134
+ --c-background-neutral: var(--c-navy-100);
135
+ --c-background-neutralAlt: var(--c-navy-50);
136
+ --c-background-seasonLow: var(--c-season-100);
137
+ --c-background-seasonMedium: var(--c-season-200);
138
+ --c-background-seasonHigh: var(--c-season-300);
139
+ --c-background-seasonVeryHigh: var(--c-season-400);
140
+ --c-text-base: var(--c-navy-700);
141
+ --c-text-baseInteractive: var(--c-navy-700);
142
+ --c-text-baseInteractive--hover: var(--c-navy-300);
143
+ --c-text-subdued: var(--c-navy-300);
144
+ --c-text-subduedInteractive: var(--c-navy-300);
145
+ --c-text-subduedInteractive--hover: var(--c-navy-500);
146
+ --c-text-accent: var(--c-purple-500);
147
+ --c-text-accentInteractive: var(--c-purple-500);
148
+ --c-text-accentInteractive--hover: var(--c-purple-700);
149
+ --c-text-accentAlt: var(--c-purple-500);
150
+ --c-text-accentAltInteractive: var(--c-purple-500);
151
+ --c-text-accentAltInteractive--hover: var(--c-purple-700);
152
+ --c-text-info: var(--c-yellow-900);
153
+ --c-text-infoAlt: var(--c-yellow-500);
154
+ --c-text-error: var(--c-red-500);
155
+ --c-text-errorAlt: var(--c-red-500);
156
+ --c-text-success: var(--c-green-700);
157
+ --c-text-successAlt: var(--c-green-900);
158
+ --c-text-warning: var(--c-orange-500);
159
+ --c-text-connect: var(--c-turquoise-500);
160
+ --c-text-driver: var(--c-navy-700);
161
+ --c-text-owner: var(--c-white);
162
+ --c-text-inversed: var(--c-white);
163
+ --c-buttonBackground-selected: var(--c-purple-100);
164
+ --c-buttonBackground-destructiveInteractive: var(--c-red-100);
165
+ --c-buttonBackground-destructiveInteractive--hover: var(--c-red-120);
166
+ --c-buttonBackground-destructiveInteractive--press: var(--c-red-150);
167
+ --c-buttonBackground-disabled: var(--c-navy-100);
168
+ --c-buttonBackground-primaryInteractive: var(--c-purple-500);
169
+ --c-buttonBackground-primaryInteractive--hover: var(--c-purple-700);
170
+ --c-buttonBackground-primaryInteractive--press: var(--c-purple-900);
171
+ --c-buttonBackground-secondaryInteractive: var(--c-white);
172
+ --c-buttonBackground-secondaryInteractive--hover: var(--c-white);
173
+ --c-buttonBackground-secondaryInteractive--press: var(--c-white);
174
+ --c-buttonBackground-success: var(--c-green-700);
175
+ --c-buttonBackground-successAltInteractive: var(--c-green-100);
176
+ --c-buttonBackground-successAltInteractive--hover: var(--c-green-120);
177
+ --c-buttonBackground-successAltInteractive--press: var(--c-green-150);
178
+ --c-buttonBackground-tertiaryInteractive: var(--c-white);
179
+ --c-buttonBackground-tertiaryInteractive--hover: var(--c-white);
180
+ --c-buttonBackground-tertiaryInteractive--press: var(--c-white);
181
+ --c-buttonIcon-selected: var(--c-purple-500);
182
+ --c-buttonIcon-destructiveInteractive: var(--c-red-500);
183
+ --c-buttonIcon-destructiveInteractive--hover: var(--c-red-500);
184
+ --c-buttonIcon-destructiveInteractive--press: var(--c-red-500);
185
+ --c-buttonIcon-disabled: var(--c-navy-300);
186
+ --c-buttonIcon-primaryInteractive: var(--c-white);
187
+ --c-buttonIcon-primaryInteractive--hover: var(--c-white);
188
+ --c-buttonIcon-primaryInteractive--press: var(--c-white);
189
+ --c-buttonIcon-secondaryInteractive: var(--c-purple-500);
190
+ --c-buttonIcon-secondaryInteractive--hover: var(--c-purple-700);
191
+ --c-buttonIcon-secondaryInteractive--press: var(--c-purple-900);
192
+ --c-buttonIcon-success: var(--c-white);
193
+ --c-buttonIcon-successAltInteractive: var(--c-green-900);
194
+ --c-buttonIcon-successAltInteractive--hover: var(--c-green-900);
195
+ --c-buttonIcon-successAltInteractive--press: var(--c-green-900);
196
+ --c-buttonIcon-tertiaryInteractive: var(--c-purple-500);
197
+ --c-buttonIcon-tertiaryInteractive--hover: var(--c-purple-700);
198
+ --c-buttonIcon-tertiaryInteractive--press: var(--c-purple-900);
199
+ --c-buttonLabel-selected: var(--c-purple-500);
200
+ --c-buttonLabel-destructiveInteractive: var(--c-red-500);
201
+ --c-buttonLabel-destructiveInteractive--hover: var(--c-red-500);
202
+ --c-buttonLabel-destructiveInteractive--press: var(--c-red-500);
203
+ --c-buttonLabel-disabled: var(--c-navy-300);
204
+ --c-buttonLabel-primaryInteractive: var(--c-white);
205
+ --c-buttonLabel-primaryInteractive--hover: var(--c-white);
206
+ --c-buttonLabel-primaryInteractive--press: var(--c-white);
207
+ --c-buttonLabel-secondaryInteractive: var(--c-purple-500);
208
+ --c-buttonLabel-secondaryInteractive--hover: var(--c-purple-700);
209
+ --c-buttonLabel-secondaryInteractive--press: var(--c-purple-900);
210
+ --c-buttonLabel-success: var(--c-white);
211
+ --c-buttonLabel-successAltInteractive: var(--c-green-900);
212
+ --c-buttonLabel-successAltInteractive--hover: var(--c-green-900);
213
+ --c-buttonLabel-successAltInteractive--press: var(--c-green-900);
214
+ --c-buttonLabel-tertiaryInteractive: var(--c-purple-500);
215
+ --c-buttonLabel-tertiaryInteractive--hover: var(--c-purple-700);
216
+ --c-buttonLabel-tertiaryInteractive--press: var(--c-purple-900);
217
+ --c-icon-base: var(--c-navy-500);
218
+ --c-icon-baseInteractive: var(--c-navy-500);
219
+ --c-icon-baseInteractive--hover: var(--c-navy-700);
220
+ --c-icon-subdued: var(--c-navy-300);
221
+ --c-icon-subduedInteractive: var(--c-navy-300);
222
+ --c-icon-subduedInteractive--hover: var(--c-navy-500);
223
+ --c-icon-accent: var(--c-purple-500);
224
+ --c-icon-accentInteractive: var(--c-purple-500);
225
+ --c-icon-accentInteractive--hover: var(--c-purple-700);
226
+ --c-icon-accentAlt: var(--c-purple-500);
227
+ --c-icon-accentAltInteractive: var(--c-purple-500);
228
+ --c-icon-accentAltInteractive--hover: var(--c-purple-700);
229
+ --c-icon-info: var(--c-yellow-900);
230
+ --c-icon-infoAlt: var(--c-yellow-500);
231
+ --c-icon-error: var(--c-red-500);
232
+ --c-icon-errorAlt: var(--c-red-500);
233
+ --c-icon-success: var(--c-green-700);
234
+ --c-icon-successAlt: var(--c-green-900);
235
+ --c-icon-warning: var(--c-orange-500);
236
+ --c-icon-connect: var(--c-turquoise-500);
237
+ --c-icon-connectAlt: var(--c-turquoise-900);
238
+ --c-icon-driver: var(--c-navy-700);
239
+ --c-icon-owner: var(--c-white);
240
+ --c-icon-inversed: var(--c-white);
241
+ --c-icon-disabled: var(--c-navy-100);
242
+ --c-stroke-base: var(--c-navy-100);
243
+ --c-stroke-baseInteractive: var(--c-navy-100);
244
+ --c-stroke-baseInteractive--hover: var(--c-navy-300);
245
+ --c-stroke-baseInteractive--press: var(--c-navy-500);
246
+ --c-stroke-strong: var(--c-navy-300);
247
+ --c-stroke-strongInteractive: var(--c-navy-300);
248
+ --c-stroke-strongInteractive--hover: var(--c-navy-500);
249
+ --c-stroke-strongInteractive--press: var(--c-navy-700);
250
+ --c-stroke-subdued: var(--c-navy-100);
251
+ --c-stroke-accent: var(--c-purple-500);
252
+ --c-stroke-accentInteractive: var(--c-purple-500);
253
+ --c-stroke-accentInteractive--hover: var(--c-purple-700);
254
+ --c-stroke-accentInteractive--press: var(--c-purple-900);
255
+ --c-stroke-accentAlt: var(--c-purple-300);
256
+ --c-stroke-error: var(--c-red-500);
257
+ --c-stroke-errorAlt: var(--c-red-500);
258
+ --c-stroke-success: var(--c-green-500);
259
+ --c-stroke-successAlt: var(--c-green-500);
260
+ --c-fill-base: var(--c-navy-500);
261
+ --c-fill-secondary: var(--c-yellow-500);
262
+ --c-fill-subdued: var(--c-navy-100);
263
+ --c-fill-accent: var(--c-purple-500);
264
+ --c-fill-accentAlt: var(--c-purple-100);
265
+ --c-fill-error: var(--c-red-500);
266
+ --c-fill-negative: var(--c-red-150);
267
+ --c-fill-success: var(--c-green-500);
268
+ --c-fill-disabled: var(--c-navy-300);
269
+ --c-fill-neutral: var(--c-navy-50);
270
270
  }
271
271
 
272
272
  .c-sr-only {
@@ -3904,59 +3904,57 @@
3904
3904
  .c-text-heading {
3905
3905
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3906
3906
  font-size: 2.25rem;
3907
- line-height: 2.5rem;
3907
+ line-height: 125%;
3908
3908
  font-weight: 700;
3909
+ letter-spacing: -0.5px;
3909
3910
  }
3910
3911
 
3911
3912
  .c-text-subheading {
3912
3913
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3913
3914
  font-size: 1.25rem;
3914
- line-height: 1.5rem;
3915
- font-weight: 700;
3916
- }
3917
-
3918
- .c-text-section-heading {
3919
- font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3920
- font-size: 0.875rem;
3921
- line-height: 1.5rem;
3915
+ line-height: 125%;
3922
3916
  font-weight: 700;
3923
- text-transform: uppercase;
3924
- color: var(--c-l-graphite-light);
3917
+ letter-spacing: -0.5px;
3925
3918
  }
3926
3919
 
3927
3920
  .c-text-title-xl {
3928
3921
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3929
3922
  font-size: 2rem;
3930
- line-height: 2.25rem;
3923
+ line-height: 125%;
3931
3924
  font-weight: 700;
3925
+ letter-spacing: -0.04rem;
3932
3926
  }
3933
3927
 
3934
3928
  .c-text-title-lg {
3935
3929
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3936
3930
  font-size: 1.5rem;
3937
- line-height: 1.75rem;
3931
+ line-height: 125%;
3938
3932
  font-weight: 700;
3933
+ letter-spacing: -0.03rem;
3939
3934
  }
3940
3935
 
3941
3936
  .c-text-title-md {
3942
3937
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3943
- font-size: 1.125rem;
3944
- line-height: 1.25rem;
3938
+ font-size: 1.25rem;
3939
+ line-height: 125%;
3945
3940
  font-weight: 700;
3941
+ letter-spacing: NaNrem;
3946
3942
  }
3947
3943
 
3948
3944
  .c-text-title-sm {
3949
3945
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3950
- font-size: 0.9375rem;
3951
- line-height: 1.25rem;
3946
+ font-size: 1rem;
3947
+ line-height: 125%;
3952
3948
  font-weight: 600;
3949
+ letter-spacing: -0.02rem;
3953
3950
  }
3954
3951
 
3955
3952
  .c-text-title-xs {
3956
3953
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3957
- font-size: 0.9375rem;
3958
- line-height: 1.25rem;
3954
+ font-size: 1rem;
3955
+ line-height: 125%;
3959
3956
  font-weight: 600;
3957
+ letter-spacing: -0.02rem;
3960
3958
  }
3961
3959
 
3962
3960
  .c-text-body-lg {
@@ -3967,7 +3965,7 @@
3967
3965
 
3968
3966
  .c-text-body-md {
3969
3967
  font-family: BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3970
- font-size: 0.9375rem;
3968
+ font-size: 1rem;
3971
3969
  line-height: 1.5rem;
3972
3970
  }
3973
3971
 
@@ -3977,35 +3975,43 @@
3977
3975
  line-height: 1rem;
3978
3976
  }
3979
3977
 
3978
+ .c-text-section-heading {
3979
+ font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
3980
+ font-size: 0.875rem;
3981
+ line-height: 175%;
3982
+ font-weight: 700;
3983
+ text-transform: uppercase;
3984
+ color: var(--c-text-subdued);
3985
+ letter-spacing: -0.2px;
3986
+ }
3987
+
3980
3988
  @media (min-width: 768px) {
3981
3989
  .c-text-heading {
3982
3990
  font-size: 3.5rem;
3983
- line-height: 3.75rem;
3984
3991
  }
3985
3992
 
3986
3993
  .c-text-subheading {
3987
3994
  font-size: 1.75rem;
3988
- line-height: 2rem;
3989
3995
  }
3990
3996
 
3991
3997
  .c-text-title-xl {
3992
3998
  font-size: 2.5rem;
3993
- line-height: 2.75rem;
3999
+ letter-spacing: -0.05rem;
3994
4000
  }
3995
4001
 
3996
4002
  .c-text-title-lg {
3997
4003
  font-size: 2rem;
3998
- line-height: 2.25rem;
4004
+ letter-spacing: -0.04rem;
3999
4005
  }
4000
4006
 
4001
4007
  .c-text-title-md {
4002
4008
  font-size: 1.5rem;
4003
- line-height: 1.75rem;
4009
+ letter-spacing: -0.03rem;
4004
4010
  }
4005
4011
 
4006
4012
  .c-text-title-sm {
4007
- font-size: 1.125rem;
4008
- line-height: 1.5rem;
4013
+ font-size: 1.25rem;
4014
+ letter-spacing: -0.025rem;
4009
4015
  }
4010
4016
  }
4011
4017
 
@@ -4142,375 +4148,375 @@
4142
4148
  }
4143
4149
 
4144
4150
  .c-border-base {
4145
- border-color: var(--c-l-grey);
4151
+ border-color: var(--c-stroke-base);
4146
4152
  }
4147
4153
 
4148
4154
  .c-border-baseInteractive {
4149
- border-color: var(--c-l-grey);
4155
+ border-color: var(--c-stroke-baseInteractive);
4150
4156
  }
4151
4157
 
4152
4158
  .c-border-baseInteractive:hover {
4153
- border-color: var(--c-l-graphite-light);
4159
+ border-color: var(--c-stroke-baseInteractive--hover);
4154
4160
  }
4155
4161
 
4156
4162
  .c-border-baseInteractive:focus {
4157
- border-color: var(--c-l-graphite-light);
4163
+ border-color: var(--c-stroke-baseInteractive--hover);
4158
4164
  }
4159
4165
 
4160
4166
  .c-border-baseInteractive:active {
4161
- border-color: var(--c-l-graphite);
4167
+ border-color: var(--c-stroke-baseInteractive--press);
4162
4168
  }
4163
4169
 
4164
4170
  .c-border-strong {
4165
- border-color: var(--c-l-grey-dark);
4171
+ border-color: var(--c-stroke-strong);
4166
4172
  }
4167
4173
 
4168
4174
  .c-border-strongInteractive {
4169
- border-color: var(--c-l-grey-dark);
4175
+ border-color: var(--c-stroke-strongInteractive);
4170
4176
  }
4171
4177
 
4172
4178
  .c-border-strongInteractive:hover {
4173
- border-color: var(--c-l-graphite-light);
4179
+ border-color: var(--c-stroke-strongInteractive--hover);
4174
4180
  }
4175
4181
 
4176
4182
  .c-border-strongInteractive:focus {
4177
- border-color: var(--c-l-graphite-light);
4183
+ border-color: var(--c-stroke-strongInteractive--hover);
4178
4184
  }
4179
4185
 
4180
4186
  .c-border-strongInteractive:active {
4181
- border-color: var(--c-l-graphite);
4187
+ border-color: var(--c-stroke-strongInteractive--press);
4182
4188
  }
4183
4189
 
4184
4190
  .c-border-subdued {
4185
- border-color: var(--c-l-grey-light);
4191
+ border-color: var(--c-stroke-subdued);
4186
4192
  }
4187
4193
 
4188
4194
  .c-border-accent {
4189
- border-color: var(--c-l-indigo);
4195
+ border-color: var(--c-stroke-accent);
4190
4196
  }
4191
4197
 
4192
4198
  .c-border-accentInteractive {
4193
- border-color: var(--c-l-indigo);
4199
+ border-color: var(--c-stroke-accentInteractive);
4194
4200
  }
4195
4201
 
4196
4202
  .c-border-accentInteractive:hover {
4197
- border-color: var(--c-l-indigo);
4203
+ border-color: var(--c-stroke-accentInteractive--hover);
4198
4204
  }
4199
4205
 
4200
4206
  .c-border-accentInteractive:focus {
4201
- border-color: var(--c-l-indigo);
4207
+ border-color: var(--c-stroke-accentInteractive--hover);
4202
4208
  }
4203
4209
 
4204
4210
  .c-border-accentInteractive:active {
4205
- border-color: var(--c-l-indigo-dark);
4211
+ border-color: var(--c-stroke-accentInteractive--press);
4206
4212
  }
4207
4213
 
4208
4214
  .c-border-accentAlt {
4209
- border-color: var(--c-l-purple);
4215
+ border-color: var(--c-stroke-accentAlt);
4210
4216
  }
4211
4217
 
4212
4218
  .c-border-error {
4213
- border-color: var(--c-l-red);
4219
+ border-color: var(--c-stroke-error);
4214
4220
  }
4215
4221
 
4216
4222
  .c-border-errorAlt {
4217
- border-color: var(--c-l-red);
4223
+ border-color: var(--c-stroke-errorAlt);
4218
4224
  }
4219
4225
 
4220
4226
  .c-border-success {
4221
- border-color: var(--c-l-green);
4227
+ border-color: var(--c-stroke-success);
4222
4228
  }
4223
4229
 
4224
4230
  .c-border-successAlt {
4225
- border-color: var(--c-l-green);
4231
+ border-color: var(--c-stroke-successAlt);
4226
4232
  }
4227
4233
 
4228
4234
  .c-bg-primary {
4229
- background-color: var(--c-l-grey-lighter);
4235
+ background-color: var(--c-background-primary);
4230
4236
  }
4231
4237
 
4232
4238
  .c-bg-secondary {
4233
- background-color: var(--c-l-white);
4239
+ background-color: var(--c-background-secondary);
4234
4240
  }
4235
4241
 
4236
4242
  .c-bg-secondaryInteractive {
4237
- background-color: var(--c-l-white);
4243
+ background-color: var(--c-background-secondaryInteractive);
4238
4244
  }
4239
4245
 
4240
4246
  .c-bg-secondaryInteractive:hover {
4241
- background-color: var(--c-l-grey-lighter);
4247
+ background-color: var(--c-background-secondaryInteractive--hover);
4242
4248
  }
4243
4249
 
4244
4250
  .c-bg-secondaryInteractive:focus {
4245
- background-color: var(--c-l-grey-lighter);
4251
+ background-color: var(--c-background-secondaryInteractive--hover);
4246
4252
  }
4247
4253
 
4248
4254
  .c-bg-accent {
4249
- background-color: var(--c-l-purple);
4255
+ background-color: var(--c-background-accent);
4250
4256
  }
4251
4257
 
4252
4258
  .c-bg-accentInteractive {
4253
- background-color: var(--c-l-purple);
4259
+ background-color: var(--c-background-accentInteractive);
4254
4260
  }
4255
4261
 
4256
4262
  .c-bg-accentInteractive:hover {
4257
- background-color: var(--c-l-purple);
4263
+ background-color: var(--c-background-accentInteractive--hover);
4258
4264
  }
4259
4265
 
4260
4266
  .c-bg-accentInteractive:focus {
4261
- background-color: var(--c-l-purple);
4267
+ background-color: var(--c-background-accentInteractive--hover);
4262
4268
  }
4263
4269
 
4264
4270
  .c-bg-accentAlt {
4265
- background-color: var(--c-l-indigo);
4271
+ background-color: var(--c-background-accentAlt);
4266
4272
  }
4267
4273
 
4268
4274
  .c-bg-accentAltInteractive {
4269
- background-color: var(--c-l-indigo);
4275
+ background-color: var(--c-background-accentAltInteractive);
4270
4276
  }
4271
4277
 
4272
4278
  .c-bg-accentAltInteractive:hover {
4273
- background-color: var(--c-l-indigo);
4279
+ background-color: var(--c-background-accentAltInteractive--hover);
4274
4280
  }
4275
4281
 
4276
4282
  .c-bg-accentAltInteractive:focus {
4277
- background-color: var(--c-l-indigo);
4283
+ background-color: var(--c-background-accentAltInteractive--hover);
4278
4284
  }
4279
4285
 
4280
4286
  .c-bg-info {
4281
- background-color: var(--c-l-grey-lighter);
4287
+ background-color: var(--c-background-info);
4282
4288
  }
4283
4289
 
4284
4290
  .c-bg-error {
4285
- background-color: var(--c-l-red);
4291
+ background-color: var(--c-background-error);
4286
4292
  }
4287
4293
 
4288
4294
  .c-bg-errorInteractive {
4289
- background-color: var(--c-l-red);
4295
+ background-color: var(--c-background-errorInteractive);
4290
4296
  }
4291
4297
 
4292
4298
  .c-bg-errorInteractive:hover {
4293
- background-color: var(--c-l-red);
4299
+ background-color: var(--c-background-errorInteractive--hover);
4294
4300
  }
4295
4301
 
4296
4302
  .c-bg-errorInteractive:focus {
4297
- background-color: var(--c-l-red);
4303
+ background-color: var(--c-background-errorInteractive--hover);
4298
4304
  }
4299
4305
 
4300
4306
  .c-bg-errorAlt {
4301
- background-color: var(--c-l-graphite);
4307
+ background-color: var(--c-background-errorAlt);
4302
4308
  }
4303
4309
 
4304
4310
  .c-bg-success {
4305
- background-color: var(--c-l-green);
4311
+ background-color: var(--c-background-success);
4306
4312
  }
4307
4313
 
4308
4314
  .c-bg-successAlt {
4309
- background-color: var(--c-l-graphite);
4315
+ background-color: var(--c-background-successAlt);
4310
4316
  }
4311
4317
 
4312
4318
  .c-bg-connect {
4313
- background-color: var(--c-l-turquoise);
4319
+ background-color: var(--c-background-connect);
4314
4320
  }
4315
4321
 
4316
4322
  .c-bg-connectInteractive {
4317
- background-color: var(--c-l-turquoise);
4323
+ background-color: var(--c-background-connectInteractive);
4318
4324
  }
4319
4325
 
4320
4326
  .c-bg-connectInteractive:hover {
4321
- background-color: var(--c-l-turquoise);
4327
+ background-color: var(--c-background-connectInteractive--hover);
4322
4328
  }
4323
4329
 
4324
4330
  .c-bg-connectInteractive:focus {
4325
- background-color: var(--c-l-turquoise);
4331
+ background-color: var(--c-background-connectInteractive--hover);
4326
4332
  }
4327
4333
 
4328
4334
  .c-bg-connectAlt {
4329
- background-color: var(--c-l-grey-light);
4335
+ background-color: var(--c-background-connectAlt);
4330
4336
  }
4331
4337
 
4332
4338
  .c-bg-driver {
4333
- background-color: var(--c-l-deprecatedDriver);
4339
+ background-color: var(--c-background-driver);
4334
4340
  }
4335
4341
 
4336
4342
  .c-bg-owner {
4337
- background-color: var(--c-l-indigo-dark);
4343
+ background-color: var(--c-background-owner);
4338
4344
  }
4339
4345
 
4340
4346
  .c-bg-disabled {
4341
- background-color: var(--c-l-grey-light);
4347
+ background-color: var(--c-background-disabled);
4342
4348
  }
4343
4349
 
4344
4350
  .c-bg-neutral {
4345
- background-color: var(--c-l-grey-light);
4351
+ background-color: var(--c-background-neutral);
4346
4352
  }
4347
4353
 
4348
4354
  .c-bg-neutralAlt {
4349
- background-color: var(--c-l-grey-lighter);
4355
+ background-color: var(--c-background-neutralAlt);
4350
4356
  }
4351
4357
 
4352
4358
  .c-bg-seasonLow {
4353
- background-color: var(--c-l-deprecatedSeasonLow);
4359
+ background-color: var(--c-background-seasonLow);
4354
4360
  }
4355
4361
 
4356
4362
  .c-bg-seasonMedium {
4357
- background-color: var(--c-l-deprecatedSeasonMedium);
4363
+ background-color: var(--c-background-seasonMedium);
4358
4364
  }
4359
4365
 
4360
4366
  .c-bg-seasonHigh {
4361
- background-color: var(--c-l-deprecatedSeasonHigh);
4367
+ background-color: var(--c-background-seasonHigh);
4362
4368
  }
4363
4369
 
4364
4370
  .c-bg-seasonVeryHigh {
4365
- background-color: var(--c-l-deprecatedSeasonVeryHigh);
4371
+ background-color: var(--c-background-seasonVeryHigh);
4366
4372
  }
4367
4373
 
4368
4374
  .c-bg-fill-base {
4369
- background-color: var(--c-l-graphite);
4375
+ background-color: var(--c-fill-base);
4370
4376
  }
4371
4377
 
4372
4378
  .c-bg-fill-secondary {
4373
- background-color: var(--c-l-turquoise);
4379
+ background-color: var(--c-fill-secondary);
4374
4380
  }
4375
4381
 
4376
4382
  .c-bg-fill-subdued {
4377
- background-color: var(--c-l-grey-light);
4383
+ background-color: var(--c-fill-subdued);
4378
4384
  }
4379
4385
 
4380
4386
  .c-bg-fill-accent {
4381
- background-color: var(--c-l-purple);
4387
+ background-color: var(--c-fill-accent);
4382
4388
  }
4383
4389
 
4384
4390
  .c-bg-fill-accentAlt {
4385
- background-color: var(--c-l-purple);
4391
+ background-color: var(--c-fill-accentAlt);
4386
4392
  }
4387
4393
 
4388
4394
  .c-bg-fill-error {
4389
- background-color: var(--c-l-red);
4395
+ background-color: var(--c-fill-error);
4390
4396
  }
4391
4397
 
4392
4398
  .c-bg-fill-negative {
4393
- background-color: var(--c-l-red);
4399
+ background-color: var(--c-fill-negative);
4394
4400
  }
4395
4401
 
4396
4402
  .c-bg-fill-success {
4397
- background-color: var(--c-l-green);
4403
+ background-color: var(--c-fill-success);
4398
4404
  }
4399
4405
 
4400
4406
  .c-bg-fill-disabled {
4401
- background-color: var(--c-l-grey-dark);
4407
+ background-color: var(--c-fill-disabled);
4402
4408
  }
4403
4409
 
4404
4410
  .c-bg-fill-neutral {
4405
- background-color: var(--c-l-grey-lighter);
4411
+ background-color: var(--c-fill-neutral);
4406
4412
  }
4407
4413
 
4408
4414
  .c-text-base {
4409
- color: var(--c-l-graphite);
4415
+ color: var(--c-text-base);
4410
4416
  }
4411
4417
 
4412
4418
  .c-text-baseInteractive {
4413
- color: var(--c-l-graphite);
4419
+ color: var(--c-text-baseInteractive);
4414
4420
  }
4415
4421
 
4416
4422
  .c-text-baseInteractive:hover {
4417
- color: var(--c-l-graphite);
4423
+ color: var(--c-text-baseInteractive--hover);
4418
4424
  }
4419
4425
 
4420
4426
  .c-text-baseInteractive:focus {
4421
- color: var(--c-l-graphite);
4427
+ color: var(--c-text-baseInteractive--hover);
4422
4428
  }
4423
4429
 
4424
4430
  .c-text-subdued {
4425
- color: var(--c-l-graphite-light);
4431
+ color: var(--c-text-subdued);
4426
4432
  }
4427
4433
 
4428
4434
  .c-text-subduedInteractive {
4429
- color: var(--c-l-graphite-light);
4435
+ color: var(--c-text-subduedInteractive);
4430
4436
  }
4431
4437
 
4432
4438
  .c-text-subduedInteractive:hover {
4433
- color: var(--c-l-graphite);
4439
+ color: var(--c-text-subduedInteractive--hover);
4434
4440
  }
4435
4441
 
4436
4442
  .c-text-subduedInteractive:focus {
4437
- color: var(--c-l-graphite);
4443
+ color: var(--c-text-subduedInteractive--hover);
4438
4444
  }
4439
4445
 
4440
4446
  .c-text-accent {
4441
- color: var(--c-l-purple);
4447
+ color: var(--c-text-accent);
4442
4448
  }
4443
4449
 
4444
4450
  .c-text-accentInteractive {
4445
- color: var(--c-l-blue);
4451
+ color: var(--c-text-accentInteractive);
4446
4452
  }
4447
4453
 
4448
4454
  .c-text-accentInteractive:hover {
4449
- color: var(--c-l-blue);
4455
+ color: var(--c-text-accentInteractive--hover);
4450
4456
  }
4451
4457
 
4452
4458
  .c-text-accentInteractive:focus {
4453
- color: var(--c-l-blue);
4459
+ color: var(--c-text-accentInteractive--hover);
4454
4460
  }
4455
4461
 
4456
4462
  .c-text-accentAlt {
4457
- color: var(--c-l-white);
4463
+ color: var(--c-text-accentAlt);
4458
4464
  }
4459
4465
 
4460
4466
  .c-text-accentAltInteractive {
4461
- color: var(--c-l-white);
4467
+ color: var(--c-text-accentAltInteractive);
4462
4468
  }
4463
4469
 
4464
4470
  .c-text-accentAltInteractive:hover {
4465
- color: var(--c-l-white);
4471
+ color: var(--c-text-accentAltInteractive--hover);
4466
4472
  }
4467
4473
 
4468
4474
  .c-text-accentAltInteractive:focus {
4469
- color: var(--c-l-white);
4475
+ color: var(--c-text-accentAltInteractive--hover);
4470
4476
  }
4471
4477
 
4472
4478
  .c-text-info {
4473
- color: var(--c-l-graphite-light);
4479
+ color: var(--c-text-info);
4474
4480
  }
4475
4481
 
4476
4482
  .c-text-infoAlt {
4477
- color: var(--c-l-turquoise);
4483
+ color: var(--c-text-infoAlt);
4478
4484
  }
4479
4485
 
4480
4486
  .c-text-error {
4481
- color: var(--c-l-red);
4487
+ color: var(--c-text-error);
4482
4488
  }
4483
4489
 
4484
4490
  .c-text-errorAlt {
4485
- color: var(--c-l-white);
4491
+ color: var(--c-text-errorAlt);
4486
4492
  }
4487
4493
 
4488
4494
  .c-text-success {
4489
- color: var(--c-l-green);
4495
+ color: var(--c-text-success);
4490
4496
  }
4491
4497
 
4492
4498
  .c-text-successAlt {
4493
- color: var(--c-l-white);
4499
+ color: var(--c-text-successAlt);
4494
4500
  }
4495
4501
 
4496
4502
  .c-text-warning {
4497
- color: var(--c-l-coral);
4503
+ color: var(--c-text-warning);
4498
4504
  }
4499
4505
 
4500
4506
  .c-text-connect {
4501
- color: var(--c-l-turquoise);
4507
+ color: var(--c-text-connect);
4502
4508
  }
4503
4509
 
4504
4510
  .c-text-driver {
4505
- color: var(--c-l-graphite);
4511
+ color: var(--c-text-driver);
4506
4512
  }
4507
4513
 
4508
4514
  .c-text-owner {
4509
- color: var(--c-l-white);
4515
+ color: var(--c-text-owner);
4510
4516
  }
4511
4517
 
4512
4518
  .c-text-inversed {
4513
- color: var(--c-l-white);
4519
+ color: var(--c-text-inversed);
4514
4520
  }
4515
4521
 
4516
4522
  @media (min-width: 480px) {
@@ -6464,59 +6470,57 @@
6464
6470
  .xs\:c-text-heading {
6465
6471
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6466
6472
  font-size: 2.25rem;
6467
- line-height: 2.5rem;
6473
+ line-height: 125%;
6468
6474
  font-weight: 700;
6475
+ letter-spacing: -0.5px;
6469
6476
  }
6470
6477
 
6471
6478
  .xs\:c-text-subheading {
6472
6479
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6473
6480
  font-size: 1.25rem;
6474
- line-height: 1.5rem;
6481
+ line-height: 125%;
6475
6482
  font-weight: 700;
6476
- }
6477
-
6478
- .xs\:c-text-section-heading {
6479
- font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6480
- font-size: 0.875rem;
6481
- line-height: 1.5rem;
6482
- font-weight: 700;
6483
- text-transform: uppercase;
6484
- color: var(--c-l-graphite-light);
6483
+ letter-spacing: -0.5px;
6485
6484
  }
6486
6485
 
6487
6486
  .xs\:c-text-title-xl {
6488
6487
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6489
6488
  font-size: 2rem;
6490
- line-height: 2.25rem;
6489
+ line-height: 125%;
6491
6490
  font-weight: 700;
6491
+ letter-spacing: -0.04rem;
6492
6492
  }
6493
6493
 
6494
6494
  .xs\:c-text-title-lg {
6495
6495
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6496
6496
  font-size: 1.5rem;
6497
- line-height: 1.75rem;
6497
+ line-height: 125%;
6498
6498
  font-weight: 700;
6499
+ letter-spacing: -0.03rem;
6499
6500
  }
6500
6501
 
6501
6502
  .xs\:c-text-title-md {
6502
6503
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6503
- font-size: 1.125rem;
6504
- line-height: 1.25rem;
6504
+ font-size: 1.25rem;
6505
+ line-height: 125%;
6505
6506
  font-weight: 700;
6507
+ letter-spacing: NaNrem;
6506
6508
  }
6507
6509
 
6508
6510
  .xs\:c-text-title-sm {
6509
6511
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6510
- font-size: 0.9375rem;
6511
- line-height: 1.25rem;
6512
+ font-size: 1rem;
6513
+ line-height: 125%;
6512
6514
  font-weight: 600;
6515
+ letter-spacing: -0.02rem;
6513
6516
  }
6514
6517
 
6515
6518
  .xs\:c-text-title-xs {
6516
6519
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6517
- font-size: 0.9375rem;
6518
- line-height: 1.25rem;
6520
+ font-size: 1rem;
6521
+ line-height: 125%;
6519
6522
  font-weight: 600;
6523
+ letter-spacing: -0.02rem;
6520
6524
  }
6521
6525
 
6522
6526
  .xs\:c-text-body-lg {
@@ -6527,7 +6531,7 @@
6527
6531
 
6528
6532
  .xs\:c-text-body-md {
6529
6533
  font-family: BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6530
- font-size: 0.9375rem;
6534
+ font-size: 1rem;
6531
6535
  line-height: 1.5rem;
6532
6536
  }
6533
6537
 
@@ -6537,35 +6541,43 @@
6537
6541
  line-height: 1rem;
6538
6542
  }
6539
6543
 
6544
+ .xs\:c-text-section-heading {
6545
+ font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
6546
+ font-size: 0.875rem;
6547
+ line-height: 175%;
6548
+ font-weight: 700;
6549
+ text-transform: uppercase;
6550
+ color: var(--c-text-subdued);
6551
+ letter-spacing: -0.2px;
6552
+ }
6553
+
6540
6554
  @media (min-width: 768px) {
6541
6555
  .xs\:c-text-heading {
6542
6556
  font-size: 3.5rem;
6543
- line-height: 3.75rem;
6544
6557
  }
6545
6558
 
6546
6559
  .xs\:c-text-subheading {
6547
6560
  font-size: 1.75rem;
6548
- line-height: 2rem;
6549
6561
  }
6550
6562
 
6551
6563
  .xs\:c-text-title-xl {
6552
6564
  font-size: 2.5rem;
6553
- line-height: 2.75rem;
6565
+ letter-spacing: -0.05rem;
6554
6566
  }
6555
6567
 
6556
6568
  .xs\:c-text-title-lg {
6557
6569
  font-size: 2rem;
6558
- line-height: 2.25rem;
6570
+ letter-spacing: -0.04rem;
6559
6571
  }
6560
6572
 
6561
6573
  .xs\:c-text-title-md {
6562
6574
  font-size: 1.5rem;
6563
- line-height: 1.75rem;
6575
+ letter-spacing: -0.03rem;
6564
6576
  }
6565
6577
 
6566
6578
  .xs\:c-text-title-sm {
6567
- font-size: 1.125rem;
6568
- line-height: 1.5rem;
6579
+ font-size: 1.25rem;
6580
+ letter-spacing: -0.025rem;
6569
6581
  }
6570
6582
  }
6571
6583
  }
@@ -8521,59 +8533,57 @@
8521
8533
  .sm\:c-text-heading {
8522
8534
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8523
8535
  font-size: 2.25rem;
8524
- line-height: 2.5rem;
8536
+ line-height: 125%;
8525
8537
  font-weight: 700;
8538
+ letter-spacing: -0.5px;
8526
8539
  }
8527
8540
 
8528
8541
  .sm\:c-text-subheading {
8529
8542
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8530
8543
  font-size: 1.25rem;
8531
- line-height: 1.5rem;
8544
+ line-height: 125%;
8532
8545
  font-weight: 700;
8533
- }
8534
-
8535
- .sm\:c-text-section-heading {
8536
- font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8537
- font-size: 0.875rem;
8538
- line-height: 1.5rem;
8539
- font-weight: 700;
8540
- text-transform: uppercase;
8541
- color: var(--c-l-graphite-light);
8546
+ letter-spacing: -0.5px;
8542
8547
  }
8543
8548
 
8544
8549
  .sm\:c-text-title-xl {
8545
8550
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8546
8551
  font-size: 2rem;
8547
- line-height: 2.25rem;
8552
+ line-height: 125%;
8548
8553
  font-weight: 700;
8554
+ letter-spacing: -0.04rem;
8549
8555
  }
8550
8556
 
8551
8557
  .sm\:c-text-title-lg {
8552
8558
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8553
8559
  font-size: 1.5rem;
8554
- line-height: 1.75rem;
8560
+ line-height: 125%;
8555
8561
  font-weight: 700;
8562
+ letter-spacing: -0.03rem;
8556
8563
  }
8557
8564
 
8558
8565
  .sm\:c-text-title-md {
8559
8566
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8560
- font-size: 1.125rem;
8561
- line-height: 1.25rem;
8567
+ font-size: 1.25rem;
8568
+ line-height: 125%;
8562
8569
  font-weight: 700;
8570
+ letter-spacing: NaNrem;
8563
8571
  }
8564
8572
 
8565
8573
  .sm\:c-text-title-sm {
8566
8574
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8567
- font-size: 0.9375rem;
8568
- line-height: 1.25rem;
8575
+ font-size: 1rem;
8576
+ line-height: 125%;
8569
8577
  font-weight: 600;
8578
+ letter-spacing: -0.02rem;
8570
8579
  }
8571
8580
 
8572
8581
  .sm\:c-text-title-xs {
8573
8582
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8574
- font-size: 0.9375rem;
8575
- line-height: 1.25rem;
8583
+ font-size: 1rem;
8584
+ line-height: 125%;
8576
8585
  font-weight: 600;
8586
+ letter-spacing: -0.02rem;
8577
8587
  }
8578
8588
 
8579
8589
  .sm\:c-text-body-lg {
@@ -8584,7 +8594,7 @@
8584
8594
 
8585
8595
  .sm\:c-text-body-md {
8586
8596
  font-family: BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8587
- font-size: 0.9375rem;
8597
+ font-size: 1rem;
8588
8598
  line-height: 1.5rem;
8589
8599
  }
8590
8600
 
@@ -8594,35 +8604,43 @@
8594
8604
  line-height: 1rem;
8595
8605
  }
8596
8606
 
8607
+ .sm\:c-text-section-heading {
8608
+ font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
8609
+ font-size: 0.875rem;
8610
+ line-height: 175%;
8611
+ font-weight: 700;
8612
+ text-transform: uppercase;
8613
+ color: var(--c-text-subdued);
8614
+ letter-spacing: -0.2px;
8615
+ }
8616
+
8597
8617
  @media (min-width: 768px) {
8598
8618
  .sm\:c-text-heading {
8599
8619
  font-size: 3.5rem;
8600
- line-height: 3.75rem;
8601
8620
  }
8602
8621
 
8603
8622
  .sm\:c-text-subheading {
8604
8623
  font-size: 1.75rem;
8605
- line-height: 2rem;
8606
8624
  }
8607
8625
 
8608
8626
  .sm\:c-text-title-xl {
8609
8627
  font-size: 2.5rem;
8610
- line-height: 2.75rem;
8628
+ letter-spacing: -0.05rem;
8611
8629
  }
8612
8630
 
8613
8631
  .sm\:c-text-title-lg {
8614
8632
  font-size: 2rem;
8615
- line-height: 2.25rem;
8633
+ letter-spacing: -0.04rem;
8616
8634
  }
8617
8635
 
8618
8636
  .sm\:c-text-title-md {
8619
8637
  font-size: 1.5rem;
8620
- line-height: 1.75rem;
8638
+ letter-spacing: -0.03rem;
8621
8639
  }
8622
8640
 
8623
8641
  .sm\:c-text-title-sm {
8624
- font-size: 1.125rem;
8625
- line-height: 1.5rem;
8642
+ font-size: 1.25rem;
8643
+ letter-spacing: -0.025rem;
8626
8644
  }
8627
8645
  }
8628
8646
  }
@@ -10578,59 +10596,57 @@
10578
10596
  .md\:c-text-heading {
10579
10597
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10580
10598
  font-size: 2.25rem;
10581
- line-height: 2.5rem;
10599
+ line-height: 125%;
10582
10600
  font-weight: 700;
10601
+ letter-spacing: -0.5px;
10583
10602
  }
10584
10603
 
10585
10604
  .md\:c-text-subheading {
10586
10605
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10587
10606
  font-size: 1.25rem;
10588
- line-height: 1.5rem;
10607
+ line-height: 125%;
10589
10608
  font-weight: 700;
10590
- }
10591
-
10592
- .md\:c-text-section-heading {
10593
- font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10594
- font-size: 0.875rem;
10595
- line-height: 1.5rem;
10596
- font-weight: 700;
10597
- text-transform: uppercase;
10598
- color: var(--c-l-graphite-light);
10609
+ letter-spacing: -0.5px;
10599
10610
  }
10600
10611
 
10601
10612
  .md\:c-text-title-xl {
10602
10613
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10603
10614
  font-size: 2rem;
10604
- line-height: 2.25rem;
10615
+ line-height: 125%;
10605
10616
  font-weight: 700;
10617
+ letter-spacing: -0.04rem;
10606
10618
  }
10607
10619
 
10608
10620
  .md\:c-text-title-lg {
10609
10621
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10610
10622
  font-size: 1.5rem;
10611
- line-height: 1.75rem;
10623
+ line-height: 125%;
10612
10624
  font-weight: 700;
10625
+ letter-spacing: -0.03rem;
10613
10626
  }
10614
10627
 
10615
10628
  .md\:c-text-title-md {
10616
10629
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10617
- font-size: 1.125rem;
10618
- line-height: 1.25rem;
10630
+ font-size: 1.25rem;
10631
+ line-height: 125%;
10619
10632
  font-weight: 700;
10633
+ letter-spacing: NaNrem;
10620
10634
  }
10621
10635
 
10622
10636
  .md\:c-text-title-sm {
10623
10637
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10624
- font-size: 0.9375rem;
10625
- line-height: 1.25rem;
10638
+ font-size: 1rem;
10639
+ line-height: 125%;
10626
10640
  font-weight: 600;
10641
+ letter-spacing: -0.02rem;
10627
10642
  }
10628
10643
 
10629
10644
  .md\:c-text-title-xs {
10630
10645
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10631
- font-size: 0.9375rem;
10632
- line-height: 1.25rem;
10646
+ font-size: 1rem;
10647
+ line-height: 125%;
10633
10648
  font-weight: 600;
10649
+ letter-spacing: -0.02rem;
10634
10650
  }
10635
10651
 
10636
10652
  .md\:c-text-body-lg {
@@ -10641,7 +10657,7 @@
10641
10657
 
10642
10658
  .md\:c-text-body-md {
10643
10659
  font-family: BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10644
- font-size: 0.9375rem;
10660
+ font-size: 1rem;
10645
10661
  line-height: 1.5rem;
10646
10662
  }
10647
10663
 
@@ -10651,35 +10667,43 @@
10651
10667
  line-height: 1rem;
10652
10668
  }
10653
10669
 
10670
+ .md\:c-text-section-heading {
10671
+ font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
10672
+ font-size: 0.875rem;
10673
+ line-height: 175%;
10674
+ font-weight: 700;
10675
+ text-transform: uppercase;
10676
+ color: var(--c-text-subdued);
10677
+ letter-spacing: -0.2px;
10678
+ }
10679
+
10654
10680
  @media (min-width: 768px) {
10655
10681
  .md\:c-text-heading {
10656
10682
  font-size: 3.5rem;
10657
- line-height: 3.75rem;
10658
10683
  }
10659
10684
 
10660
10685
  .md\:c-text-subheading {
10661
10686
  font-size: 1.75rem;
10662
- line-height: 2rem;
10663
10687
  }
10664
10688
 
10665
10689
  .md\:c-text-title-xl {
10666
10690
  font-size: 2.5rem;
10667
- line-height: 2.75rem;
10691
+ letter-spacing: -0.05rem;
10668
10692
  }
10669
10693
 
10670
10694
  .md\:c-text-title-lg {
10671
10695
  font-size: 2rem;
10672
- line-height: 2.25rem;
10696
+ letter-spacing: -0.04rem;
10673
10697
  }
10674
10698
 
10675
10699
  .md\:c-text-title-md {
10676
10700
  font-size: 1.5rem;
10677
- line-height: 1.75rem;
10701
+ letter-spacing: -0.03rem;
10678
10702
  }
10679
10703
 
10680
10704
  .md\:c-text-title-sm {
10681
- font-size: 1.125rem;
10682
- line-height: 1.5rem;
10705
+ font-size: 1.25rem;
10706
+ letter-spacing: -0.025rem;
10683
10707
  }
10684
10708
  }
10685
10709
  }
@@ -12635,59 +12659,57 @@
12635
12659
  .lg\:c-text-heading {
12636
12660
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12637
12661
  font-size: 2.25rem;
12638
- line-height: 2.5rem;
12662
+ line-height: 125%;
12639
12663
  font-weight: 700;
12664
+ letter-spacing: -0.5px;
12640
12665
  }
12641
12666
 
12642
12667
  .lg\:c-text-subheading {
12643
12668
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12644
12669
  font-size: 1.25rem;
12645
- line-height: 1.5rem;
12670
+ line-height: 125%;
12646
12671
  font-weight: 700;
12647
- }
12648
-
12649
- .lg\:c-text-section-heading {
12650
- font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12651
- font-size: 0.875rem;
12652
- line-height: 1.5rem;
12653
- font-weight: 700;
12654
- text-transform: uppercase;
12655
- color: var(--c-l-graphite-light);
12672
+ letter-spacing: -0.5px;
12656
12673
  }
12657
12674
 
12658
12675
  .lg\:c-text-title-xl {
12659
12676
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12660
12677
  font-size: 2rem;
12661
- line-height: 2.25rem;
12678
+ line-height: 125%;
12662
12679
  font-weight: 700;
12680
+ letter-spacing: -0.04rem;
12663
12681
  }
12664
12682
 
12665
12683
  .lg\:c-text-title-lg {
12666
12684
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12667
12685
  font-size: 1.5rem;
12668
- line-height: 1.75rem;
12686
+ line-height: 125%;
12669
12687
  font-weight: 700;
12688
+ letter-spacing: -0.03rem;
12670
12689
  }
12671
12690
 
12672
12691
  .lg\:c-text-title-md {
12673
12692
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12674
- font-size: 1.125rem;
12675
- line-height: 1.25rem;
12693
+ font-size: 1.25rem;
12694
+ line-height: 125%;
12676
12695
  font-weight: 700;
12696
+ letter-spacing: NaNrem;
12677
12697
  }
12678
12698
 
12679
12699
  .lg\:c-text-title-sm {
12680
12700
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12681
- font-size: 0.9375rem;
12682
- line-height: 1.25rem;
12701
+ font-size: 1rem;
12702
+ line-height: 125%;
12683
12703
  font-weight: 600;
12704
+ letter-spacing: -0.02rem;
12684
12705
  }
12685
12706
 
12686
12707
  .lg\:c-text-title-xs {
12687
12708
  font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12688
- font-size: 0.9375rem;
12689
- line-height: 1.25rem;
12709
+ font-size: 1rem;
12710
+ line-height: 125%;
12690
12711
  font-weight: 600;
12712
+ letter-spacing: -0.02rem;
12691
12713
  }
12692
12714
 
12693
12715
  .lg\:c-text-body-lg {
@@ -12698,7 +12720,7 @@
12698
12720
 
12699
12721
  .lg\:c-text-body-md {
12700
12722
  font-family: BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12701
- font-size: 0.9375rem;
12723
+ font-size: 1rem;
12702
12724
  line-height: 1.5rem;
12703
12725
  }
12704
12726
 
@@ -12708,35 +12730,43 @@
12708
12730
  line-height: 1rem;
12709
12731
  }
12710
12732
 
12733
+ .lg\:c-text-section-heading {
12734
+ font-family: BrownPro,BlinkMacSystemFont,-apple-system,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
12735
+ font-size: 0.875rem;
12736
+ line-height: 175%;
12737
+ font-weight: 700;
12738
+ text-transform: uppercase;
12739
+ color: var(--c-text-subdued);
12740
+ letter-spacing: -0.2px;
12741
+ }
12742
+
12711
12743
  @media (min-width: 768px) {
12712
12744
  .lg\:c-text-heading {
12713
12745
  font-size: 3.5rem;
12714
- line-height: 3.75rem;
12715
12746
  }
12716
12747
 
12717
12748
  .lg\:c-text-subheading {
12718
12749
  font-size: 1.75rem;
12719
- line-height: 2rem;
12720
12750
  }
12721
12751
 
12722
12752
  .lg\:c-text-title-xl {
12723
12753
  font-size: 2.5rem;
12724
- line-height: 2.75rem;
12754
+ letter-spacing: -0.05rem;
12725
12755
  }
12726
12756
 
12727
12757
  .lg\:c-text-title-lg {
12728
12758
  font-size: 2rem;
12729
- line-height: 2.25rem;
12759
+ letter-spacing: -0.04rem;
12730
12760
  }
12731
12761
 
12732
12762
  .lg\:c-text-title-md {
12733
12763
  font-size: 1.5rem;
12734
- line-height: 1.75rem;
12764
+ letter-spacing: -0.03rem;
12735
12765
  }
12736
12766
 
12737
12767
  .lg\:c-text-title-sm {
12738
- font-size: 1.125rem;
12739
- line-height: 1.5rem;
12768
+ font-size: 1.25rem;
12769
+ letter-spacing: -0.025rem;
12740
12770
  }
12741
12771
  }
12742
12772
  }