@asante-org/atlascopco-vt-litesitegenerator 1.2.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 (75) hide show
  1. package/README.md +160 -0
  2. package/dist/.storybook/AtlasCopcoTheme.d.ts +2 -0
  3. package/dist/.storybook/main.d.ts +3 -0
  4. package/dist/.storybook/manager.d.ts +1 -0
  5. package/dist/.storybook/preview.d.ts +4 -0
  6. package/dist/assets/.gitkeep +0 -0
  7. package/dist/index.esm.js +696 -0
  8. package/dist/index.esm.js.map +1 -0
  9. package/dist/index.esm.scss +2050 -0
  10. package/dist/index.js +752 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/index.scss +2050 -0
  13. package/dist/src/components/lsg/LsgBanner/LsgBanner.d.ts +17 -0
  14. package/dist/src/components/lsg/LsgBanner/LsgBanner.stories.d.ts +7 -0
  15. package/dist/src/components/lsg/LsgBanner/index.d.ts +2 -0
  16. package/dist/src/components/lsg/LsgButton/LsgButton.d.ts +16 -0
  17. package/dist/src/components/lsg/LsgButton/LsgButton.stories.d.ts +10 -0
  18. package/dist/src/components/lsg/LsgButton/index.d.ts +2 -0
  19. package/dist/src/components/lsg/LsgCard/LsgCard.d.ts +22 -0
  20. package/dist/src/components/lsg/LsgCard/LsgCard.stories.d.ts +9 -0
  21. package/dist/src/components/lsg/LsgCard/index.d.ts +2 -0
  22. package/dist/src/components/lsg/LsgFooter/LsgFooter.d.ts +14 -0
  23. package/dist/src/components/lsg/LsgFooter/LsgFooter.stories.d.ts +6 -0
  24. package/dist/src/components/lsg/LsgFooter/index.d.ts +2 -0
  25. package/dist/src/components/lsg/LsgHeader/LsgHeader.d.ts +14 -0
  26. package/dist/src/components/lsg/LsgHeader/LsgHeader.stories.d.ts +6 -0
  27. package/dist/src/components/lsg/LsgHeader/index.d.ts +2 -0
  28. package/dist/src/components/lsg/LsgLanguageSwitcher/LsgLanguageSwitcher.d.ts +20 -0
  29. package/dist/src/components/lsg/LsgLanguageSwitcher/LsgLanguageSwitcher.stories.d.ts +6 -0
  30. package/dist/src/components/lsg/LsgLanguageSwitcher/index.d.ts +2 -0
  31. package/dist/src/components/lsg/LsgLogo/LsgLogo.d.ts +13 -0
  32. package/dist/src/components/lsg/LsgLogo/LsgLogo.stories.d.ts +7 -0
  33. package/dist/src/components/lsg/LsgLogo/index.d.ts +2 -0
  34. package/dist/src/components/lsg/LsgNavigation/LsgNavigation.d.ts +13 -0
  35. package/dist/src/components/lsg/LsgNavigation/LsgNavigation.stories.d.ts +6 -0
  36. package/dist/src/components/lsg/LsgNavigation/index.d.ts +2 -0
  37. package/dist/src/components/lsg/LsgQuickLinks/LsgQuickLinks.d.ts +11 -0
  38. package/dist/src/components/lsg/LsgQuickLinks/LsgQuickLinks.stories.d.ts +6 -0
  39. package/dist/src/components/lsg/LsgQuickLinks/index.d.ts +2 -0
  40. package/dist/src/components/lsg/LsgSearchOverlay/LsgSearchOverlay.d.ts +19 -0
  41. package/dist/src/components/lsg/LsgSearchOverlay/LsgSearchOverlay.stories.d.ts +6 -0
  42. package/dist/src/components/lsg/LsgSearchOverlay/index.d.ts +2 -0
  43. package/dist/src/components/lsg/LsgSearchTrigger/LsgSearchTrigger.d.ts +10 -0
  44. package/dist/src/components/lsg/LsgSearchTrigger/LsgSearchTrigger.stories.d.ts +6 -0
  45. package/dist/src/components/lsg/LsgSearchTrigger/index.d.ts +2 -0
  46. package/dist/src/components/lsg/LsgSocialMediaIcons/LsgSocialMediaIcons.d.ts +13 -0
  47. package/dist/src/components/lsg/LsgSocialMediaIcons/LsgSocialMediaIcons.stories.d.ts +6 -0
  48. package/dist/src/components/lsg/LsgSocialMediaIcons/index.d.ts +2 -0
  49. package/dist/src/components/lsg/_LsgOverviewComponents.d.ts +35 -0
  50. package/dist/src/components/lsg/index.d.ts +24 -0
  51. package/dist/src/components/lsg/lsg-clientlib-runtime.d.ts +1 -0
  52. package/dist/src/components/lsg/lsg-clientlib.d.ts +14 -0
  53. package/dist/src/index.d.ts +6 -0
  54. package/dist/src/stories/foundation/_components/StoryLayout.d.ts +11 -0
  55. package/dist/src/themes/createThemeComponents.d.ts +19 -0
  56. package/dist/src/themes/theme-1/components.d.ts +16 -0
  57. package/dist/src/themes/theme-1/theme-clientlib.d.ts +1 -0
  58. package/dist/src/themes/theme-2/components.d.ts +16 -0
  59. package/dist/src/themes/theme-2/theme-clientlib.d.ts +1 -0
  60. package/dist/src/themes/theme-3/components.d.ts +16 -0
  61. package/dist/src/themes/theme-3/theme-clientlib.d.ts +1 -0
  62. package/dist/themes/theme-1.css +754 -0
  63. package/dist/themes/theme-1.css.map +1 -0
  64. package/dist/themes/theme-1.js +99 -0
  65. package/dist/themes/theme-1.js.map +1 -0
  66. package/dist/themes/theme-2.css +754 -0
  67. package/dist/themes/theme-2.css.map +1 -0
  68. package/dist/themes/theme-2.js +99 -0
  69. package/dist/themes/theme-2.js.map +1 -0
  70. package/dist/themes/theme-3.css +762 -0
  71. package/dist/themes/theme-3.css.map +1 -0
  72. package/dist/themes/theme-3.js +99 -0
  73. package/dist/themes/theme-3.js.map +1 -0
  74. package/dist/tsconfig.tsbuildinfo +1 -0
  75. package/package.json +115 -0
