@oslokommune/punkt-css 16.26.2 → 17.0.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/CHANGELOG.md +111 -0
  2. package/dist/css/components/accordion.css +27 -5
  3. package/dist/css/components/accordion.min.css +1 -1
  4. package/dist/css/components/alert.css +37 -9
  5. package/dist/css/components/alert.min.css +1 -1
  6. package/dist/css/components/calendar.css +4 -0
  7. package/dist/css/components/calendar.min.css +1 -1
  8. package/dist/css/components/combobox.css +82 -0
  9. package/dist/css/components/combobox.min.css +1 -1
  10. package/dist/css/components/datepicker.css +82 -3
  11. package/dist/css/components/datepicker.min.css +1 -1
  12. package/dist/css/components/footer.css +232 -108
  13. package/dist/css/components/footer.min.css +1 -1
  14. package/dist/css/components/header-global.css +287 -0
  15. package/dist/css/components/header-global.min.css +1 -0
  16. package/dist/css/components/header-menu.css +364 -123
  17. package/dist/css/components/header-menu.min.css +1 -1
  18. package/dist/css/components/header-service-mobile.css +71 -22
  19. package/dist/css/components/header-service-mobile.min.css +1 -1
  20. package/dist/css/components/header-service.css +68 -14
  21. package/dist/css/components/header-service.min.css +1 -1
  22. package/dist/css/components/header-shared.css +49 -0
  23. package/dist/css/components/header-shared.min.css +0 -0
  24. package/dist/css/components/inputwrapper.css +59 -5
  25. package/dist/css/components/inputwrapper.min.css +1 -1
  26. package/dist/css/components/modal.css +0 -5
  27. package/dist/css/components/modal.min.css +1 -1
  28. package/dist/css/components/searchinput.css +71 -2
  29. package/dist/css/components/searchinput.min.css +1 -1
  30. package/dist/css/components/textarea.css +41 -0
  31. package/dist/css/components/textarea.min.css +1 -0
  32. package/dist/css/components/textinput.css +126 -6
  33. package/dist/css/components/textinput.min.css +1 -1
  34. package/dist/css/components/timepicker.css +133 -38
  35. package/dist/css/components/timepicker.min.css +1 -1
  36. package/dist/css/elements/button.css +20 -4
  37. package/dist/css/elements/button.min.css +1 -1
  38. package/dist/css/elements/checkbox-radio.css +3 -3
  39. package/dist/css/elements/checkbox-radio.min.css +1 -1
  40. package/dist/css/elements/input.css +121 -6
  41. package/dist/css/elements/input.min.css +1 -1
  42. package/dist/css/elements/select.css +137 -9
  43. package/dist/css/elements/select.min.css +1 -1
  44. package/dist/css/pkt-base.css +434 -1
  45. package/dist/css/pkt-base.min.css +1 -1
  46. package/dist/css/pkt-components.css +1595 -348
  47. package/dist/css/pkt-components.min.css +1 -1
  48. package/dist/css/pkt-docs.css +2077 -364
  49. package/dist/css/pkt-docs.min.css +1 -1
  50. package/dist/css/pkt-elements.css +160 -16
  51. package/dist/css/pkt-elements.min.css +1 -1
  52. package/dist/css/pkt.css +2077 -364
  53. package/dist/css/pkt.min.css +1 -1
  54. package/dist/scss/abstracts/variables/_index.scss +1 -1
  55. package/dist/scss/abstracts/variables/_spacing.scss +1 -0
  56. package/dist/scss/components/_accordion.scss +7 -11
  57. package/dist/scss/components/_alert.scss +34 -11
  58. package/dist/scss/components/_calendar.scss +3 -0
  59. package/dist/scss/components/_combobox.scss +74 -0
  60. package/dist/scss/components/_datepicker.scss +75 -8
  61. package/dist/scss/components/_footer.scss +149 -123
  62. package/dist/scss/components/_header-global.scss +192 -0
  63. package/dist/scss/components/_header-menu.scss +30 -31
  64. package/dist/scss/components/_header-service-mobile.scss +4 -28
  65. package/dist/scss/components/_header-service.scss +4 -21
  66. package/dist/scss/components/_header-shared.scss +190 -0
  67. package/dist/scss/components/_index.scss +2 -0
  68. package/dist/scss/components/_inputwrapper.scss +66 -10
  69. package/dist/scss/components/_modal.scss +1 -5
  70. package/dist/scss/components/_searchinput.scss +58 -2
  71. package/dist/scss/components/_textarea.scss +48 -0
  72. package/dist/scss/components/_timepicker.scss +95 -34
  73. package/dist/scss/elements/_button.scss +12 -3
  74. package/dist/scss/elements/_input.scss +141 -7
  75. package/package.json +3 -3