@@ -0,0 +1,2050 @@
1
+ :root {
2
+ --lsg-color-primary: #14532d;
3
+ --lsg-color-secondary: #3f3f46;
4
+ --lsg-color-tertiary: #c2410c;
5
+ --lsg-color-light: #eeeeee;
6
+ --lsg-color-dark: #18181b;
7
+ --lsg-color-black: #09090b;
8
+ --lsg-color-white: #ffffff;
9
+ --lsg-size-Small: 14px;
10
+ --lsg-size-body: 18px;
11
+ --lsg-size-Pretitle: 18px;
12
+ --lsg-size-H6: 18px;
13
+ --lsg-size-H5: 21px;
14
+ --lsg-size-H4: 28px;
15
+ --lsg-size-H3: 30px;
16
+ --lsg-size-H2: 36px;
17
+ --lsg-size-H1: 45px;
18
+ --lsg-size-large: 54px;
19
+ --lsg-size-xl: 72px;
20
+ --lsg-size-xxl: 90px;
21
+ --lsg-size-xxxl: 108px;
22
+ --lsg-font-family-primary: Calibri;
23
+ --lsg-font-family-secondary: "Times New Roman";
24
+ --lsg-radius-square: 0px;
25
+ --lsg-radius-rounded: 10px;
26
+ --lsg-radius-pill: 25px;
27
+ --atlascopco-blue-1: #f5fbfc;
28
+ --atlascopco-blue-3: #b8e0ec;
29
+ --atlascopco-blue-5: #7ac6dc;
30
+ --atlascopco-blue-7: #3daccc;
31
+ --atlascopco-blue-9: #0092bc;
32
+ --atlascopco-blue-11: #006f8f;
33
+ --atlascopco-gray-1: #f8f9f9;
34
+ --atlascopco-gray-3: #d1d4d7;
35
+ --atlascopco-gray-5: #aab0b5;
36
+ --atlascopco-gray-7: #828b92;
37
+ --atlascopco-gray-9: #5b6770;
38
+ --atlascopco-gray-11: #2f363a;
39
+ --atlascopco-beige-1: #f5f2ef;
40
+ --atlascopco-beige-2: #efebe6;
41
+ --atlascopco-beige-3: #e7e0da;
42
+ --atlascopco-beige-4: #dfd6ce;
43
+ --atlascopco-blue: #0092bc;
44
+ --atlascopco-blue-dark: #006f8f;
45
+ --atlascopco-black: #000000;
46
+ --atlascopco-white: #ffffff;
47
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
48
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
49
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
50
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
51
+ --atlascopco-grey-100: #f8f9f9;
52
+ --atlascopco-grey-200: #d1d4d7;
53
+ --atlascopco-grey-300: #aab0b5;
54
+ --atlascopco-grey-400: #828b92;
55
+ --atlascopco-grey-500: #5b6770;
56
+ --atlascopco-grey-600: #2f363a;
57
+ --color-primary: #0092bc;
58
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
59
+ --spacing-zero: 0px;
60
+ --spacing-xxs: 4px;
61
+ --spacing-xs: 8px;
62
+ --spacing-sm: 12px;
63
+ --spacing-md: 16px;
64
+ --spacing-lg: 24px;
65
+ --spacing-xl: 36px;
66
+ --spacing-xxl: 48px;
67
+ --spacing-3xl: 72px;
68
+ --spacing-4xl: 96px;
69
+ --h1-mobile-size: 32px;
70
+ --h1-mobile-line-height: 1.2;
71
+ --h2-mobile-size: 24px;
72
+ --h2-mobile-line-height: 1.2;
73
+ --h3-mobile-size: 18px;
74
+ --h3-mobile-line-height: 1.6;
75
+ --body-mobile-size: 14px;
76
+ --body-mobile-line-height: 1.5;
77
+ --h1-desktop-size: 55px;
78
+ --h1-desktop-line-height: 1.15;
79
+ --h2-desktop-size: 40px;
80
+ --h2-desktop-line-height: 1.2;
81
+ --h3-desktop-size: 32px;
82
+ --h3-desktop-line-height: 1.2;
83
+ --body-desktop-size: 18px;
84
+ --body-desktop-line-height: 1.6;
85
+ --text-lg-size: 27px;
86
+ --text-lg-line-height: 1.4;
87
+ --text-xl-size: 36px;
88
+ --text-xl-line-height: 1.4;
89
+ --text-xxl-size: 64px;
90
+ --text-xxl-line-height: 1;
91
+ }
92
+
93
+ .lsg-button {
94
+ display: inline-flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ gap: 8px;
98
+ padding: 12px 24px;
99
+ font-family: var(--lsg-font-family-primary);
100
+ font-size: 0.9375rem;
101
+ font-weight: 600;
102
+ line-height: 1.5;
103
+ text-decoration: none;
104
+ border: 2px solid transparent;
105
+ border-radius: var(--lsg-radius-rounded);
106
+ cursor: pointer;
107
+ transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
108
+ white-space: nowrap;
109
+ }
110
+ .lsg-button:focus-visible {
111
+ outline: 2px solid var(--lsg-color-primary);
112
+ outline-offset: 2px;
113
+ }
114
+ .lsg-button--primary {
115
+ background-color: var(--lsg-color-primary);
116
+ border-color: var(--lsg-color-primary);
117
+ color: var(--lsg-color-white);
118
+ }
119
+ .lsg-button--primary:hover:not([disabled]):not(.lsg-button--disabled) {
120
+ background-color: color-mix(in srgb, var(--lsg-color-primary) 82%, var(--lsg-color-black));
121
+ border-color: color-mix(in srgb, var(--lsg-color-primary) 82%, var(--lsg-color-black));
122
+ }
123
+ .lsg-button--secondary {
124
+ background-color: transparent;
125
+ border-color: var(--lsg-color-primary);
126
+ color: var(--lsg-color-primary);
127
+ }
128
+ .lsg-button--secondary:hover:not([disabled]):not(.lsg-button--disabled) {
129
+ background-color: var(--lsg-color-primary);
130
+ color: var(--lsg-color-white);
131
+ }
132
+ .lsg-button--ghost {
133
+ background-color: transparent;
134
+ border-color: transparent;
135
+ color: var(--lsg-color-primary);
136
+ padding-left: 0;
137
+ padding-right: 0;
138
+ }
139
+ .lsg-button--ghost:hover:not([disabled]):not(.lsg-button--disabled) {
140
+ text-decoration: underline;
141
+ }
142
+ .lsg-button--disabled, .lsg-button[disabled] {
143
+ opacity: 0.5;
144
+ cursor: not-allowed;
145
+ pointer-events: none;
146
+ }
147
+
148
+ .lsg-banner {
149
+ position: relative;
150
+ display: flex;
151
+ align-items: center;
152
+ min-height: 400px;
153
+ padding: 72px 24px;
154
+ background-color: var(--lsg-color-dark);
155
+ color: var(--lsg-color-white);
156
+ overflow: hidden;
157
+ }
158
+ .lsg-banner__background {
159
+ position: absolute;
160
+ inset: 0;
161
+ }
162
+ .lsg-banner__background img {
163
+ width: 100%;
164
+ height: 100%;
165
+ -o-object-fit: cover;
166
+ object-fit: cover;
167
+ display: block;
168
+ }
169
+ .lsg-banner__background::after {
170
+ content: "";
171
+ position: absolute;
172
+ inset: 0;
173
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 100%);
174
+ }
175
+ .lsg-banner__inner {
176
+ position: relative;
177
+ z-index: 1;
178
+ width: 100%;
179
+ max-width: 1280px;
180
+ margin: 0 auto;
181
+ padding: 0 24px;
182
+ }
183
+ .lsg-banner__eyebrow {
184
+ display: block;
185
+ font-size: 0.8125rem;
186
+ font-weight: 700;
187
+ letter-spacing: 0.1em;
188
+ text-transform: uppercase;
189
+ color: color-mix(in srgb, var(--lsg-color-primary) 35%, var(--lsg-color-white));
190
+ margin: 0 0 12px;
191
+ }
192
+ .lsg-banner__heading {
193
+ font-size: clamp(1.75rem, 4vw, 3rem);
194
+ font-weight: 700;
195
+ line-height: 1.15;
196
+ margin: 0 0 16px;
197
+ max-width: 720px;
198
+ }
199
+ .lsg-banner__copy {
200
+ font-size: 1.125rem;
201
+ line-height: 1.6;
202
+ color: color-mix(in srgb, var(--lsg-color-white) 88%, var(--lsg-color-light));
203
+ margin: 0 0 36px;
204
+ max-width: 560px;
205
+ }
206
+ .lsg-card {
207
+ display: flex;
208
+ flex-direction: column;
209
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
210
+ border-radius: var(--lsg-radius-rounded);
211
+ background: var(--lsg-color-white);
212
+ overflow: hidden;
213
+ transition: box-shadow 0.2s ease;
214
+ height: 100%;
215
+ }
216
+ .lsg-card:hover {
217
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
218
+ }
219
+ .lsg-card__image {
220
+ aspect-ratio: 16/9;
221
+ overflow: hidden;
222
+ }
223
+ .lsg-card__image img {
224
+ width: 100%;
225
+ height: 100%;
226
+ -o-object-fit: cover;
227
+ object-fit: cover;
228
+ display: block;
229
+ }
230
+ .lsg-card__body {
231
+ display: flex;
232
+ flex-direction: column;
233
+ flex: 1;
234
+ padding: 24px;
235
+ gap: 12px;
236
+ }
237
+ .lsg-card__title {
238
+ font-size: 1.125rem;
239
+ font-weight: 600;
240
+ line-height: 1.3;
241
+ color: var(--lsg-color-black);
242
+ margin: 0;
243
+ }
244
+ .lsg-card__description {
245
+ font-size: var(--lsg-size-body);
246
+ line-height: 1.6;
247
+ color: var(--lsg-color-secondary);
248
+ margin: 0;
249
+ flex: 1;
250
+ }
251
+ .lsg-card__footer {
252
+ margin-top: auto;
253
+ padding-top: 12px;
254
+ border-top: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 12%, var(--lsg-color-white));
255
+ }
256
+
257
+ .lsg-cards {
258
+ display: grid;
259
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
260
+ gap: 24px;
261
+ list-style: none;
262
+ padding: 0;
263
+ margin: 0;
264
+ }
265
+
266
+ .lsg-logo {
267
+ display: inline-flex;
268
+ align-items: center;
269
+ text-decoration: none;
270
+ flex-shrink: 0;
271
+ }
272
+ .lsg-logo__image {
273
+ display: block;
274
+ width: auto;
275
+ height: 40px;
276
+ max-width: 160px;
277
+ }
278
+ .lsg-logo__text {
279
+ font-family: var(--lsg-font-family-primary);
280
+ font-size: 1.25rem;
281
+ font-weight: 700;
282
+ color: var(--lsg-color-primary);
283
+ letter-spacing: -0.01em;
284
+ }
285
+
286
+ .lsg-nav__list {
287
+ display: flex;
288
+ align-items: center;
289
+ gap: 8px;
290
+ list-style: none;
291
+ padding: 0;
292
+ margin: 0;
293
+ }
294
+ .lsg-nav__item {
295
+ display: flex;
296
+ align-items: stretch;
297
+ }
298
+ .lsg-nav__link {
299
+ display: flex;
300
+ align-items: center;
301
+ padding: 8px 12px;
302
+ font-size: 0.9375rem;
303
+ font-weight: 500;
304
+ color: var(--lsg-color-dark);
305
+ text-decoration: none;
306
+ border-bottom: 2px solid transparent;
307
+ transition: color 0.15s ease, border-color 0.15s ease;
308
+ }
309
+ .lsg-nav__link:hover, .lsg-nav__link:focus-visible {
310
+ color: var(--lsg-color-primary);
311
+ outline: none;
312
+ }
313
+ .lsg-nav__link:focus-visible {
314
+ outline: 2px solid var(--lsg-color-primary);
315
+ outline-offset: 2px;
316
+ }
317
+ .lsg-nav__link--current {
318
+ color: var(--lsg-color-primary);
319
+ border-bottom-color: var(--lsg-color-primary);
320
+ font-weight: 600;
321
+ }
322
+
323
+ .lsg-lang-switcher {
324
+ position: relative;
325
+ }
326
+ .lsg-lang-switcher__trigger {
327
+ display: inline-flex;
328
+ align-items: center;
329
+ gap: 8px;
330
+ padding: 8px 12px;
331
+ font-family: var(--lsg-font-family-primary);
332
+ font-size: 0.875rem;
333
+ font-weight: 500;
334
+ color: var(--lsg-color-secondary);
335
+ background: none;
336
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
337
+ border-radius: var(--lsg-radius-rounded);
338
+ cursor: pointer;
339
+ transition: border-color 0.15s ease, color 0.15s ease;
340
+ }
341
+ .lsg-lang-switcher__trigger:hover, .lsg-lang-switcher__trigger:focus-visible {
342
+ border-color: var(--lsg-color-primary);
343
+ color: var(--lsg-color-primary);
344
+ outline: none;
345
+ }
346
+ .lsg-lang-switcher__trigger:focus-visible {
347
+ outline: 2px solid var(--lsg-color-primary);
348
+ outline-offset: 2px;
349
+ }
350
+ .lsg-lang-switcher__trigger svg {
351
+ width: 12px;
352
+ height: 12px;
353
+ flex-shrink: 0;
354
+ transition: transform 0.2s ease;
355
+ }
356
+ .lsg-lang-switcher__trigger[aria-expanded=true] svg {
357
+ transform: rotate(180deg);
358
+ }
359
+ .lsg-lang-switcher__dropdown {
360
+ position: absolute;
361
+ top: calc(100% + 4px);
362
+ right: 0;
363
+ min-width: 140px;
364
+ background: var(--lsg-color-white);
365
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
366
+ border-radius: var(--lsg-radius-rounded);
367
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
368
+ list-style: none;
369
+ padding: 8px 0;
370
+ margin: 0;
371
+ z-index: 100;
372
+ }
373
+ .lsg-lang-switcher__option-link {
374
+ display: block;
375
+ padding: 8px 12px;
376
+ font-size: 0.875rem;
377
+ color: var(--lsg-color-secondary);
378
+ text-decoration: none;
379
+ transition: background-color 0.1s ease, color 0.1s ease;
380
+ }
381
+ .lsg-lang-switcher__option-link:hover, .lsg-lang-switcher__option-link:focus-visible {
382
+ background-color: color-mix(in srgb, var(--lsg-color-light) 70%, var(--lsg-color-white));
383
+ color: var(--lsg-color-primary);
384
+ outline: none;
385
+ }
386
+ .lsg-lang-switcher__option-link--active {
387
+ font-weight: 600;
388
+ color: var(--lsg-color-primary);
389
+ }
390
+
391
+ .lsg-search-trigger {
392
+ display: inline-flex;
393
+ align-items: center;
394
+ justify-content: center;
395
+ width: 40px;
396
+ height: 40px;
397
+ background: none;
398
+ border: none;
399
+ border-radius: 50%;
400
+ cursor: pointer;
401
+ color: var(--lsg-color-secondary);
402
+ transition: background-color 0.15s ease, color 0.15s ease;
403
+ }
404
+ .lsg-search-trigger:hover, .lsg-search-trigger:focus-visible {
405
+ background-color: color-mix(in srgb, var(--lsg-color-light) 70%, var(--lsg-color-white));
406
+ color: var(--lsg-color-primary);
407
+ }
408
+ .lsg-search-trigger:focus-visible {
409
+ outline: 2px solid var(--lsg-color-primary);
410
+ outline-offset: 2px;
411
+ }
412
+ .lsg-search-trigger svg {
413
+ width: 20px;
414
+ height: 20px;
415
+ pointer-events: none;
416
+ }
417
+
418
+ .lsg-search-overlay {
419
+ position: fixed;
420
+ inset: 0;
421
+ z-index: 200;
422
+ display: flex;
423
+ align-items: flex-start;
424
+ justify-content: center;
425
+ padding-top: 80px;
426
+ background-color: rgba(0, 0, 0, 0.55);
427
+ opacity: 0;
428
+ visibility: hidden;
429
+ transition: opacity 0.2s ease, visibility 0.2s ease;
430
+ }
431
+ .lsg-search-overlay--open {
432
+ opacity: 1;
433
+ visibility: visible;
434
+ }
435
+ .lsg-search-overlay__panel {
436
+ width: 100%;
437
+ max-width: 640px;
438
+ margin: 0 24px;
439
+ background: var(--lsg-color-white);
440
+ border-radius: var(--lsg-radius-rounded);
441
+ padding: 24px;
442
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
443
+ }
444
+ .lsg-search-overlay__form {
445
+ display: flex;
446
+ align-items: center;
447
+ gap: 12px;
448
+ border-bottom: 2px solid var(--lsg-color-primary);
449
+ padding-bottom: 12px;
450
+ }
451
+ .lsg-search-overlay__input {
452
+ flex: 1;
453
+ border: none;
454
+ font-size: var(--lsg-size-body);
455
+ font-family: var(--lsg-font-family-primary);
456
+ color: var(--lsg-color-dark);
457
+ background: transparent;
458
+ }
459
+ .lsg-search-overlay__input:focus {
460
+ outline: none;
461
+ }
462
+ .lsg-search-overlay__input::-moz-placeholder {
463
+ color: color-mix(in srgb, var(--lsg-color-secondary) 45%, var(--lsg-color-white));
464
+ }
465
+ .lsg-search-overlay__input::placeholder {
466
+ color: color-mix(in srgb, var(--lsg-color-secondary) 45%, var(--lsg-color-white));
467
+ }
468
+ .lsg-search-overlay__submit {
469
+ display: inline-flex;
470
+ align-items: center;
471
+ justify-content: center;
472
+ background: none;
473
+ border: none;
474
+ cursor: pointer;
475
+ color: var(--lsg-color-primary);
476
+ padding: 8px;
477
+ }
478
+ .lsg-search-overlay__submit:focus-visible {
479
+ outline: 2px solid var(--lsg-color-primary);
480
+ outline-offset: 2px;
481
+ border-radius: var(--lsg-radius-rounded);
482
+ }
483
+ .lsg-search-overlay__submit svg {
484
+ width: 20px;
485
+ height: 20px;
486
+ }
487
+ .lsg-search-overlay__close {
488
+ display: inline-flex;
489
+ align-items: center;
490
+ justify-content: center;
491
+ width: 32px;
492
+ height: 32px;
493
+ background: none;
494
+ border: none;
495
+ cursor: pointer;
496
+ color: color-mix(in srgb, var(--lsg-color-secondary) 60%, var(--lsg-color-white));
497
+ border-radius: 50%;
498
+ transition: background-color 0.15s ease, color 0.15s ease;
499
+ flex-shrink: 0;
500
+ }
501
+ .lsg-search-overlay__close:hover {
502
+ background-color: color-mix(in srgb, var(--lsg-color-light) 70%, var(--lsg-color-white));
503
+ color: var(--lsg-color-dark);
504
+ }
505
+ .lsg-search-overlay__close:focus-visible {
506
+ outline: 2px solid var(--lsg-color-primary);
507
+ outline-offset: 2px;
508
+ }
509
+ .lsg-search-overlay__close svg {
510
+ width: 16px;
511
+ height: 16px;
512
+ }
513
+
514
+ .lsg-header {
515
+ position: sticky;
516
+ top: 0;
517
+ z-index: 100;
518
+ background: var(--lsg-color-white);
519
+ border-bottom: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
520
+ }
521
+ .lsg-header__inner {
522
+ display: flex;
523
+ align-items: center;
524
+ gap: 16px;
525
+ max-width: 1280px;
526
+ margin: 0 auto;
527
+ padding: 0 24px;
528
+ height: 72px;
529
+ }
530
+ .lsg-header__brand {
531
+ flex-shrink: 0;
532
+ margin-right: 24px;
533
+ }
534
+ .lsg-header__nav {
535
+ flex: 1;
536
+ overflow: hidden;
537
+ }
538
+ .lsg-header__actions {
539
+ display: flex;
540
+ align-items: center;
541
+ gap: 8px;
542
+ margin-left: auto;
543
+ flex-shrink: 0;
544
+ }
545
+
546
+ .lsg-quick-links__heading {
547
+ font-size: 0.8125rem;
548
+ font-weight: 700;
549
+ letter-spacing: 0.08em;
550
+ text-transform: uppercase;
551
+ color: color-mix(in srgb, var(--lsg-color-secondary) 38%, var(--lsg-color-white));
552
+ margin: 0 0 16px;
553
+ }
554
+ .lsg-quick-links__list {
555
+ list-style: none;
556
+ padding: 0;
557
+ margin: 0;
558
+ display: flex;
559
+ flex-direction: column;
560
+ gap: 8px;
561
+ }
562
+ .lsg-quick-links__link {
563
+ font-size: 0.9375rem;
564
+ color: color-mix(in srgb, var(--lsg-color-secondary) 30%, var(--lsg-color-white));
565
+ text-decoration: none;
566
+ transition: color 0.15s ease;
567
+ }
568
+ .lsg-quick-links__link:hover, .lsg-quick-links__link:focus-visible {
569
+ color: var(--lsg-color-white);
570
+ outline: none;
571
+ }
572
+ .lsg-quick-links__link:focus-visible {
573
+ text-decoration: underline;
574
+ }
575
+
576
+ .lsg-social-icons {
577
+ display: flex;
578
+ align-items: center;
579
+ gap: 12px;
580
+ list-style: none;
581
+ padding: 0;
582
+ margin: 0;
583
+ }
584
+ .lsg-social-icons__link {
585
+ display: inline-flex;
586
+ align-items: center;
587
+ justify-content: center;
588
+ width: 36px;
589
+ height: 36px;
590
+ color: color-mix(in srgb, var(--lsg-color-secondary) 38%, var(--lsg-color-white));
591
+ border-radius: 50%;
592
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 52%, var(--lsg-color-white));
593
+ transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
594
+ }
595
+ .lsg-social-icons__link:hover, .lsg-social-icons__link:focus-visible {
596
+ color: var(--lsg-color-white);
597
+ border-color: var(--lsg-color-white);
598
+ background-color: rgba(255, 255, 255, 0.1);
599
+ }
600
+ .lsg-social-icons__link:focus-visible {
601
+ outline: 2px solid color-mix(in srgb, var(--lsg-color-primary) 35%, var(--lsg-color-white));
602
+ outline-offset: 2px;
603
+ }
604
+ .lsg-social-icons__link svg {
605
+ width: 16px;
606
+ height: 16px;
607
+ pointer-events: none;
608
+ fill: currentColor;
609
+ }
610
+
611
+ .lsg-footer {
612
+ background-color: var(--lsg-color-dark);
613
+ color: var(--lsg-color-white);
614
+ }
615
+ .lsg-footer__inner {
616
+ max-width: 1280px;
617
+ margin: 0 auto;
618
+ padding: 72px 24px;
619
+ display: grid;
620
+ grid-template-columns: 220px 1fr;
621
+ gap: 72px;
622
+ }
623
+ @media (max-width: 768px) {
624
+ .lsg-footer__inner {
625
+ grid-template-columns: 1fr;
626
+ gap: 36px;
627
+ }
628
+ }
629
+ .lsg-footer__brand {
630
+ display: flex;
631
+ flex-direction: column;
632
+ gap: 16px;
633
+ }
634
+ .lsg-footer__tagline {
635
+ font-size: 0.9375rem;
636
+ color: color-mix(in srgb, var(--lsg-color-secondary) 38%, var(--lsg-color-white));
637
+ line-height: 1.6;
638
+ margin: 0;
639
+ }
640
+ .lsg-footer__nav {
641
+ display: grid;
642
+ grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
643
+ gap: 36px;
644
+ }
645
+ .lsg-footer__bottom {
646
+ max-width: 1280px;
647
+ margin: 0 auto;
648
+ padding: 16px 24px;
649
+ border-top: 1px solid var(--lsg-color-secondary);
650
+ display: flex;
651
+ align-items: center;
652
+ justify-content: space-between;
653
+ gap: 16px;
654
+ flex-wrap: wrap;
655
+ }
656
+ .lsg-footer__copyright {
657
+ font-size: 0.8125rem;
658
+ color: color-mix(in srgb, var(--lsg-color-secondary) 56%, var(--lsg-color-white));
659
+ margin: 0;
660
+ }
661
+ .lsg-footer .lsg-logo__text {
662
+ color: var(--lsg-color-white);
663
+ }
664
+ .lsg-footer .lsg-logo__image {
665
+ filter: brightness(0) invert(1);
666
+ }
667
+
668
+ .lsg-visually-hidden {
669
+ position: absolute;
670
+ width: 1px;
671
+ height: 1px;
672
+ padding: 0;
673
+ margin: -1px;
674
+ overflow: hidden;
675
+ clip: rect(0, 0, 0, 0);
676
+ white-space: nowrap;
677
+ border: 0;
678
+ }
679
+
680
+ .lsg-themed-component {
681
+ display: contents;
682
+ }
683
+ :root {
684
+ --atlascopco-blue-1: #f5fbfc;
685
+ --atlascopco-blue-3: #b8e0ec;
686
+ --atlascopco-blue-5: #7ac6dc;
687
+ --atlascopco-blue-7: #3daccc;
688
+ --atlascopco-blue-9: #0092bc;
689
+ --atlascopco-blue-11: #006f8f;
690
+ --atlascopco-gray-1: #f8f9f9;
691
+ --atlascopco-gray-3: #d1d4d7;
692
+ --atlascopco-gray-5: #aab0b5;
693
+ --atlascopco-gray-7: #828b92;
694
+ --atlascopco-gray-9: #5b6770;
695
+ --atlascopco-gray-11: #2f363a;
696
+ --atlascopco-beige-1: #f5f2ef;
697
+ --atlascopco-beige-2: #efebe6;
698
+ --atlascopco-beige-3: #e7e0da;
699
+ --atlascopco-beige-4: #dfd6ce;
700
+ --atlascopco-blue: #0092bc;
701
+ --atlascopco-blue-dark: #006f8f;
702
+ --atlascopco-black: #000000;
703
+ --atlascopco-white: #ffffff;
704
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
705
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
706
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
707
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
708
+ --atlascopco-grey-100: #f8f9f9;
709
+ --atlascopco-grey-200: #d1d4d7;
710
+ --atlascopco-grey-300: #aab0b5;
711
+ --atlascopco-grey-400: #828b92;
712
+ --atlascopco-grey-500: #5b6770;
713
+ --atlascopco-grey-600: #2f363a;
714
+ --color-primary: #0092bc;
715
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
716
+ --spacing-zero: 0px;
717
+ --spacing-xxs: 4px;
718
+ --spacing-xs: 8px;
719
+ --spacing-sm: 12px;
720
+ --spacing-md: 16px;
721
+ --spacing-lg: 24px;
722
+ --spacing-xl: 36px;
723
+ --spacing-xxl: 48px;
724
+ --spacing-3xl: 72px;
725
+ --spacing-4xl: 96px;
726
+ --h1-mobile-size: 32px;
727
+ --h1-mobile-line-height: 1.2;
728
+ --h2-mobile-size: 24px;
729
+ --h2-mobile-line-height: 1.2;
730
+ --h3-mobile-size: 18px;
731
+ --h3-mobile-line-height: 1.6;
732
+ --body-mobile-size: 14px;
733
+ --body-mobile-line-height: 1.5;
734
+ --h1-desktop-size: 55px;
735
+ --h1-desktop-line-height: 1.15;
736
+ --h2-desktop-size: 40px;
737
+ --h2-desktop-line-height: 1.2;
738
+ --h3-desktop-size: 32px;
739
+ --h3-desktop-line-height: 1.2;
740
+ --body-desktop-size: 18px;
741
+ --body-desktop-line-height: 1.6;
742
+ --text-lg-size: 27px;
743
+ --text-lg-line-height: 1.4;
744
+ --text-xl-size: 36px;
745
+ --text-xl-line-height: 1.4;
746
+ --text-xxl-size: 64px;
747
+ --text-xxl-line-height: 1;
748
+ }
749
+
750
+ .lsg-button {
751
+ display: inline-flex;
752
+ align-items: center;
753
+ justify-content: center;
754
+ gap: 8px;
755
+ padding: 12px 24px;
756
+ font-family: var(--lsg-font-family-primary);
757
+ font-size: 0.9375rem;
758
+ font-weight: 600;
759
+ line-height: 1.5;
760
+ text-decoration: none;
761
+ border: 2px solid transparent;
762
+ border-radius: var(--lsg-radius-rounded);
763
+ cursor: pointer;
764
+ transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
765
+ white-space: nowrap;
766
+ }
767
+ .lsg-button:focus-visible {
768
+ outline: 2px solid var(--lsg-color-primary);
769
+ outline-offset: 2px;
770
+ }
771
+ .lsg-button--primary {
772
+ background-color: var(--lsg-color-primary);
773
+ border-color: var(--lsg-color-primary);
774
+ color: var(--lsg-color-white);
775
+ }
776
+ .lsg-button--primary:hover:not([disabled]):not(.lsg-button--disabled) {
777
+ background-color: color-mix(in srgb, var(--lsg-color-primary) 82%, var(--lsg-color-black));
778
+ border-color: color-mix(in srgb, var(--lsg-color-primary) 82%, var(--lsg-color-black));
779
+ }
780
+ .lsg-button--secondary {
781
+ background-color: transparent;
782
+ border-color: var(--lsg-color-primary);
783
+ color: var(--lsg-color-primary);
784
+ }
785
+ .lsg-button--secondary:hover:not([disabled]):not(.lsg-button--disabled) {
786
+ background-color: var(--lsg-color-primary);
787
+ color: var(--lsg-color-white);
788
+ }
789
+ .lsg-button--ghost {
790
+ background-color: transparent;
791
+ border-color: transparent;
792
+ color: var(--lsg-color-primary);
793
+ padding-left: 0;
794
+ padding-right: 0;
795
+ }
796
+ .lsg-button--ghost:hover:not([disabled]):not(.lsg-button--disabled) {
797
+ text-decoration: underline;
798
+ }
799
+ .lsg-button--disabled, .lsg-button[disabled] {
800
+ opacity: 0.5;
801
+ cursor: not-allowed;
802
+ pointer-events: none;
803
+ }
804
+ :root {
805
+ --atlascopco-blue-1: #f5fbfc;
806
+ --atlascopco-blue-3: #b8e0ec;
807
+ --atlascopco-blue-5: #7ac6dc;
808
+ --atlascopco-blue-7: #3daccc;
809
+ --atlascopco-blue-9: #0092bc;
810
+ --atlascopco-blue-11: #006f8f;
811
+ --atlascopco-gray-1: #f8f9f9;
812
+ --atlascopco-gray-3: #d1d4d7;
813
+ --atlascopco-gray-5: #aab0b5;
814
+ --atlascopco-gray-7: #828b92;
815
+ --atlascopco-gray-9: #5b6770;
816
+ --atlascopco-gray-11: #2f363a;
817
+ --atlascopco-beige-1: #f5f2ef;
818
+ --atlascopco-beige-2: #efebe6;
819
+ --atlascopco-beige-3: #e7e0da;
820
+ --atlascopco-beige-4: #dfd6ce;
821
+ --atlascopco-blue: #0092bc;
822
+ --atlascopco-blue-dark: #006f8f;
823
+ --atlascopco-black: #000000;
824
+ --atlascopco-white: #ffffff;
825
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
826
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
827
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
828
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
829
+ --atlascopco-grey-100: #f8f9f9;
830
+ --atlascopco-grey-200: #d1d4d7;
831
+ --atlascopco-grey-300: #aab0b5;
832
+ --atlascopco-grey-400: #828b92;
833
+ --atlascopco-grey-500: #5b6770;
834
+ --atlascopco-grey-600: #2f363a;
835
+ --color-primary: #0092bc;
836
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
837
+ --spacing-zero: 0px;
838
+ --spacing-xxs: 4px;
839
+ --spacing-xs: 8px;
840
+ --spacing-sm: 12px;
841
+ --spacing-md: 16px;
842
+ --spacing-lg: 24px;
843
+ --spacing-xl: 36px;
844
+ --spacing-xxl: 48px;
845
+ --spacing-3xl: 72px;
846
+ --spacing-4xl: 96px;
847
+ --h1-mobile-size: 32px;
848
+ --h1-mobile-line-height: 1.2;
849
+ --h2-mobile-size: 24px;
850
+ --h2-mobile-line-height: 1.2;
851
+ --h3-mobile-size: 18px;
852
+ --h3-mobile-line-height: 1.6;
853
+ --body-mobile-size: 14px;
854
+ --body-mobile-line-height: 1.5;
855
+ --h1-desktop-size: 55px;
856
+ --h1-desktop-line-height: 1.15;
857
+ --h2-desktop-size: 40px;
858
+ --h2-desktop-line-height: 1.2;
859
+ --h3-desktop-size: 32px;
860
+ --h3-desktop-line-height: 1.2;
861
+ --body-desktop-size: 18px;
862
+ --body-desktop-line-height: 1.6;
863
+ --text-lg-size: 27px;
864
+ --text-lg-line-height: 1.4;
865
+ --text-xl-size: 36px;
866
+ --text-xl-line-height: 1.4;
867
+ --text-xxl-size: 64px;
868
+ --text-xxl-line-height: 1;
869
+ }
870
+
871
+ .lsg-banner {
872
+ position: relative;
873
+ display: flex;
874
+ align-items: center;
875
+ min-height: 400px;
876
+ padding: 72px 24px;
877
+ background-color: var(--lsg-color-dark);
878
+ color: var(--lsg-color-white);
879
+ overflow: hidden;
880
+ }
881
+ .lsg-banner__background {
882
+ position: absolute;
883
+ inset: 0;
884
+ }
885
+ .lsg-banner__background img {
886
+ width: 100%;
887
+ height: 100%;
888
+ -o-object-fit: cover;
889
+ object-fit: cover;
890
+ display: block;
891
+ }
892
+ .lsg-banner__background::after {
893
+ content: "";
894
+ position: absolute;
895
+ inset: 0;
896
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 100%);
897
+ }
898
+ .lsg-banner__inner {
899
+ position: relative;
900
+ z-index: 1;
901
+ width: 100%;
902
+ max-width: 1280px;
903
+ margin: 0 auto;
904
+ padding: 0 24px;
905
+ }
906
+ .lsg-banner__eyebrow {
907
+ display: block;
908
+ font-size: 0.8125rem;
909
+ font-weight: 700;
910
+ letter-spacing: 0.1em;
911
+ text-transform: uppercase;
912
+ color: color-mix(in srgb, var(--lsg-color-primary) 35%, var(--lsg-color-white));
913
+ margin: 0 0 12px;
914
+ }
915
+ .lsg-banner__heading {
916
+ font-size: clamp(1.75rem, 4vw, 3rem);
917
+ font-weight: 700;
918
+ line-height: 1.15;
919
+ margin: 0 0 16px;
920
+ max-width: 720px;
921
+ }
922
+ .lsg-banner__copy {
923
+ font-size: 1.125rem;
924
+ line-height: 1.6;
925
+ color: color-mix(in srgb, var(--lsg-color-white) 88%, var(--lsg-color-light));
926
+ margin: 0 0 36px;
927
+ max-width: 560px;
928
+ }
929
+ :root {
930
+ --atlascopco-blue-1: #f5fbfc;
931
+ --atlascopco-blue-3: #b8e0ec;
932
+ --atlascopco-blue-5: #7ac6dc;
933
+ --atlascopco-blue-7: #3daccc;
934
+ --atlascopco-blue-9: #0092bc;
935
+ --atlascopco-blue-11: #006f8f;
936
+ --atlascopco-gray-1: #f8f9f9;
937
+ --atlascopco-gray-3: #d1d4d7;
938
+ --atlascopco-gray-5: #aab0b5;
939
+ --atlascopco-gray-7: #828b92;
940
+ --atlascopco-gray-9: #5b6770;
941
+ --atlascopco-gray-11: #2f363a;
942
+ --atlascopco-beige-1: #f5f2ef;
943
+ --atlascopco-beige-2: #efebe6;
944
+ --atlascopco-beige-3: #e7e0da;
945
+ --atlascopco-beige-4: #dfd6ce;
946
+ --atlascopco-blue: #0092bc;
947
+ --atlascopco-blue-dark: #006f8f;
948
+ --atlascopco-black: #000000;
949
+ --atlascopco-white: #ffffff;
950
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
951
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
952
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
953
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
954
+ --atlascopco-grey-100: #f8f9f9;
955
+ --atlascopco-grey-200: #d1d4d7;
956
+ --atlascopco-grey-300: #aab0b5;
957
+ --atlascopco-grey-400: #828b92;
958
+ --atlascopco-grey-500: #5b6770;
959
+ --atlascopco-grey-600: #2f363a;
960
+ --color-primary: #0092bc;
961
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
962
+ --spacing-zero: 0px;
963
+ --spacing-xxs: 4px;
964
+ --spacing-xs: 8px;
965
+ --spacing-sm: 12px;
966
+ --spacing-md: 16px;
967
+ --spacing-lg: 24px;
968
+ --spacing-xl: 36px;
969
+ --spacing-xxl: 48px;
970
+ --spacing-3xl: 72px;
971
+ --spacing-4xl: 96px;
972
+ --h1-mobile-size: 32px;
973
+ --h1-mobile-line-height: 1.2;
974
+ --h2-mobile-size: 24px;
975
+ --h2-mobile-line-height: 1.2;
976
+ --h3-mobile-size: 18px;
977
+ --h3-mobile-line-height: 1.6;
978
+ --body-mobile-size: 14px;
979
+ --body-mobile-line-height: 1.5;
980
+ --h1-desktop-size: 55px;
981
+ --h1-desktop-line-height: 1.15;
982
+ --h2-desktop-size: 40px;
983
+ --h2-desktop-line-height: 1.2;
984
+ --h3-desktop-size: 32px;
985
+ --h3-desktop-line-height: 1.2;
986
+ --body-desktop-size: 18px;
987
+ --body-desktop-line-height: 1.6;
988
+ --text-lg-size: 27px;
989
+ --text-lg-line-height: 1.4;
990
+ --text-xl-size: 36px;
991
+ --text-xl-line-height: 1.4;
992
+ --text-xxl-size: 64px;
993
+ --text-xxl-line-height: 1;
994
+ }
995
+
996
+ .lsg-card {
997
+ display: flex;
998
+ flex-direction: column;
999
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
1000
+ border-radius: var(--lsg-radius-rounded);
1001
+ background: var(--lsg-color-white);
1002
+ overflow: hidden;
1003
+ transition: box-shadow 0.2s ease;
1004
+ height: 100%;
1005
+ }
1006
+ .lsg-card:hover {
1007
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
1008
+ }
1009
+ .lsg-card__image {
1010
+ aspect-ratio: 16/9;
1011
+ overflow: hidden;
1012
+ }
1013
+ .lsg-card__image img {
1014
+ width: 100%;
1015
+ height: 100%;
1016
+ -o-object-fit: cover;
1017
+ object-fit: cover;
1018
+ display: block;
1019
+ }
1020
+ .lsg-card__body {
1021
+ display: flex;
1022
+ flex-direction: column;
1023
+ flex: 1;
1024
+ padding: 24px;
1025
+ gap: 12px;
1026
+ }
1027
+ .lsg-card__title {
1028
+ font-size: 1.125rem;
1029
+ font-weight: 600;
1030
+ line-height: 1.3;
1031
+ color: var(--lsg-color-black);
1032
+ margin: 0;
1033
+ }
1034
+ .lsg-card__description {
1035
+ font-size: var(--lsg-size-body);
1036
+ line-height: 1.6;
1037
+ color: var(--lsg-color-secondary);
1038
+ margin: 0;
1039
+ flex: 1;
1040
+ }
1041
+ .lsg-card__footer {
1042
+ margin-top: auto;
1043
+ padding-top: 12px;
1044
+ border-top: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 12%, var(--lsg-color-white));
1045
+ }
1046
+
1047
+ .lsg-cards {
1048
+ display: grid;
1049
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
1050
+ gap: 24px;
1051
+ list-style: none;
1052
+ padding: 0;
1053
+ margin: 0;
1054
+ }
1055
+ :root {
1056
+ --atlascopco-blue-1: #f5fbfc;
1057
+ --atlascopco-blue-3: #b8e0ec;
1058
+ --atlascopco-blue-5: #7ac6dc;
1059
+ --atlascopco-blue-7: #3daccc;
1060
+ --atlascopco-blue-9: #0092bc;
1061
+ --atlascopco-blue-11: #006f8f;
1062
+ --atlascopco-gray-1: #f8f9f9;
1063
+ --atlascopco-gray-3: #d1d4d7;
1064
+ --atlascopco-gray-5: #aab0b5;
1065
+ --atlascopco-gray-7: #828b92;
1066
+ --atlascopco-gray-9: #5b6770;
1067
+ --atlascopco-gray-11: #2f363a;
1068
+ --atlascopco-beige-1: #f5f2ef;
1069
+ --atlascopco-beige-2: #efebe6;
1070
+ --atlascopco-beige-3: #e7e0da;
1071
+ --atlascopco-beige-4: #dfd6ce;
1072
+ --atlascopco-blue: #0092bc;
1073
+ --atlascopco-blue-dark: #006f8f;
1074
+ --atlascopco-black: #000000;
1075
+ --atlascopco-white: #ffffff;
1076
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1077
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1078
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1079
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1080
+ --atlascopco-grey-100: #f8f9f9;
1081
+ --atlascopco-grey-200: #d1d4d7;
1082
+ --atlascopco-grey-300: #aab0b5;
1083
+ --atlascopco-grey-400: #828b92;
1084
+ --atlascopco-grey-500: #5b6770;
1085
+ --atlascopco-grey-600: #2f363a;
1086
+ --color-primary: #0092bc;
1087
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1088
+ --spacing-zero: 0px;
1089
+ --spacing-xxs: 4px;
1090
+ --spacing-xs: 8px;
1091
+ --spacing-sm: 12px;
1092
+ --spacing-md: 16px;
1093
+ --spacing-lg: 24px;
1094
+ --spacing-xl: 36px;
1095
+ --spacing-xxl: 48px;
1096
+ --spacing-3xl: 72px;
1097
+ --spacing-4xl: 96px;
1098
+ --h1-mobile-size: 32px;
1099
+ --h1-mobile-line-height: 1.2;
1100
+ --h2-mobile-size: 24px;
1101
+ --h2-mobile-line-height: 1.2;
1102
+ --h3-mobile-size: 18px;
1103
+ --h3-mobile-line-height: 1.6;
1104
+ --body-mobile-size: 14px;
1105
+ --body-mobile-line-height: 1.5;
1106
+ --h1-desktop-size: 55px;
1107
+ --h1-desktop-line-height: 1.15;
1108
+ --h2-desktop-size: 40px;
1109
+ --h2-desktop-line-height: 1.2;
1110
+ --h3-desktop-size: 32px;
1111
+ --h3-desktop-line-height: 1.2;
1112
+ --body-desktop-size: 18px;
1113
+ --body-desktop-line-height: 1.6;
1114
+ --text-lg-size: 27px;
1115
+ --text-lg-line-height: 1.4;
1116
+ --text-xl-size: 36px;
1117
+ --text-xl-line-height: 1.4;
1118
+ --text-xxl-size: 64px;
1119
+ --text-xxl-line-height: 1;
1120
+ }
1121
+
1122
+ .lsg-logo {
1123
+ display: inline-flex;
1124
+ align-items: center;
1125
+ text-decoration: none;
1126
+ flex-shrink: 0;
1127
+ }
1128
+ .lsg-logo__image {
1129
+ display: block;
1130
+ width: auto;
1131
+ height: 40px;
1132
+ max-width: 160px;
1133
+ }
1134
+ .lsg-logo__text {
1135
+ font-family: var(--lsg-font-family-primary);
1136
+ font-size: 1.25rem;
1137
+ font-weight: 700;
1138
+ color: var(--lsg-color-primary);
1139
+ letter-spacing: -0.01em;
1140
+ }
1141
+ :root {
1142
+ --atlascopco-blue-1: #f5fbfc;
1143
+ --atlascopco-blue-3: #b8e0ec;
1144
+ --atlascopco-blue-5: #7ac6dc;
1145
+ --atlascopco-blue-7: #3daccc;
1146
+ --atlascopco-blue-9: #0092bc;
1147
+ --atlascopco-blue-11: #006f8f;
1148
+ --atlascopco-gray-1: #f8f9f9;
1149
+ --atlascopco-gray-3: #d1d4d7;
1150
+ --atlascopco-gray-5: #aab0b5;
1151
+ --atlascopco-gray-7: #828b92;
1152
+ --atlascopco-gray-9: #5b6770;
1153
+ --atlascopco-gray-11: #2f363a;
1154
+ --atlascopco-beige-1: #f5f2ef;
1155
+ --atlascopco-beige-2: #efebe6;
1156
+ --atlascopco-beige-3: #e7e0da;
1157
+ --atlascopco-beige-4: #dfd6ce;
1158
+ --atlascopco-blue: #0092bc;
1159
+ --atlascopco-blue-dark: #006f8f;
1160
+ --atlascopco-black: #000000;
1161
+ --atlascopco-white: #ffffff;
1162
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1163
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1164
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1165
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1166
+ --atlascopco-grey-100: #f8f9f9;
1167
+ --atlascopco-grey-200: #d1d4d7;
1168
+ --atlascopco-grey-300: #aab0b5;
1169
+ --atlascopco-grey-400: #828b92;
1170
+ --atlascopco-grey-500: #5b6770;
1171
+ --atlascopco-grey-600: #2f363a;
1172
+ --color-primary: #0092bc;
1173
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1174
+ --spacing-zero: 0px;
1175
+ --spacing-xxs: 4px;
1176
+ --spacing-xs: 8px;
1177
+ --spacing-sm: 12px;
1178
+ --spacing-md: 16px;
1179
+ --spacing-lg: 24px;
1180
+ --spacing-xl: 36px;
1181
+ --spacing-xxl: 48px;
1182
+ --spacing-3xl: 72px;
1183
+ --spacing-4xl: 96px;
1184
+ --h1-mobile-size: 32px;
1185
+ --h1-mobile-line-height: 1.2;
1186
+ --h2-mobile-size: 24px;
1187
+ --h2-mobile-line-height: 1.2;
1188
+ --h3-mobile-size: 18px;
1189
+ --h3-mobile-line-height: 1.6;
1190
+ --body-mobile-size: 14px;
1191
+ --body-mobile-line-height: 1.5;
1192
+ --h1-desktop-size: 55px;
1193
+ --h1-desktop-line-height: 1.15;
1194
+ --h2-desktop-size: 40px;
1195
+ --h2-desktop-line-height: 1.2;
1196
+ --h3-desktop-size: 32px;
1197
+ --h3-desktop-line-height: 1.2;
1198
+ --body-desktop-size: 18px;
1199
+ --body-desktop-line-height: 1.6;
1200
+ --text-lg-size: 27px;
1201
+ --text-lg-line-height: 1.4;
1202
+ --text-xl-size: 36px;
1203
+ --text-xl-line-height: 1.4;
1204
+ --text-xxl-size: 64px;
1205
+ --text-xxl-line-height: 1;
1206
+ }
1207
+
1208
+ .lsg-nav__list {
1209
+ display: flex;
1210
+ align-items: center;
1211
+ gap: 8px;
1212
+ list-style: none;
1213
+ padding: 0;
1214
+ margin: 0;
1215
+ }
1216
+ .lsg-nav__item {
1217
+ display: flex;
1218
+ align-items: stretch;
1219
+ }
1220
+ .lsg-nav__link {
1221
+ display: flex;
1222
+ align-items: center;
1223
+ padding: 8px 12px;
1224
+ font-size: 0.9375rem;
1225
+ font-weight: 500;
1226
+ color: var(--lsg-color-dark);
1227
+ text-decoration: none;
1228
+ border-bottom: 2px solid transparent;
1229
+ transition: color 0.15s ease, border-color 0.15s ease;
1230
+ }
1231
+ .lsg-nav__link:hover, .lsg-nav__link:focus-visible {
1232
+ color: var(--lsg-color-primary);
1233
+ outline: none;
1234
+ }
1235
+ .lsg-nav__link:focus-visible {
1236
+ outline: 2px solid var(--lsg-color-primary);
1237
+ outline-offset: 2px;
1238
+ }
1239
+ .lsg-nav__link--current {
1240
+ color: var(--lsg-color-primary);
1241
+ border-bottom-color: var(--lsg-color-primary);
1242
+ font-weight: 600;
1243
+ }
1244
+ :root {
1245
+ --atlascopco-blue-1: #f5fbfc;
1246
+ --atlascopco-blue-3: #b8e0ec;
1247
+ --atlascopco-blue-5: #7ac6dc;
1248
+ --atlascopco-blue-7: #3daccc;
1249
+ --atlascopco-blue-9: #0092bc;
1250
+ --atlascopco-blue-11: #006f8f;
1251
+ --atlascopco-gray-1: #f8f9f9;
1252
+ --atlascopco-gray-3: #d1d4d7;
1253
+ --atlascopco-gray-5: #aab0b5;
1254
+ --atlascopco-gray-7: #828b92;
1255
+ --atlascopco-gray-9: #5b6770;
1256
+ --atlascopco-gray-11: #2f363a;
1257
+ --atlascopco-beige-1: #f5f2ef;
1258
+ --atlascopco-beige-2: #efebe6;
1259
+ --atlascopco-beige-3: #e7e0da;
1260
+ --atlascopco-beige-4: #dfd6ce;
1261
+ --atlascopco-blue: #0092bc;
1262
+ --atlascopco-blue-dark: #006f8f;
1263
+ --atlascopco-black: #000000;
1264
+ --atlascopco-white: #ffffff;
1265
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1266
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1267
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1268
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1269
+ --atlascopco-grey-100: #f8f9f9;
1270
+ --atlascopco-grey-200: #d1d4d7;
1271
+ --atlascopco-grey-300: #aab0b5;
1272
+ --atlascopco-grey-400: #828b92;
1273
+ --atlascopco-grey-500: #5b6770;
1274
+ --atlascopco-grey-600: #2f363a;
1275
+ --color-primary: #0092bc;
1276
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1277
+ --spacing-zero: 0px;
1278
+ --spacing-xxs: 4px;
1279
+ --spacing-xs: 8px;
1280
+ --spacing-sm: 12px;
1281
+ --spacing-md: 16px;
1282
+ --spacing-lg: 24px;
1283
+ --spacing-xl: 36px;
1284
+ --spacing-xxl: 48px;
1285
+ --spacing-3xl: 72px;
1286
+ --spacing-4xl: 96px;
1287
+ --h1-mobile-size: 32px;
1288
+ --h1-mobile-line-height: 1.2;
1289
+ --h2-mobile-size: 24px;
1290
+ --h2-mobile-line-height: 1.2;
1291
+ --h3-mobile-size: 18px;
1292
+ --h3-mobile-line-height: 1.6;
1293
+ --body-mobile-size: 14px;
1294
+ --body-mobile-line-height: 1.5;
1295
+ --h1-desktop-size: 55px;
1296
+ --h1-desktop-line-height: 1.15;
1297
+ --h2-desktop-size: 40px;
1298
+ --h2-desktop-line-height: 1.2;
1299
+ --h3-desktop-size: 32px;
1300
+ --h3-desktop-line-height: 1.2;
1301
+ --body-desktop-size: 18px;
1302
+ --body-desktop-line-height: 1.6;
1303
+ --text-lg-size: 27px;
1304
+ --text-lg-line-height: 1.4;
1305
+ --text-xl-size: 36px;
1306
+ --text-xl-line-height: 1.4;
1307
+ --text-xxl-size: 64px;
1308
+ --text-xxl-line-height: 1;
1309
+ }
1310
+
1311
+ .lsg-lang-switcher {
1312
+ position: relative;
1313
+ }
1314
+ .lsg-lang-switcher__trigger {
1315
+ display: inline-flex;
1316
+ align-items: center;
1317
+ gap: 8px;
1318
+ padding: 8px 12px;
1319
+ font-family: var(--lsg-font-family-primary);
1320
+ font-size: 0.875rem;
1321
+ font-weight: 500;
1322
+ color: var(--lsg-color-secondary);
1323
+ background: none;
1324
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
1325
+ border-radius: var(--lsg-radius-rounded);
1326
+ cursor: pointer;
1327
+ transition: border-color 0.15s ease, color 0.15s ease;
1328
+ }
1329
+ .lsg-lang-switcher__trigger:hover, .lsg-lang-switcher__trigger:focus-visible {
1330
+ border-color: var(--lsg-color-primary);
1331
+ color: var(--lsg-color-primary);
1332
+ outline: none;
1333
+ }
1334
+ .lsg-lang-switcher__trigger:focus-visible {
1335
+ outline: 2px solid var(--lsg-color-primary);
1336
+ outline-offset: 2px;
1337
+ }
1338
+ .lsg-lang-switcher__trigger svg {
1339
+ width: 12px;
1340
+ height: 12px;
1341
+ flex-shrink: 0;
1342
+ transition: transform 0.2s ease;
1343
+ }
1344
+ .lsg-lang-switcher__trigger[aria-expanded=true] svg {
1345
+ transform: rotate(180deg);
1346
+ }
1347
+ .lsg-lang-switcher__dropdown {
1348
+ position: absolute;
1349
+ top: calc(100% + 4px);
1350
+ right: 0;
1351
+ min-width: 140px;
1352
+ background: var(--lsg-color-white);
1353
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
1354
+ border-radius: var(--lsg-radius-rounded);
1355
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
1356
+ list-style: none;
1357
+ padding: 8px 0;
1358
+ margin: 0;
1359
+ z-index: 100;
1360
+ }
1361
+ .lsg-lang-switcher__option-link {
1362
+ display: block;
1363
+ padding: 8px 12px;
1364
+ font-size: 0.875rem;
1365
+ color: var(--lsg-color-secondary);
1366
+ text-decoration: none;
1367
+ transition: background-color 0.1s ease, color 0.1s ease;
1368
+ }
1369
+ .lsg-lang-switcher__option-link:hover, .lsg-lang-switcher__option-link:focus-visible {
1370
+ background-color: color-mix(in srgb, var(--lsg-color-light) 70%, var(--lsg-color-white));
1371
+ color: var(--lsg-color-primary);
1372
+ outline: none;
1373
+ }
1374
+ .lsg-lang-switcher__option-link--active {
1375
+ font-weight: 600;
1376
+ color: var(--lsg-color-primary);
1377
+ }
1378
+ :root {
1379
+ --atlascopco-blue-1: #f5fbfc;
1380
+ --atlascopco-blue-3: #b8e0ec;
1381
+ --atlascopco-blue-5: #7ac6dc;
1382
+ --atlascopco-blue-7: #3daccc;
1383
+ --atlascopco-blue-9: #0092bc;
1384
+ --atlascopco-blue-11: #006f8f;
1385
+ --atlascopco-gray-1: #f8f9f9;
1386
+ --atlascopco-gray-3: #d1d4d7;
1387
+ --atlascopco-gray-5: #aab0b5;
1388
+ --atlascopco-gray-7: #828b92;
1389
+ --atlascopco-gray-9: #5b6770;
1390
+ --atlascopco-gray-11: #2f363a;
1391
+ --atlascopco-beige-1: #f5f2ef;
1392
+ --atlascopco-beige-2: #efebe6;
1393
+ --atlascopco-beige-3: #e7e0da;
1394
+ --atlascopco-beige-4: #dfd6ce;
1395
+ --atlascopco-blue: #0092bc;
1396
+ --atlascopco-blue-dark: #006f8f;
1397
+ --atlascopco-black: #000000;
1398
+ --atlascopco-white: #ffffff;
1399
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1400
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1401
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1402
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1403
+ --atlascopco-grey-100: #f8f9f9;
1404
+ --atlascopco-grey-200: #d1d4d7;
1405
+ --atlascopco-grey-300: #aab0b5;
1406
+ --atlascopco-grey-400: #828b92;
1407
+ --atlascopco-grey-500: #5b6770;
1408
+ --atlascopco-grey-600: #2f363a;
1409
+ --color-primary: #0092bc;
1410
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1411
+ --spacing-zero: 0px;
1412
+ --spacing-xxs: 4px;
1413
+ --spacing-xs: 8px;
1414
+ --spacing-sm: 12px;
1415
+ --spacing-md: 16px;
1416
+ --spacing-lg: 24px;
1417
+ --spacing-xl: 36px;
1418
+ --spacing-xxl: 48px;
1419
+ --spacing-3xl: 72px;
1420
+ --spacing-4xl: 96px;
1421
+ --h1-mobile-size: 32px;
1422
+ --h1-mobile-line-height: 1.2;
1423
+ --h2-mobile-size: 24px;
1424
+ --h2-mobile-line-height: 1.2;
1425
+ --h3-mobile-size: 18px;
1426
+ --h3-mobile-line-height: 1.6;
1427
+ --body-mobile-size: 14px;
1428
+ --body-mobile-line-height: 1.5;
1429
+ --h1-desktop-size: 55px;
1430
+ --h1-desktop-line-height: 1.15;
1431
+ --h2-desktop-size: 40px;
1432
+ --h2-desktop-line-height: 1.2;
1433
+ --h3-desktop-size: 32px;
1434
+ --h3-desktop-line-height: 1.2;
1435
+ --body-desktop-size: 18px;
1436
+ --body-desktop-line-height: 1.6;
1437
+ --text-lg-size: 27px;
1438
+ --text-lg-line-height: 1.4;
1439
+ --text-xl-size: 36px;
1440
+ --text-xl-line-height: 1.4;
1441
+ --text-xxl-size: 64px;
1442
+ --text-xxl-line-height: 1;
1443
+ }
1444
+
1445
+ .lsg-search-trigger {
1446
+ display: inline-flex;
1447
+ align-items: center;
1448
+ justify-content: center;
1449
+ width: 40px;
1450
+ height: 40px;
1451
+ background: none;
1452
+ border: none;
1453
+ border-radius: 50%;
1454
+ cursor: pointer;
1455
+ color: var(--lsg-color-secondary);
1456
+ transition: background-color 0.15s ease, color 0.15s ease;
1457
+ }
1458
+ .lsg-search-trigger:hover, .lsg-search-trigger:focus-visible {
1459
+ background-color: color-mix(in srgb, var(--lsg-color-light) 70%, var(--lsg-color-white));
1460
+ color: var(--lsg-color-primary);
1461
+ }
1462
+ .lsg-search-trigger:focus-visible {
1463
+ outline: 2px solid var(--lsg-color-primary);
1464
+ outline-offset: 2px;
1465
+ }
1466
+ .lsg-search-trigger svg {
1467
+ width: 20px;
1468
+ height: 20px;
1469
+ pointer-events: none;
1470
+ }
1471
+ :root {
1472
+ --atlascopco-blue-1: #f5fbfc;
1473
+ --atlascopco-blue-3: #b8e0ec;
1474
+ --atlascopco-blue-5: #7ac6dc;
1475
+ --atlascopco-blue-7: #3daccc;
1476
+ --atlascopco-blue-9: #0092bc;
1477
+ --atlascopco-blue-11: #006f8f;
1478
+ --atlascopco-gray-1: #f8f9f9;
1479
+ --atlascopco-gray-3: #d1d4d7;
1480
+ --atlascopco-gray-5: #aab0b5;
1481
+ --atlascopco-gray-7: #828b92;
1482
+ --atlascopco-gray-9: #5b6770;
1483
+ --atlascopco-gray-11: #2f363a;
1484
+ --atlascopco-beige-1: #f5f2ef;
1485
+ --atlascopco-beige-2: #efebe6;
1486
+ --atlascopco-beige-3: #e7e0da;
1487
+ --atlascopco-beige-4: #dfd6ce;
1488
+ --atlascopco-blue: #0092bc;
1489
+ --atlascopco-blue-dark: #006f8f;
1490
+ --atlascopco-black: #000000;
1491
+ --atlascopco-white: #ffffff;
1492
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1493
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1494
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1495
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1496
+ --atlascopco-grey-100: #f8f9f9;
1497
+ --atlascopco-grey-200: #d1d4d7;
1498
+ --atlascopco-grey-300: #aab0b5;
1499
+ --atlascopco-grey-400: #828b92;
1500
+ --atlascopco-grey-500: #5b6770;
1501
+ --atlascopco-grey-600: #2f363a;
1502
+ --color-primary: #0092bc;
1503
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1504
+ --spacing-zero: 0px;
1505
+ --spacing-xxs: 4px;
1506
+ --spacing-xs: 8px;
1507
+ --spacing-sm: 12px;
1508
+ --spacing-md: 16px;
1509
+ --spacing-lg: 24px;
1510
+ --spacing-xl: 36px;
1511
+ --spacing-xxl: 48px;
1512
+ --spacing-3xl: 72px;
1513
+ --spacing-4xl: 96px;
1514
+ --h1-mobile-size: 32px;
1515
+ --h1-mobile-line-height: 1.2;
1516
+ --h2-mobile-size: 24px;
1517
+ --h2-mobile-line-height: 1.2;
1518
+ --h3-mobile-size: 18px;
1519
+ --h3-mobile-line-height: 1.6;
1520
+ --body-mobile-size: 14px;
1521
+ --body-mobile-line-height: 1.5;
1522
+ --h1-desktop-size: 55px;
1523
+ --h1-desktop-line-height: 1.15;
1524
+ --h2-desktop-size: 40px;
1525
+ --h2-desktop-line-height: 1.2;
1526
+ --h3-desktop-size: 32px;
1527
+ --h3-desktop-line-height: 1.2;
1528
+ --body-desktop-size: 18px;
1529
+ --body-desktop-line-height: 1.6;
1530
+ --text-lg-size: 27px;
1531
+ --text-lg-line-height: 1.4;
1532
+ --text-xl-size: 36px;
1533
+ --text-xl-line-height: 1.4;
1534
+ --text-xxl-size: 64px;
1535
+ --text-xxl-line-height: 1;
1536
+ }
1537
+
1538
+ .lsg-search-overlay {
1539
+ position: fixed;
1540
+ inset: 0;
1541
+ z-index: 200;
1542
+ display: flex;
1543
+ align-items: flex-start;
1544
+ justify-content: center;
1545
+ padding-top: 80px;
1546
+ background-color: rgba(0, 0, 0, 0.55);
1547
+ opacity: 0;
1548
+ visibility: hidden;
1549
+ transition: opacity 0.2s ease, visibility 0.2s ease;
1550
+ }
1551
+ .lsg-search-overlay--open {
1552
+ opacity: 1;
1553
+ visibility: visible;
1554
+ }
1555
+ .lsg-search-overlay__panel {
1556
+ width: 100%;
1557
+ max-width: 640px;
1558
+ margin: 0 24px;
1559
+ background: var(--lsg-color-white);
1560
+ border-radius: var(--lsg-radius-rounded);
1561
+ padding: 24px;
1562
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
1563
+ }
1564
+ .lsg-search-overlay__form {
1565
+ display: flex;
1566
+ align-items: center;
1567
+ gap: 12px;
1568
+ border-bottom: 2px solid var(--lsg-color-primary);
1569
+ padding-bottom: 12px;
1570
+ }
1571
+ .lsg-search-overlay__input {
1572
+ flex: 1;
1573
+ border: none;
1574
+ font-size: var(--lsg-size-body);
1575
+ font-family: var(--lsg-font-family-primary);
1576
+ color: var(--lsg-color-dark);
1577
+ background: transparent;
1578
+ }
1579
+ .lsg-search-overlay__input:focus {
1580
+ outline: none;
1581
+ }
1582
+ .lsg-search-overlay__input::-moz-placeholder {
1583
+ color: color-mix(in srgb, var(--lsg-color-secondary) 45%, var(--lsg-color-white));
1584
+ }
1585
+ .lsg-search-overlay__input::placeholder {
1586
+ color: color-mix(in srgb, var(--lsg-color-secondary) 45%, var(--lsg-color-white));
1587
+ }
1588
+ .lsg-search-overlay__submit {
1589
+ display: inline-flex;
1590
+ align-items: center;
1591
+ justify-content: center;
1592
+ background: none;
1593
+ border: none;
1594
+ cursor: pointer;
1595
+ color: var(--lsg-color-primary);
1596
+ padding: 8px;
1597
+ }
1598
+ .lsg-search-overlay__submit:focus-visible {
1599
+ outline: 2px solid var(--lsg-color-primary);
1600
+ outline-offset: 2px;
1601
+ border-radius: var(--lsg-radius-rounded);
1602
+ }
1603
+ .lsg-search-overlay__submit svg {
1604
+ width: 20px;
1605
+ height: 20px;
1606
+ }
1607
+ .lsg-search-overlay__close {
1608
+ display: inline-flex;
1609
+ align-items: center;
1610
+ justify-content: center;
1611
+ width: 32px;
1612
+ height: 32px;
1613
+ background: none;
1614
+ border: none;
1615
+ cursor: pointer;
1616
+ color: color-mix(in srgb, var(--lsg-color-secondary) 60%, var(--lsg-color-white));
1617
+ border-radius: 50%;
1618
+ transition: background-color 0.15s ease, color 0.15s ease;
1619
+ flex-shrink: 0;
1620
+ }
1621
+ .lsg-search-overlay__close:hover {
1622
+ background-color: color-mix(in srgb, var(--lsg-color-light) 70%, var(--lsg-color-white));
1623
+ color: var(--lsg-color-dark);
1624
+ }
1625
+ .lsg-search-overlay__close:focus-visible {
1626
+ outline: 2px solid var(--lsg-color-primary);
1627
+ outline-offset: 2px;
1628
+ }
1629
+ .lsg-search-overlay__close svg {
1630
+ width: 16px;
1631
+ height: 16px;
1632
+ }
1633
+ :root {
1634
+ --atlascopco-blue-1: #f5fbfc;
1635
+ --atlascopco-blue-3: #b8e0ec;
1636
+ --atlascopco-blue-5: #7ac6dc;
1637
+ --atlascopco-blue-7: #3daccc;
1638
+ --atlascopco-blue-9: #0092bc;
1639
+ --atlascopco-blue-11: #006f8f;
1640
+ --atlascopco-gray-1: #f8f9f9;
1641
+ --atlascopco-gray-3: #d1d4d7;
1642
+ --atlascopco-gray-5: #aab0b5;
1643
+ --atlascopco-gray-7: #828b92;
1644
+ --atlascopco-gray-9: #5b6770;
1645
+ --atlascopco-gray-11: #2f363a;
1646
+ --atlascopco-beige-1: #f5f2ef;
1647
+ --atlascopco-beige-2: #efebe6;
1648
+ --atlascopco-beige-3: #e7e0da;
1649
+ --atlascopco-beige-4: #dfd6ce;
1650
+ --atlascopco-blue: #0092bc;
1651
+ --atlascopco-blue-dark: #006f8f;
1652
+ --atlascopco-black: #000000;
1653
+ --atlascopco-white: #ffffff;
1654
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1655
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1656
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1657
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1658
+ --atlascopco-grey-100: #f8f9f9;
1659
+ --atlascopco-grey-200: #d1d4d7;
1660
+ --atlascopco-grey-300: #aab0b5;
1661
+ --atlascopco-grey-400: #828b92;
1662
+ --atlascopco-grey-500: #5b6770;
1663
+ --atlascopco-grey-600: #2f363a;
1664
+ --color-primary: #0092bc;
1665
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1666
+ --spacing-zero: 0px;
1667
+ --spacing-xxs: 4px;
1668
+ --spacing-xs: 8px;
1669
+ --spacing-sm: 12px;
1670
+ --spacing-md: 16px;
1671
+ --spacing-lg: 24px;
1672
+ --spacing-xl: 36px;
1673
+ --spacing-xxl: 48px;
1674
+ --spacing-3xl: 72px;
1675
+ --spacing-4xl: 96px;
1676
+ --h1-mobile-size: 32px;
1677
+ --h1-mobile-line-height: 1.2;
1678
+ --h2-mobile-size: 24px;
1679
+ --h2-mobile-line-height: 1.2;
1680
+ --h3-mobile-size: 18px;
1681
+ --h3-mobile-line-height: 1.6;
1682
+ --body-mobile-size: 14px;
1683
+ --body-mobile-line-height: 1.5;
1684
+ --h1-desktop-size: 55px;
1685
+ --h1-desktop-line-height: 1.15;
1686
+ --h2-desktop-size: 40px;
1687
+ --h2-desktop-line-height: 1.2;
1688
+ --h3-desktop-size: 32px;
1689
+ --h3-desktop-line-height: 1.2;
1690
+ --body-desktop-size: 18px;
1691
+ --body-desktop-line-height: 1.6;
1692
+ --text-lg-size: 27px;
1693
+ --text-lg-line-height: 1.4;
1694
+ --text-xl-size: 36px;
1695
+ --text-xl-line-height: 1.4;
1696
+ --text-xxl-size: 64px;
1697
+ --text-xxl-line-height: 1;
1698
+ }
1699
+
1700
+ .lsg-header {
1701
+ position: sticky;
1702
+ top: 0;
1703
+ z-index: 100;
1704
+ background: var(--lsg-color-white);
1705
+ border-bottom: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 18%, var(--lsg-color-white));
1706
+ }
1707
+ .lsg-header__inner {
1708
+ display: flex;
1709
+ align-items: center;
1710
+ gap: 16px;
1711
+ max-width: 1280px;
1712
+ margin: 0 auto;
1713
+ padding: 0 24px;
1714
+ height: 72px;
1715
+ }
1716
+ .lsg-header__brand {
1717
+ flex-shrink: 0;
1718
+ margin-right: 24px;
1719
+ }
1720
+ .lsg-header__nav {
1721
+ flex: 1;
1722
+ overflow: hidden;
1723
+ }
1724
+ .lsg-header__actions {
1725
+ display: flex;
1726
+ align-items: center;
1727
+ gap: 8px;
1728
+ margin-left: auto;
1729
+ flex-shrink: 0;
1730
+ }
1731
+ :root {
1732
+ --atlascopco-blue-1: #f5fbfc;
1733
+ --atlascopco-blue-3: #b8e0ec;
1734
+ --atlascopco-blue-5: #7ac6dc;
1735
+ --atlascopco-blue-7: #3daccc;
1736
+ --atlascopco-blue-9: #0092bc;
1737
+ --atlascopco-blue-11: #006f8f;
1738
+ --atlascopco-gray-1: #f8f9f9;
1739
+ --atlascopco-gray-3: #d1d4d7;
1740
+ --atlascopco-gray-5: #aab0b5;
1741
+ --atlascopco-gray-7: #828b92;
1742
+ --atlascopco-gray-9: #5b6770;
1743
+ --atlascopco-gray-11: #2f363a;
1744
+ --atlascopco-beige-1: #f5f2ef;
1745
+ --atlascopco-beige-2: #efebe6;
1746
+ --atlascopco-beige-3: #e7e0da;
1747
+ --atlascopco-beige-4: #dfd6ce;
1748
+ --atlascopco-blue: #0092bc;
1749
+ --atlascopco-blue-dark: #006f8f;
1750
+ --atlascopco-black: #000000;
1751
+ --atlascopco-white: #ffffff;
1752
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1753
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1754
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1755
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1756
+ --atlascopco-grey-100: #f8f9f9;
1757
+ --atlascopco-grey-200: #d1d4d7;
1758
+ --atlascopco-grey-300: #aab0b5;
1759
+ --atlascopco-grey-400: #828b92;
1760
+ --atlascopco-grey-500: #5b6770;
1761
+ --atlascopco-grey-600: #2f363a;
1762
+ --color-primary: #0092bc;
1763
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1764
+ --spacing-zero: 0px;
1765
+ --spacing-xxs: 4px;
1766
+ --spacing-xs: 8px;
1767
+ --spacing-sm: 12px;
1768
+ --spacing-md: 16px;
1769
+ --spacing-lg: 24px;
1770
+ --spacing-xl: 36px;
1771
+ --spacing-xxl: 48px;
1772
+ --spacing-3xl: 72px;
1773
+ --spacing-4xl: 96px;
1774
+ --h1-mobile-size: 32px;
1775
+ --h1-mobile-line-height: 1.2;
1776
+ --h2-mobile-size: 24px;
1777
+ --h2-mobile-line-height: 1.2;
1778
+ --h3-mobile-size: 18px;
1779
+ --h3-mobile-line-height: 1.6;
1780
+ --body-mobile-size: 14px;
1781
+ --body-mobile-line-height: 1.5;
1782
+ --h1-desktop-size: 55px;
1783
+ --h1-desktop-line-height: 1.15;
1784
+ --h2-desktop-size: 40px;
1785
+ --h2-desktop-line-height: 1.2;
1786
+ --h3-desktop-size: 32px;
1787
+ --h3-desktop-line-height: 1.2;
1788
+ --body-desktop-size: 18px;
1789
+ --body-desktop-line-height: 1.6;
1790
+ --text-lg-size: 27px;
1791
+ --text-lg-line-height: 1.4;
1792
+ --text-xl-size: 36px;
1793
+ --text-xl-line-height: 1.4;
1794
+ --text-xxl-size: 64px;
1795
+ --text-xxl-line-height: 1;
1796
+ }
1797
+
1798
+ .lsg-quick-links__heading {
1799
+ font-size: 0.8125rem;
1800
+ font-weight: 700;
1801
+ letter-spacing: 0.08em;
1802
+ text-transform: uppercase;
1803
+ color: color-mix(in srgb, var(--lsg-color-secondary) 38%, var(--lsg-color-white));
1804
+ margin: 0 0 16px;
1805
+ }
1806
+ .lsg-quick-links__list {
1807
+ list-style: none;
1808
+ padding: 0;
1809
+ margin: 0;
1810
+ display: flex;
1811
+ flex-direction: column;
1812
+ gap: 8px;
1813
+ }
1814
+ .lsg-quick-links__link {
1815
+ font-size: 0.9375rem;
1816
+ color: color-mix(in srgb, var(--lsg-color-secondary) 30%, var(--lsg-color-white));
1817
+ text-decoration: none;
1818
+ transition: color 0.15s ease;
1819
+ }
1820
+ .lsg-quick-links__link:hover, .lsg-quick-links__link:focus-visible {
1821
+ color: var(--lsg-color-white);
1822
+ outline: none;
1823
+ }
1824
+ .lsg-quick-links__link:focus-visible {
1825
+ text-decoration: underline;
1826
+ }
1827
+ :root {
1828
+ --atlascopco-blue-1: #f5fbfc;
1829
+ --atlascopco-blue-3: #b8e0ec;
1830
+ --atlascopco-blue-5: #7ac6dc;
1831
+ --atlascopco-blue-7: #3daccc;
1832
+ --atlascopco-blue-9: #0092bc;
1833
+ --atlascopco-blue-11: #006f8f;
1834
+ --atlascopco-gray-1: #f8f9f9;
1835
+ --atlascopco-gray-3: #d1d4d7;
1836
+ --atlascopco-gray-5: #aab0b5;
1837
+ --atlascopco-gray-7: #828b92;
1838
+ --atlascopco-gray-9: #5b6770;
1839
+ --atlascopco-gray-11: #2f363a;
1840
+ --atlascopco-beige-1: #f5f2ef;
1841
+ --atlascopco-beige-2: #efebe6;
1842
+ --atlascopco-beige-3: #e7e0da;
1843
+ --atlascopco-beige-4: #dfd6ce;
1844
+ --atlascopco-blue: #0092bc;
1845
+ --atlascopco-blue-dark: #006f8f;
1846
+ --atlascopco-black: #000000;
1847
+ --atlascopco-white: #ffffff;
1848
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1849
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1850
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1851
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1852
+ --atlascopco-grey-100: #f8f9f9;
1853
+ --atlascopco-grey-200: #d1d4d7;
1854
+ --atlascopco-grey-300: #aab0b5;
1855
+ --atlascopco-grey-400: #828b92;
1856
+ --atlascopco-grey-500: #5b6770;
1857
+ --atlascopco-grey-600: #2f363a;
1858
+ --color-primary: #0092bc;
1859
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1860
+ --spacing-zero: 0px;
1861
+ --spacing-xxs: 4px;
1862
+ --spacing-xs: 8px;
1863
+ --spacing-sm: 12px;
1864
+ --spacing-md: 16px;
1865
+ --spacing-lg: 24px;
1866
+ --spacing-xl: 36px;
1867
+ --spacing-xxl: 48px;
1868
+ --spacing-3xl: 72px;
1869
+ --spacing-4xl: 96px;
1870
+ --h1-mobile-size: 32px;
1871
+ --h1-mobile-line-height: 1.2;
1872
+ --h2-mobile-size: 24px;
1873
+ --h2-mobile-line-height: 1.2;
1874
+ --h3-mobile-size: 18px;
1875
+ --h3-mobile-line-height: 1.6;
1876
+ --body-mobile-size: 14px;
1877
+ --body-mobile-line-height: 1.5;
1878
+ --h1-desktop-size: 55px;
1879
+ --h1-desktop-line-height: 1.15;
1880
+ --h2-desktop-size: 40px;
1881
+ --h2-desktop-line-height: 1.2;
1882
+ --h3-desktop-size: 32px;
1883
+ --h3-desktop-line-height: 1.2;
1884
+ --body-desktop-size: 18px;
1885
+ --body-desktop-line-height: 1.6;
1886
+ --text-lg-size: 27px;
1887
+ --text-lg-line-height: 1.4;
1888
+ --text-xl-size: 36px;
1889
+ --text-xl-line-height: 1.4;
1890
+ --text-xxl-size: 64px;
1891
+ --text-xxl-line-height: 1;
1892
+ }
1893
+
1894
+ .lsg-social-icons {
1895
+ display: flex;
1896
+ align-items: center;
1897
+ gap: 12px;
1898
+ list-style: none;
1899
+ padding: 0;
1900
+ margin: 0;
1901
+ }
1902
+ .lsg-social-icons__link {
1903
+ display: inline-flex;
1904
+ align-items: center;
1905
+ justify-content: center;
1906
+ width: 36px;
1907
+ height: 36px;
1908
+ color: color-mix(in srgb, var(--lsg-color-secondary) 38%, var(--lsg-color-white));
1909
+ border-radius: 50%;
1910
+ border: 1px solid color-mix(in srgb, var(--lsg-color-secondary) 52%, var(--lsg-color-white));
1911
+ transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
1912
+ }
1913
+ .lsg-social-icons__link:hover, .lsg-social-icons__link:focus-visible {
1914
+ color: var(--lsg-color-white);
1915
+ border-color: var(--lsg-color-white);
1916
+ background-color: rgba(255, 255, 255, 0.1);
1917
+ }
1918
+ .lsg-social-icons__link:focus-visible {
1919
+ outline: 2px solid color-mix(in srgb, var(--lsg-color-primary) 35%, var(--lsg-color-white));
1920
+ outline-offset: 2px;
1921
+ }
1922
+ .lsg-social-icons__link svg {
1923
+ width: 16px;
1924
+ height: 16px;
1925
+ pointer-events: none;
1926
+ fill: currentColor;
1927
+ }
1928
+ :root {
1929
+ --atlascopco-blue-1: #f5fbfc;
1930
+ --atlascopco-blue-3: #b8e0ec;
1931
+ --atlascopco-blue-5: #7ac6dc;
1932
+ --atlascopco-blue-7: #3daccc;
1933
+ --atlascopco-blue-9: #0092bc;
1934
+ --atlascopco-blue-11: #006f8f;
1935
+ --atlascopco-gray-1: #f8f9f9;
1936
+ --atlascopco-gray-3: #d1d4d7;
1937
+ --atlascopco-gray-5: #aab0b5;
1938
+ --atlascopco-gray-7: #828b92;
1939
+ --atlascopco-gray-9: #5b6770;
1940
+ --atlascopco-gray-11: #2f363a;
1941
+ --atlascopco-beige-1: #f5f2ef;
1942
+ --atlascopco-beige-2: #efebe6;
1943
+ --atlascopco-beige-3: #e7e0da;
1944
+ --atlascopco-beige-4: #dfd6ce;
1945
+ --atlascopco-blue: #0092bc;
1946
+ --atlascopco-blue-dark: #006f8f;
1947
+ --atlascopco-black: #000000;
1948
+ --atlascopco-white: #ffffff;
1949
+ --atlascopco-gradient-blue: linear-gradient(135deg, #0092bc 0%, #006f8f 100%);
1950
+ --atlascopco-gradient-gray: linear-gradient(135deg, #f8f9f9 0%, #aab0b5 100%);
1951
+ --atlascopco-gradient-beige: linear-gradient(135deg, #f5f2ef 0%, #e7e0da 100%);
1952
+ --atlascopco-gradient-dark: linear-gradient(135deg, #5b6770 0%, #2f363a 100%);
1953
+ --atlascopco-grey-100: #f8f9f9;
1954
+ --atlascopco-grey-200: #d1d4d7;
1955
+ --atlascopco-grey-300: #aab0b5;
1956
+ --atlascopco-grey-400: #828b92;
1957
+ --atlascopco-grey-500: #5b6770;
1958
+ --atlascopco-grey-600: #2f363a;
1959
+ --color-primary: #0092bc;
1960
+ --font-family-base: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
1961
+ --spacing-zero: 0px;
1962
+ --spacing-xxs: 4px;
1963
+ --spacing-xs: 8px;
1964
+ --spacing-sm: 12px;
1965
+ --spacing-md: 16px;
1966
+ --spacing-lg: 24px;
1967
+ --spacing-xl: 36px;
1968
+ --spacing-xxl: 48px;
1969
+ --spacing-3xl: 72px;
1970
+ --spacing-4xl: 96px;
1971
+ --h1-mobile-size: 32px;
1972
+ --h1-mobile-line-height: 1.2;
1973
+ --h2-mobile-size: 24px;
1974
+ --h2-mobile-line-height: 1.2;
1975
+ --h3-mobile-size: 18px;
1976
+ --h3-mobile-line-height: 1.6;
1977
+ --body-mobile-size: 14px;
1978
+ --body-mobile-line-height: 1.5;
1979
+ --h1-desktop-size: 55px;
1980
+ --h1-desktop-line-height: 1.15;
1981
+ --h2-desktop-size: 40px;
1982
+ --h2-desktop-line-height: 1.2;
1983
+ --h3-desktop-size: 32px;
1984
+ --h3-desktop-line-height: 1.2;
1985
+ --body-desktop-size: 18px;
1986
+ --body-desktop-line-height: 1.6;
1987
+ --text-lg-size: 27px;
1988
+ --text-lg-line-height: 1.4;
1989
+ --text-xl-size: 36px;
1990
+ --text-xl-line-height: 1.4;
1991
+ --text-xxl-size: 64px;
1992
+ --text-xxl-line-height: 1;
1993
+ }
1994
+
1995
+ .lsg-footer {
1996
+ background-color: var(--lsg-color-dark);
1997
+ color: var(--lsg-color-white);
1998
+ }
1999
+ .lsg-footer__inner {
2000
+ max-width: 1280px;
2001
+ margin: 0 auto;
2002
+ padding: 72px 24px;
2003
+ display: grid;
2004
+ grid-template-columns: 220px 1fr;
2005
+ gap: 72px;
2006
+ }
2007
+ @media (max-width: 768px) {
2008
+ .lsg-footer__inner {
2009
+ grid-template-columns: 1fr;
2010
+ gap: 36px;
2011
+ }
2012
+ }
2013
+ .lsg-footer__brand {
2014
+ display: flex;
2015
+ flex-direction: column;
2016
+ gap: 16px;
2017
+ }
2018
+ .lsg-footer__tagline {
2019
+ font-size: 0.9375rem;
2020
+ color: color-mix(in srgb, var(--lsg-color-secondary) 38%, var(--lsg-color-white));
2021
+ line-height: 1.6;
2022
+ margin: 0;
2023
+ }
2024
+ .lsg-footer__nav {
2025
+ display: grid;
2026
+ grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
2027
+ gap: 36px;
2028
+ }
2029
+ .lsg-footer__bottom {
2030
+ max-width: 1280px;
2031
+ margin: 0 auto;
2032
+ padding: 16px 24px;
2033
+ border-top: 1px solid var(--lsg-color-secondary);
2034
+ display: flex;
2035
+ align-items: center;
2036
+ justify-content: space-between;
2037
+ gap: 16px;
2038
+ flex-wrap: wrap;
2039
+ }
2040
+ .lsg-footer__copyright {
2041
+ font-size: 0.8125rem;
2042
+ color: color-mix(in srgb, var(--lsg-color-secondary) 56%, var(--lsg-color-white));
2043
+ margin: 0;
2044
+ }
2045
+ .lsg-footer .lsg-logo__text {
2046
+ color: var(--lsg-color-white);
2047
+ }
2048
+ .lsg-footer .lsg-logo__image {
2049
+ filter: brightness(0) invert(1);
2050
+ }