@@ -1,164 +1,288 @@
1
+ @charset "UTF-8";
1
2
  /*
2
- * Footer element
3
+ * Footer: pkt-footer (sekundær + global) og pkt-footer-simple (kompakt + global)
4
+ *
5
+ * --pkt-footer-bg bakgrunn (default: grå sekundær)
6
+ * --pkt-footer-fg tekstfarge
7
+ * --pkt-footer-link-hover hover-farge på lenker (default: text-action-active)
3
8
  */
4
- .pkt-footer {
5
- padding: 2.5rem 1.5rem;
6
- background-color: var(--pkt-color-surface-strong-dark-blue);
7
- color: var(--pkt-color-text-body-default);
8
- display: flex;
9
- align-items: center;
9
+ .pkt-footer,
10
+ .pkt-footer-simple {
11
+ display: block;
12
+ width: 100%;
13
+ container-type: inline-size;
14
+ container-name: pkt-footer;
15
+ }
16
+
17
+ .pkt-footer__band {
18
+ background-color: var(--pkt-footer-bg, var(--pkt-color-background-subtle, #f9f9f9));
19
+ color: var(--pkt-footer-fg, var(--pkt-color-text-body-default, #2a2859));
10
20
  letter-spacing: -0.2px;
11
21
  font-weight: 300;
12
- font-size: 1.125rem;
13
- line-height: 1.75rem;
22
+ font-size: 1rem;
23
+ line-height: 1.5rem;
14
24
  }
15
- @media screen and (min-width: 80rem) {
16
- .pkt-footer {
17
- padding: 3.5rem 1.5rem;
18
- justify-content: center;
25
+ @supports not (container-type: inline-size) {
26
+ @media screen and (min-width: 64rem) {
27
+ .pkt-footer__band {
28
+ letter-spacing: -0.2px;
29
+ font-weight: 300;
30
+ font-size: 1.125rem;
31
+ line-height: 1.75rem;
32
+ }
19
33
  }
20
34
  }
21
- .pkt-footer__container {
22
- max-width: 80rem;
35
+ @supports (container-type: inline-size) {
36
+ @container pkt-footer (min-width: 64rem) {
37
+ .pkt-footer__band {
38
+ letter-spacing: -0.2px;
39
+ font-weight: 300;
40
+ font-size: 1.125rem;
41
+ line-height: 1.75rem;
42
+ }
43
+ }
44
+ }
45
+ .pkt-footer__band--global {
46
+ --pkt-footer-bg: var(--pkt-color-surface-strong-dark-blue, #2a2859);
47
+ --pkt-footer-fg: var(--pkt-color-text-body-light, #fff);
48
+ --pkt-footer-link-hover: var(--pkt-color-brand-blue-1000, #6fe9ff);
49
+ }
50
+ .pkt-footer__band a {
51
+ color: inherit;
52
+ text-decoration: underline;
53
+ text-underline-position: from-font;
23
54
  }
24
- .pkt-footer__title {
25
- margin-bottom: 2rem;
26
- margin-top: 0;
27
- color: var(--pkt-color-text-body-default);
55
+ .pkt-footer__band a:hover {
56
+ color: var(--pkt-footer-link-hover, var(--pkt-color-text-action-active, currentColor)) !important;
57
+ }
58
+ .pkt-footer__band h2 {
59
+ margin: 0 0 1rem;
60
+ color: inherit;
28
61
  letter-spacing: -0.2px;
29
62
  font-weight: 500;
30
- font-size: 1.5rem;
31
- line-height: 2.25rem;
63
+ font-size: 1.25rem;
64
+ line-height: 2rem;
32
65
  }
33
- .pkt-footer__text:last-child {
34
- margin-bottom: 0;
35
- margin-top: 2rem;
66
+ @supports not (container-type: inline-size) {
67
+ @media screen and (min-width: 48rem) {
68
+ .pkt-footer__band h2 {
69
+ letter-spacing: -0.2px;
70
+ font-weight: 500;
71
+ font-size: 1.375rem;
72
+ line-height: 2.125rem;
73
+ }
74
+ }
36
75
  }
37
- .pkt-footer__text:not(:last-child) {
38
- margin-bottom: 2rem;
39
- margin-top: 0;
76
+ @supports (container-type: inline-size) {
77
+ @container pkt-footer (min-width: 48rem) {
78
+ .pkt-footer__band h2 {
79
+ letter-spacing: -0.2px;
80
+ font-weight: 500;
81
+ font-size: 1.375rem;
82
+ line-height: 2.125rem;
83
+ }
84
+ }
40
85
  }
41
- .pkt-footer__list {
42
- padding: 0;
43
- margin: 0;
44
- list-style: none;
86
+ @supports not (container-type: inline-size) {
87
+ @media screen and (min-width: 64rem) {
88
+ .pkt-footer__band h2 {
89
+ letter-spacing: -0.2px;
90
+ font-weight: 500;
91
+ font-size: 1.5rem;
92
+ line-height: 2.25rem;
93
+ }
94
+ }
45
95
  }
46
- .pkt-footer__list-item {
47
- word-break: break-word;
96
+ @supports (container-type: inline-size) {
97
+ @container pkt-footer (min-width: 64rem) {
98
+ .pkt-footer__band h2 {
99
+ letter-spacing: -0.2px;
100
+ font-weight: 500;
101
+ font-size: 1.5rem;
102
+ line-height: 2.25rem;
103
+ }
104
+ }
105
+ }
106
+ .pkt-footer__band p {
107
+ margin: 0 0 1rem;
48
108
  }
49
- .pkt-footer__list-item:not(:last-child) {
50
- margin-bottom: 1rem;
109
+ .pkt-footer__inner {
110
+ max-width: 75rem;
111
+ margin: 0 auto;
112
+ padding: 3.25rem 1rem;
51
113
  }
52
- @media screen and (min-width: 80rem) {
53
- .pkt-footer__list-item {
54
- margin-bottom: 0;
114
+ @supports not (container-type: inline-size) {
115
+ @media screen and (min-width: 48rem) {
116
+ .pkt-footer__inner {
117
+ padding: 3.25rem 2rem;
118
+ }
55
119
  }
56
120
  }
57
- .pkt-footer__link {
58
- display: flex;
59
- text-decoration: none !important;
121
+ @supports (container-type: inline-size) {
122
+ @container pkt-footer (min-width: 48rem) {
123
+ .pkt-footer__inner {
124
+ padding: 3.25rem 2rem;
125
+ }
126
+ }
60
127
  }
61
- .pkt-footer__link:hover .pkt-footer__link-icon {
62
- --fg-color: currentColor;
128
+ .pkt-footer__inner--compact {
129
+ padding-top: 2rem;
130
+ padding-bottom: 2rem;
63
131
  }
64
- .pkt-footer__link-icon {
65
- --fg-color: currentColor;
66
- width: 24px;
67
- height: 24px;
68
- margin-right: 0.5rem;
69
- flex-shrink: 0;
132
+ .pkt-footer__sections {
133
+ display: grid;
134
+ grid-template-columns: 1fr;
135
+ gap: 2rem;
136
+ }
137
+ @supports not (container-type: inline-size) {
138
+ @media screen and (min-width: 48rem) {
139
+ .pkt-footer__sections {
140
+ grid-template-columns: repeat(3, 1fr);
141
+ column-gap: 2rem;
142
+ row-gap: 3.25rem;
143
+ }
144
+ }
70
145
  }
71
- @media screen and (min-width: 80rem) {
72
- .pkt-footer__link-icon {
73
- margin-top: 0;
146
+ @supports (container-type: inline-size) {
147
+ @container pkt-footer (min-width: 48rem) {
148
+ .pkt-footer__sections {
149
+ grid-template-columns: repeat(3, 1fr);
150
+ column-gap: 2rem;
151
+ row-gap: 3.25rem;
152
+ }
74
153
  }
75
154
  }
76
- .pkt-footer__social {
155
+ .pkt-footer__link-list {
156
+ list-style: none;
157
+ margin: 0;
158
+ padding: 0;
159
+ display: flex;
160
+ flex-direction: column;
161
+ gap: 1rem;
162
+ }
163
+ .pkt-footer__link-list > li {
164
+ word-break: break-word;
165
+ }
166
+ .pkt-footer__link-domain {
167
+ white-space: nowrap;
168
+ }
169
+ .pkt-footer__bottom {
77
170
  display: flex;
78
- flex-direction: row;
79
171
  justify-content: space-between;
80
- align-items: flex-start;
172
+ align-items: center;
81
173
  gap: 2rem;
82
- margin-top: 2.5rem;
174
+ margin-top: 1rem;
83
175
  }
84
- .pkt-footer__social:hover .pkt-footer__link-icon {
85
- --fg-color: currentColor;
86
- }
87
- @media screen and (min-width: 80rem) {
88
- .pkt-footer__social {
89
- align-items: flex-end;
90
- justify-content: end;
176
+ @supports not (container-type: inline-size) {
177
+ @media screen and (min-width: 48rem) {
178
+ .pkt-footer__bottom {
179
+ grid-column: -2/-1;
180
+ margin-top: 0;
181
+ }
91
182
  }
92
183
  }
93
- @media screen and (min-width: 80rem) {
94
- .pkt-footer__social-language {
95
- justify-self: flex-start;
184
+ @supports (container-type: inline-size) {
185
+ @container pkt-footer (min-width: 48rem) {
186
+ .pkt-footer__bottom {
187
+ grid-column: -2/-1;
188
+ margin-top: 0;
189
+ }
96
190
  }
97
191
  }
98
- .pkt-footer__social-icon {
99
- --fg-color: currentColor;
100
- width: 24px;
101
- height: 24px;
192
+ .pkt-footer__sections + .pkt-footer__bottom {
193
+ margin-top: 2rem;
102
194
  }
103
- .pkt-footer__social-icon-link:not(:last-child) {
104
- margin-right: 1rem;
195
+ .pkt-footer__bottom-links {
196
+ list-style: none;
197
+ margin: 0;
198
+ padding: 0;
199
+ display: flex;
200
+ flex-wrap: wrap;
201
+ gap: 1rem 2rem;
105
202
  }
106
-
107
- .pkt-footer-simple {
108
- padding: 2rem 1.5rem;
109
- background-color: var(--pkt-color-surface-strong-dark-blue);
110
- color: var(--pkt-color-text-body-default);
203
+ .pkt-footer__some {
204
+ list-style: none;
205
+ margin: 0;
206
+ padding: 0;
111
207
  display: flex;
112
208
  align-items: center;
113
- letter-spacing: -0.2px;
114
- font-weight: 300;
115
- font-size: 1.125rem;
116
- line-height: 1.75rem;
209
+ gap: 1rem;
117
210
  }
118
- @media screen and (min-width: 80rem) {
119
- .pkt-footer-simple {
120
- justify-content: center;
211
+ @supports not (container-type: inline-size) {
212
+ @media screen and (min-width: 48rem) {
213
+ .pkt-footer__some {
214
+ gap: 1.5rem;
215
+ }
121
216
  }
122
217
  }
123
- .pkt-footer-simple__container {
124
- max-width: 80rem;
218
+ @supports (container-type: inline-size) {
219
+ @container pkt-footer (min-width: 48rem) {
220
+ .pkt-footer__some {
221
+ gap: 1.5rem;
222
+ }
223
+ }
224
+ }
225
+ .pkt-footer__some a {
226
+ display: inline-flex;
227
+ }
228
+ .pkt-footer__some a:has(.pkt-footer__some-icon) {
229
+ text-decoration: none;
230
+ }
231
+ .pkt-footer__some-icon {
232
+ --fg-color: currentColor;
233
+ width: 2rem;
234
+ height: 2rem;
125
235
  }
236
+ .pkt-footer__sections + .pkt-footer__consent {
237
+ margin-top: 2rem;
238
+ }
239
+
126
240
  .pkt-footer-simple__list {
127
- padding: 0;
128
- margin: 0;
129
241
  list-style: none;
242
+ margin: 0;
243
+ padding: 0;
244
+ display: flex;
245
+ flex-direction: column;
246
+ gap: 1rem;
130
247
  }
131
- @media screen and (min-width: 80rem) {
132
- .pkt-footer-simple__list-item {
133
- display: inline-flex;
248
+ @supports not (container-type: inline-size) {
249
+ @media screen and (min-width: 48rem) {
250
+ .pkt-footer-simple__list {
251
+ flex-direction: row;
252
+ flex-wrap: wrap;
253
+ justify-content: center;
254
+ gap: 1rem 2rem;
255
+ }
134
256
  }
135
257
  }
136
- .pkt-footer-simple__list-item:not(:last-child) {
137
- margin-bottom: 1rem;
138
- }
139
- @media screen and (min-width: 80rem) {
140
- .pkt-footer-simple__list-item:not(:last-child) {
141
- margin-bottom: 0;
142
- margin-right: 2rem;
258
+ @supports (container-type: inline-size) {
259
+ @container pkt-footer (min-width: 48rem) {
260
+ .pkt-footer-simple__list {
261
+ flex-direction: row;
262
+ flex-wrap: wrap;
263
+ justify-content: center;
264
+ gap: 1rem 2rem;
265
+ }
143
266
  }
144
267
  }
145
- .pkt-footer-simple__link {
146
- display: flex;
147
- text-decoration: none !important;
268
+ a.pkt-footer-simple__link {
269
+ display: inline-flex;
148
270
  align-items: flex-start;
271
+ gap: 0.5rem;
272
+ color: inherit;
273
+ text-decoration: none;
149
274
  }
150
- .pkt-footer-simple__link:hover .pkt-footer__link-icon {
151
- --fg-color: currentColor;
275
+ a.pkt-footer-simple__link:hover {
276
+ text-decoration: underline;
277
+ text-underline-position: from-font;
152
278
  }
279
+
153
280
  .pkt-footer-simple__link-icon {
154
281
  --fg-color: currentColor;
155
282
  width: 24px;
156
283
  height: 24px;
157
- margin-right: 0.5rem;
158
284
  flex-shrink: 0;
159
285
  }
160
- @media screen and (min-width: 80rem) {
161
- .pkt-footer-simple__link-icon {
162
- margin-top: 0;
163
- }
286
+ .pkt-footer-simple__link-domain {
287
+ white-space: nowrap;
164
288
  }
@@ -1 +1 @@
1
- .pkt-footer{padding:2.5rem 1.5rem;background-color:var(--pkt-color-surface-strong-dark-blue);color:var(--pkt-color-text-body-default);display:flex;align-items:center;letter-spacing:-0.2px;font-weight:300;font-size:1.125rem;line-height:1.75rem}@media screen and (min-width: 80rem){.pkt-footer{padding:3.5rem 1.5rem;justify-content:center}}.pkt-footer__container{max-width:80rem}.pkt-footer__title{margin-bottom:2rem;margin-top:0;color:var(--pkt-color-text-body-default);letter-spacing:-0.2px;font-weight:500;font-size:1.5rem;line-height:2.25rem}.pkt-footer__text:last-child{margin-bottom:0;margin-top:2rem}.pkt-footer__text:not(:last-child){margin-bottom:2rem;margin-top:0}.pkt-footer__list{padding:0;margin:0;list-style:none}.pkt-footer__list-item{word-break:break-word}.pkt-footer__list-item:not(:last-child){margin-bottom:1rem}@media screen and (min-width: 80rem){.pkt-footer__list-item{margin-bottom:0}}.pkt-footer__link{display:flex;text-decoration:none !important}.pkt-footer__link:hover .pkt-footer__link-icon{--fg-color: currentColor}.pkt-footer__link-icon{--fg-color: currentColor;width:24px;height:24px;margin-right:.5rem;flex-shrink:0}@media screen and (min-width: 80rem){.pkt-footer__link-icon{margin-top:0}}.pkt-footer__social{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start;gap:2rem;margin-top:2.5rem}.pkt-footer__social:hover .pkt-footer__link-icon{--fg-color: currentColor}@media screen and (min-width: 80rem){.pkt-footer__social{align-items:flex-end;justify-content:end}}@media screen and (min-width: 80rem){.pkt-footer__social-language{justify-self:flex-start}}.pkt-footer__social-icon{--fg-color: currentColor;width:24px;height:24px}.pkt-footer__social-icon-link:not(:last-child){margin-right:1rem}.pkt-footer-simple{padding:2rem 1.5rem;background-color:var(--pkt-color-surface-strong-dark-blue);color:var(--pkt-color-text-body-default);display:flex;align-items:center;letter-spacing:-0.2px;font-weight:300;font-size:1.125rem;line-height:1.75rem}@media screen and (min-width: 80rem){.pkt-footer-simple{justify-content:center}}.pkt-footer-simple__container{max-width:80rem}.pkt-footer-simple__list{padding:0;margin:0;list-style:none}@media screen and (min-width: 80rem){.pkt-footer-simple__list-item{display:inline-flex}}.pkt-footer-simple__list-item:not(:last-child){margin-bottom:1rem}@media screen and (min-width: 80rem){.pkt-footer-simple__list-item:not(:last-child){margin-bottom:0;margin-right:2rem}}.pkt-footer-simple__link{display:flex;text-decoration:none !important;align-items:flex-start}.pkt-footer-simple__link:hover .pkt-footer__link-icon{--fg-color: currentColor}.pkt-footer-simple__link-icon{--fg-color: currentColor;width:24px;height:24px;margin-right:.5rem;flex-shrink:0}@media screen and (min-width: 80rem){.pkt-footer-simple__link-icon{margin-top:0}}
1
+ .pkt-footer,.pkt-footer-simple{display:block;width:100%;container-type:inline-size;container-name:pkt-footer}.pkt-footer__band{background-color:var(--pkt-footer-bg, var(--pkt-color-background-subtle, #f9f9f9));color:var(--pkt-footer-fg, var(--pkt-color-text-body-default, #2a2859));letter-spacing:-0.2px;font-weight:300;font-size:1rem;line-height:1.5rem}@supports not (container-type: inline-size){@media screen and (min-width: 64rem){.pkt-footer__band{letter-spacing:-0.2px;font-weight:300;font-size:1.125rem;line-height:1.75rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 64rem){.pkt-footer__band{letter-spacing:-0.2px;font-weight:300;font-size:1.125rem;line-height:1.75rem}}}.pkt-footer__band--global{--pkt-footer-bg: var(--pkt-color-surface-strong-dark-blue, #2a2859);--pkt-footer-fg: var(--pkt-color-text-body-light, #fff);--pkt-footer-link-hover: var(--pkt-color-brand-blue-1000, #6fe9ff)}.pkt-footer__band a{color:inherit;text-decoration:underline;text-underline-position:from-font}.pkt-footer__band a:hover{color:var(--pkt-footer-link-hover, var(--pkt-color-text-action-active, currentColor)) !important}.pkt-footer__band h2{margin:0 0 1rem;color:inherit;letter-spacing:-0.2px;font-weight:500;font-size:1.25rem;line-height:2rem}@supports not (container-type: inline-size){@media screen and (min-width: 48rem){.pkt-footer__band h2{letter-spacing:-0.2px;font-weight:500;font-size:1.375rem;line-height:2.125rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 48rem){.pkt-footer__band h2{letter-spacing:-0.2px;font-weight:500;font-size:1.375rem;line-height:2.125rem}}}@supports not (container-type: inline-size){@media screen and (min-width: 64rem){.pkt-footer__band h2{letter-spacing:-0.2px;font-weight:500;font-size:1.5rem;line-height:2.25rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 64rem){.pkt-footer__band h2{letter-spacing:-0.2px;font-weight:500;font-size:1.5rem;line-height:2.25rem}}}.pkt-footer__band p{margin:0 0 1rem}.pkt-footer__inner{max-width:75rem;margin:0 auto;padding:3.25rem 1rem}@supports not (container-type: inline-size){@media screen and (min-width: 48rem){.pkt-footer__inner{padding:3.25rem 2rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 48rem){.pkt-footer__inner{padding:3.25rem 2rem}}}.pkt-footer__inner--compact{padding-top:2rem;padding-bottom:2rem}.pkt-footer__sections{display:grid;grid-template-columns:1fr;gap:2rem}@supports not (container-type: inline-size){@media screen and (min-width: 48rem){.pkt-footer__sections{grid-template-columns:repeat(3, 1fr);column-gap:2rem;row-gap:3.25rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 48rem){.pkt-footer__sections{grid-template-columns:repeat(3, 1fr);column-gap:2rem;row-gap:3.25rem}}}.pkt-footer__link-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1rem}.pkt-footer__link-list>li{word-break:break-word}.pkt-footer__link-domain{white-space:nowrap}.pkt-footer__bottom{display:flex;justify-content:space-between;align-items:center;gap:2rem;margin-top:1rem}@supports not (container-type: inline-size){@media screen and (min-width: 48rem){.pkt-footer__bottom{grid-column:-2/-1;margin-top:0}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 48rem){.pkt-footer__bottom{grid-column:-2/-1;margin-top:0}}}.pkt-footer__sections+.pkt-footer__bottom{margin-top:2rem}.pkt-footer__bottom-links{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:1rem 2rem}.pkt-footer__some{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:1rem}@supports not (container-type: inline-size){@media screen and (min-width: 48rem){.pkt-footer__some{gap:1.5rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 48rem){.pkt-footer__some{gap:1.5rem}}}.pkt-footer__some a{display:inline-flex}.pkt-footer__some a:has(.pkt-footer__some-icon){text-decoration:none}.pkt-footer__some-icon{--fg-color: currentColor;width:2rem;height:2rem}.pkt-footer__sections+.pkt-footer__consent{margin-top:2rem}.pkt-footer-simple__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1rem}@supports not (container-type: inline-size){@media screen and (min-width: 48rem){.pkt-footer-simple__list{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:1rem 2rem}}}@supports(container-type: inline-size){@container pkt-footer (min-width: 48rem){.pkt-footer-simple__list{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:1rem 2rem}}}a.pkt-footer-simple__link{display:inline-flex;align-items:flex-start;gap:.5rem;color:inherit;text-decoration:none}a.pkt-footer-simple__link:hover{text-decoration:underline;text-underline-position:from-font}.pkt-footer-simple__link-icon{--fg-color: currentColor;width:24px;height:24px;flex-shrink:0}.pkt-footer-simple__link-domain{white-space:nowrap}