@ndla/ui 55.0.13-alpha.0 → 55.0.15-alpha.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 (337) hide show
  1. package/dist/panda.buildinfo.json +142 -1
  2. package/dist/styles.css +597 -0
  3. package/es/Article/ArticleByline.js +7 -7
  4. package/es/Article/ArticleParagraph.js +11 -13
  5. package/es/AudioPlayer/AudioPlayer.js +1 -0
  6. package/es/CampaignBlock/CampaignBlock.js +103 -68
  7. package/es/Concept/Concept.js +69 -0
  8. package/es/ContactBlock/ContactBlock.js +17 -17
  9. package/es/ContentTypeBadge/ContentTypeBadgeNew.js +48 -0
  10. package/es/Embed/AudioEmbed.js +1 -2
  11. package/es/Embed/BrightcoveEmbed.js +13 -25
  12. package/es/Embed/ConceptEmbed.js +57 -301
  13. package/es/Embed/ConceptListEmbed.js +18 -24
  14. package/es/Embed/ContentLinkEmbed.js +10 -10
  15. package/es/Embed/CopyrightEmbed.js +3 -21
  16. package/es/Embed/ExternalEmbed.js +10 -18
  17. package/es/Embed/FootnoteEmbed.js +11 -8
  18. package/es/Embed/GlossEmbed.js +68 -0
  19. package/es/Embed/H5pEmbed.js +19 -19
  20. package/es/Embed/IframeEmbed.js +9 -6
  21. package/es/Embed/InlineTriggerButton.js +70 -0
  22. package/es/Embed/UnknownEmbed.js +9 -9
  23. package/es/Embed/UuDisclaimerEmbed.js +14 -25
  24. package/es/Embed/index.js +1 -3
  25. package/es/ErrorMessage/ErrorMessage.js +41 -22
  26. package/es/ErrorMessage/ErrorResourceAccessDenied.js +8 -6
  27. package/es/FactBox/FactBox.js +118 -47
  28. package/es/FileList/PdfFile.js +23 -5
  29. package/es/Gloss/Gloss.js +116 -86
  30. package/es/Gloss/GlossExample.js +49 -51
  31. package/es/LicenseByline/EmbedByline.js +143 -33
  32. package/es/LicenseByline/LicenseLink.js +16 -9
  33. package/es/LicenseByline/index.js +2 -2
  34. package/es/LinkBlock/LinkBlock.js +61 -33
  35. package/es/LinkBlock/LinkBlockSection.js +9 -6
  36. package/es/Logo/Logo.js +1 -30
  37. package/es/RelatedArticleList/RelatedArticleList.js +70 -87
  38. package/es/ResourceBox/ResourceBox.js +65 -37
  39. package/es/TagSelector/TagSelector.js +124 -131
  40. package/es/i18n/index.js +2 -1
  41. package/es/i18n/useComponentTranslations.js +83 -0
  42. package/es/index.js +4 -12
  43. package/es/locale/messages-en.js +30 -4
  44. package/es/locale/messages-nb.js +30 -4
  45. package/es/locale/messages-nn.js +30 -4
  46. package/es/locale/messages-se.js +30 -4
  47. package/es/locale/messages-sma.js +30 -4
  48. package/es/model/ContentType.js +3 -0
  49. package/es/styles.css +597 -0
  50. package/lib/Article/ArticleByline.js +8 -8
  51. package/lib/Article/ArticleParagraph.js +12 -14
  52. package/lib/AudioPlayer/AudioPlayer.js +1 -0
  53. package/lib/CampaignBlock/CampaignBlock.d.ts +2 -2
  54. package/lib/CampaignBlock/CampaignBlock.js +106 -68
  55. package/lib/Concept/Concept.d.ts +18 -0
  56. package/lib/Concept/Concept.js +75 -0
  57. package/lib/ContactBlock/ContactBlock.js +18 -18
  58. package/lib/ContentTypeBadge/ContentTypeBadgeNew.d.ts +17 -0
  59. package/lib/ContentTypeBadge/ContentTypeBadgeNew.js +56 -0
  60. package/lib/Embed/AudioEmbed.js +2 -3
  61. package/lib/Embed/BrightcoveEmbed.d.ts +1 -2
  62. package/lib/Embed/BrightcoveEmbed.js +16 -26
  63. package/lib/Embed/ConceptEmbed.d.ts +15 -21
  64. package/lib/Embed/ConceptEmbed.js +58 -301
  65. package/lib/Embed/ConceptListEmbed.js +21 -26
  66. package/lib/Embed/ContentLinkEmbed.js +10 -11
  67. package/lib/Embed/CopyrightEmbed.js +5 -22
  68. package/lib/Embed/ExternalEmbed.d.ts +1 -2
  69. package/lib/Embed/ExternalEmbed.js +13 -19
  70. package/lib/Embed/FootnoteEmbed.js +11 -9
  71. package/lib/Embed/GlossEmbed.d.ts +13 -0
  72. package/lib/Embed/GlossEmbed.js +76 -0
  73. package/lib/Embed/H5pEmbed.d.ts +1 -2
  74. package/lib/Embed/H5pEmbed.js +21 -19
  75. package/lib/Embed/IframeEmbed.d.ts +1 -2
  76. package/lib/Embed/IframeEmbed.js +11 -8
  77. package/lib/Embed/InlineTriggerButton.d.ts +11 -0
  78. package/lib/Embed/InlineTriggerButton.js +76 -0
  79. package/lib/Embed/UnknownEmbed.js +9 -10
  80. package/lib/Embed/UuDisclaimerEmbed.js +16 -26
  81. package/lib/Embed/index.d.ts +2 -3
  82. package/lib/Embed/index.js +2 -9
  83. package/lib/ErrorMessage/ErrorMessage.js +40 -23
  84. package/lib/ErrorMessage/ErrorResourceAccessDenied.js +7 -6
  85. package/lib/FactBox/FactBox.d.ts +0 -1
  86. package/lib/FactBox/FactBox.js +119 -46
  87. package/lib/FileList/PdfFile.js +23 -5
  88. package/lib/Gloss/Gloss.d.ts +10 -2
  89. package/lib/Gloss/Gloss.js +116 -85
  90. package/lib/Gloss/GlossExample.d.ts +3 -5
  91. package/lib/Gloss/GlossExample.js +49 -52
  92. package/lib/LicenseByline/EmbedByline.d.ts +2 -4
  93. package/lib/LicenseByline/EmbedByline.js +145 -35
  94. package/lib/LicenseByline/LicenseLink.d.ts +2 -2
  95. package/lib/LicenseByline/LicenseLink.js +16 -9
  96. package/lib/LicenseByline/index.d.ts +2 -2
  97. package/lib/LicenseByline/index.js +4 -5
  98. package/lib/LinkBlock/LinkBlock.js +62 -34
  99. package/lib/LinkBlock/LinkBlockSection.js +9 -7
  100. package/lib/Logo/Logo.d.ts +1 -3
  101. package/lib/Logo/Logo.js +2 -30
  102. package/lib/RelatedArticleList/RelatedArticleList.d.ts +4 -4
  103. package/lib/RelatedArticleList/RelatedArticleList.js +74 -90
  104. package/lib/ResourceBox/ResourceBox.js +64 -37
  105. package/lib/TagSelector/TagSelector.d.ts +27 -12
  106. package/lib/TagSelector/TagSelector.js +126 -131
  107. package/lib/i18n/index.d.ts +1 -0
  108. package/lib/i18n/index.js +20 -1
  109. package/lib/i18n/useComponentTranslations.d.ts +14 -0
  110. package/lib/i18n/useComponentTranslations.js +93 -0
  111. package/lib/index.d.ts +5 -15
  112. package/lib/index.js +70 -102
  113. package/lib/locale/messages-en.d.ts +26 -0
  114. package/lib/locale/messages-en.js +30 -4
  115. package/lib/locale/messages-nb.d.ts +26 -0
  116. package/lib/locale/messages-nb.js +30 -4
  117. package/lib/locale/messages-nn.d.ts +26 -0
  118. package/lib/locale/messages-nn.js +30 -4
  119. package/lib/locale/messages-se.d.ts +26 -0
  120. package/lib/locale/messages-se.js +30 -4
  121. package/lib/locale/messages-sma.d.ts +26 -0
  122. package/lib/locale/messages-sma.js +30 -4
  123. package/lib/model/ContentType.d.ts +3 -0
  124. package/lib/model/ContentType.js +4 -1
  125. package/lib/styles.css +597 -0
  126. package/package.json +11 -13
  127. package/src/Article/ArticleByline.tsx +1 -1
  128. package/src/Article/ArticleParagraph.tsx +11 -9
  129. package/src/AudioPlayer/AudioPlayer.tsx +1 -0
  130. package/src/CampaignBlock/CampaignBlock.tsx +92 -55
  131. package/src/Concept/Concept.stories.tsx +142 -0
  132. package/src/Concept/Concept.tsx +73 -0
  133. package/src/ContactBlock/ContactBlock.tsx +1 -1
  134. package/src/ContentTypeBadge/ContentTypeBadgeNew.stories.tsx +70 -0
  135. package/src/ContentTypeBadge/ContentTypeBadgeNew.tsx +69 -0
  136. package/src/Embed/AudioEmbed.tsx +2 -2
  137. package/src/Embed/BrightcoveEmbed.stories.tsx +0 -3
  138. package/src/Embed/BrightcoveEmbed.tsx +18 -20
  139. package/src/Embed/ConceptEmbed.stories.tsx +1 -105
  140. package/src/Embed/ConceptEmbed.tsx +60 -385
  141. package/src/Embed/ConceptListEmbed.tsx +20 -19
  142. package/src/Embed/ContentLinkEmbed.tsx +8 -10
  143. package/src/Embed/CopyrightEmbed.tsx +1 -11
  144. package/src/Embed/ExternalEmbed.tsx +14 -17
  145. package/src/Embed/FootnoteEmbed.stories.tsx +2 -5
  146. package/src/Embed/FootnoteEmbed.tsx +13 -16
  147. package/src/Embed/GlossEmbed.stories.tsx +140 -0
  148. package/src/Embed/GlossEmbed.tsx +64 -0
  149. package/src/Embed/H5pEmbed.tsx +22 -16
  150. package/src/Embed/IframeEmbed.tsx +12 -6
  151. package/src/Embed/InlineTriggerButton.tsx +72 -0
  152. package/src/Embed/UnknownEmbed.tsx +6 -7
  153. package/src/Embed/UuDisclaimerEmbed.stories.tsx +4 -4
  154. package/src/Embed/UuDisclaimerEmbed.tsx +17 -25
  155. package/src/Embed/index.ts +2 -3
  156. package/src/ErrorMessage/ErrorMessage.tsx +40 -29
  157. package/src/ErrorMessage/ErrorResourceAccessDenied.tsx +8 -6
  158. package/src/FactBox/FactBox.tsx +115 -115
  159. package/src/FactBox/Factbox.stories.tsx +43 -27
  160. package/src/FileList/FileList.stories.tsx +6 -1
  161. package/src/FileList/PdfFile.tsx +22 -5
  162. package/src/Gloss/Gloss.stories.tsx +107 -1
  163. package/src/Gloss/Gloss.tsx +143 -156
  164. package/src/Gloss/GlossExample.tsx +51 -77
  165. package/src/LicenseByline/EmbedByline.stories.tsx +9 -4
  166. package/src/LicenseByline/EmbedByline.tsx +139 -53
  167. package/src/LicenseByline/LicenseLink.tsx +15 -15
  168. package/src/LicenseByline/index.tsx +2 -2
  169. package/src/LinkBlock/LinkBlock.stories.tsx +8 -10
  170. package/src/LinkBlock/LinkBlock.tsx +54 -59
  171. package/src/LinkBlock/LinkBlockSection.tsx +9 -12
  172. package/src/Logo/Logo.stories.tsx +0 -1
  173. package/src/Logo/Logo.tsx +2 -30
  174. package/src/RelatedArticleList/RelatedArticleList.tsx +69 -88
  175. package/src/ResourceBox/ResourceBox.tsx +63 -59
  176. package/src/TagSelector/TagSelector.stories.tsx +92 -68
  177. package/src/TagSelector/TagSelector.tsx +161 -126
  178. package/src/i18n/index.ts +5 -0
  179. package/src/i18n/useComponentTranslations.ts +72 -0
  180. package/src/index.ts +23 -19
  181. package/src/locale/messages-en.ts +28 -2
  182. package/src/locale/messages-nb.ts +28 -2
  183. package/src/locale/messages-nn.ts +28 -2
  184. package/src/locale/messages-se.ts +28 -2
  185. package/src/locale/messages-sma.ts +28 -2
  186. package/src/model/ContentType.ts +3 -0
  187. package/es/DefinitionList/DefinitionDescription.js +0 -28
  188. package/es/DefinitionList/DefinitionTerm.js +0 -28
  189. package/es/DefinitionList/index.js +0 -10
  190. package/es/Embed/conceptComponents.js +0 -155
  191. package/es/ExpandableBox/ExpandableBox.js +0 -29
  192. package/es/ExpandableBox/index.js +0 -9
  193. package/es/Figure/Figure.js +0 -73
  194. package/es/Figure/index.js +0 -9
  195. package/es/FramedContent/FramedContent.js +0 -28
  196. package/es/FramedContent/index.js +0 -10
  197. package/es/Image/Image.js +0 -99
  198. package/es/Image/ImageLink.js +0 -39
  199. package/es/Image/index.js +0 -12
  200. package/es/LetterFilter/LetterFilter.js +0 -54
  201. package/es/LetterFilter/alphabet.js +0 -9
  202. package/es/LetterFilter/index.js +0 -10
  203. package/es/LicenseByline/LicenseDescription.js +0 -63
  204. package/es/List/OrderedList.js +0 -41
  205. package/es/List/UnOrderedList.js +0 -28
  206. package/es/List/index.js +0 -10
  207. package/es/Notion/Notion.js +0 -76
  208. package/es/Notion/NotionImage.js +0 -46
  209. package/es/Notion/index.js +0 -9
  210. package/es/Table/Table.js +0 -141
  211. package/es/Table/index.js +0 -11
  212. package/es/TagSelector/Control.js +0 -28
  213. package/es/TagSelector/DropdownIndicator.js +0 -60
  214. package/es/TagSelector/Input.js +0 -22
  215. package/es/TagSelector/Menu.js +0 -27
  216. package/es/TagSelector/MenuList.js +0 -28
  217. package/es/TagSelector/Option.js +0 -60
  218. package/es/TagSelector/SelectContainer.js +0 -27
  219. package/es/TagSelector/ValueButton.js +0 -53
  220. package/es/TagSelector/ariaMessages.js +0 -94
  221. package/es/TagSelector/index.js +0 -10
  222. package/es/TagSelector/types.js +0 -1
  223. package/lib/DefinitionList/DefinitionDescription.d.ts +0 -10
  224. package/lib/DefinitionList/DefinitionDescription.js +0 -35
  225. package/lib/DefinitionList/DefinitionTerm.d.ts +0 -10
  226. package/lib/DefinitionList/DefinitionTerm.js +0 -35
  227. package/lib/DefinitionList/index.d.ts +0 -9
  228. package/lib/DefinitionList/index.js +0 -20
  229. package/lib/Embed/conceptComponents.d.ts +0 -40
  230. package/lib/Embed/conceptComponents.js +0 -163
  231. package/lib/ExpandableBox/ExpandableBox.d.ts +0 -15
  232. package/lib/ExpandableBox/ExpandableBox.js +0 -37
  233. package/lib/ExpandableBox/index.d.ts +0 -8
  234. package/lib/ExpandableBox/index.js +0 -18
  235. package/lib/Figure/Figure.d.ts +0 -16
  236. package/lib/Figure/Figure.js +0 -81
  237. package/lib/Figure/index.d.ts +0 -9
  238. package/lib/Figure/index.js +0 -13
  239. package/lib/FramedContent/FramedContent.d.ts +0 -12
  240. package/lib/FramedContent/FramedContent.js +0 -35
  241. package/lib/FramedContent/index.d.ts +0 -9
  242. package/lib/FramedContent/index.js +0 -16
  243. package/lib/Image/Image.d.ts +0 -38
  244. package/lib/Image/Image.js +0 -105
  245. package/lib/Image/ImageLink.d.ts +0 -18
  246. package/lib/Image/ImageLink.js +0 -44
  247. package/lib/Image/index.d.ts +0 -12
  248. package/lib/Image/index.js +0 -30
  249. package/lib/LetterFilter/LetterFilter.d.ts +0 -14
  250. package/lib/LetterFilter/LetterFilter.js +0 -61
  251. package/lib/LetterFilter/alphabet.d.ts +0 -8
  252. package/lib/LetterFilter/alphabet.js +0 -15
  253. package/lib/LetterFilter/index.d.ts +0 -9
  254. package/lib/LetterFilter/index.js +0 -16
  255. package/lib/LicenseByline/LicenseDescription.d.ts +0 -15
  256. package/lib/LicenseByline/LicenseDescription.js +0 -70
  257. package/lib/List/OrderedList.d.ts +0 -16
  258. package/lib/List/OrderedList.js +0 -48
  259. package/lib/List/UnOrderedList.d.ts +0 -10
  260. package/lib/List/UnOrderedList.js +0 -35
  261. package/lib/List/index.d.ts +0 -9
  262. package/lib/List/index.js +0 -20
  263. package/lib/Notion/Notion.d.ts +0 -20
  264. package/lib/Notion/Notion.js +0 -82
  265. package/lib/Notion/NotionImage.d.ts +0 -13
  266. package/lib/Notion/NotionImage.js +0 -54
  267. package/lib/Notion/index.d.ts +0 -8
  268. package/lib/Notion/index.js +0 -13
  269. package/lib/Table/Table.d.ts +0 -19
  270. package/lib/Table/Table.js +0 -145
  271. package/lib/Table/index.d.ts +0 -10
  272. package/lib/Table/index.js +0 -23
  273. package/lib/TagSelector/Control.d.ts +0 -11
  274. package/lib/TagSelector/Control.js +0 -35
  275. package/lib/TagSelector/DropdownIndicator.d.ts +0 -11
  276. package/lib/TagSelector/DropdownIndicator.js +0 -64
  277. package/lib/TagSelector/Input.d.ts +0 -12
  278. package/lib/TagSelector/Input.js +0 -29
  279. package/lib/TagSelector/Menu.d.ts +0 -12
  280. package/lib/TagSelector/Menu.js +0 -34
  281. package/lib/TagSelector/MenuList.d.ts +0 -16
  282. package/lib/TagSelector/MenuList.js +0 -35
  283. package/lib/TagSelector/Option.d.ts +0 -12
  284. package/lib/TagSelector/Option.js +0 -67
  285. package/lib/TagSelector/SelectContainer.d.ts +0 -11
  286. package/lib/TagSelector/SelectContainer.js +0 -34
  287. package/lib/TagSelector/ValueButton.d.ts +0 -20
  288. package/lib/TagSelector/ValueButton.js +0 -60
  289. package/lib/TagSelector/ariaMessages.d.ts +0 -16
  290. package/lib/TagSelector/ariaMessages.js +0 -101
  291. package/lib/TagSelector/index.d.ts +0 -11
  292. package/lib/TagSelector/index.js +0 -13
  293. package/lib/TagSelector/types.d.ts +0 -11
  294. package/lib/TagSelector/types.js +0 -5
  295. package/src/DefinitionList/DefinitionDescription.tsx +0 -26
  296. package/src/DefinitionList/DefinitionTerm.tsx +0 -26
  297. package/src/DefinitionList/index.tsx +0 -10
  298. package/src/Embed/conceptComponents.tsx +0 -293
  299. package/src/ExpandableBox/ExpandableBox.stories.tsx +0 -41
  300. package/src/ExpandableBox/ExpandableBox.tsx +0 -23
  301. package/src/ExpandableBox/index.ts +0 -9
  302. package/src/Figure/Figure.tsx +0 -167
  303. package/src/Figure/index.ts +0 -11
  304. package/src/FramedContent/FramedContent.stories.tsx +0 -152
  305. package/src/FramedContent/FramedContent.tsx +0 -26
  306. package/src/FramedContent/index.ts +0 -10
  307. package/src/Image/Image.stories.tsx +0 -61
  308. package/src/Image/Image.tsx +0 -147
  309. package/src/Image/ImageLink.tsx +0 -37
  310. package/src/Image/index.ts +0 -14
  311. package/src/LetterFilter/LetterFilter.stories.tsx +0 -29
  312. package/src/LetterFilter/LetterFilter.tsx +0 -78
  313. package/src/LetterFilter/alphabet.ts +0 -39
  314. package/src/LetterFilter/index.ts +0 -11
  315. package/src/LicenseByline/LicenseDescription.tsx +0 -100
  316. package/src/List/OrderedList.stories.tsx +0 -135
  317. package/src/List/OrderedList.tsx +0 -158
  318. package/src/List/UnOrderedList.tsx +0 -43
  319. package/src/List/UnorderedList.stories.tsx +0 -72
  320. package/src/List/index.ts +0 -10
  321. package/src/Notion/Notion.tsx +0 -96
  322. package/src/Notion/NotionImage.tsx +0 -64
  323. package/src/Notion/index.ts +0 -9
  324. package/src/Table/Table.stories.tsx +0 -738
  325. package/src/Table/Table.tsx +0 -284
  326. package/src/Table/index.ts +0 -12
  327. package/src/TagSelector/Control.tsx +0 -34
  328. package/src/TagSelector/DropdownIndicator.tsx +0 -55
  329. package/src/TagSelector/Input.tsx +0 -31
  330. package/src/TagSelector/Menu.tsx +0 -38
  331. package/src/TagSelector/MenuList.tsx +0 -30
  332. package/src/TagSelector/Option.tsx +0 -58
  333. package/src/TagSelector/SelectContainer.tsx +0 -31
  334. package/src/TagSelector/ValueButton.tsx +0 -47
  335. package/src/TagSelector/ariaMessages.ts +0 -96
  336. package/src/TagSelector/index.ts +0 -14
  337. package/src/TagSelector/types.ts +0 -12
package/lib/styles.css CHANGED
@@ -35,6 +35,30 @@
35
35
  font-size: calc(var(--font-sizes-medium) * 1.11);
36
36
  line-height: calc(var(--line-heights-medium) * 1.11);
37
37
  }
38
+
39
+ .textStyle_body\.medium {
40
+ font-family: var(--fonts-sans);
41
+ font-weight: var(--font-weights-normal);
42
+ font-size: var(--font-sizes-small);
43
+ line-height: var(--line-heights-small);
44
+ }
45
+
46
+ .textStyle_body\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
47
+ font-size: calc(var(--font-sizes-small) * 1.11);
48
+ line-height: calc(var(--line-heights-small) * 1.11);
49
+ }
50
+
51
+ .\[\&_a\]\:textStyle_label\.xsmall a {
52
+ font-family: var(--fonts-sans);
53
+ font-weight: var(--font-weights-normal);
54
+ font-size: var(--font-sizes-xxsmall);
55
+ line-height: var(--line-heights-xxsmall);
56
+ }
57
+
58
+ .\[\&_a\]\:textStyle_label\.xsmall a:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
59
+ font-size: calc(var(--font-sizes-xxsmall) * 1.11);
60
+ line-height: calc(var(--line-heights-xxsmall) * 1.11);
61
+ }
38
62
  }
39
63
 
40
64
  .bd_1px_solid {
@@ -49,6 +73,10 @@
49
73
  box-shadow: var(--shadows-full);
50
74
  }
51
75
 
76
+ .mbe_4xsmall {
77
+ margin-block-end: var(--spacing-4xsmall);
78
+ }
79
+
52
80
  .ov_hidden {
53
81
  overflow: hidden;
54
82
  }
@@ -230,6 +258,26 @@
230
258
  max-width: 8xl;
231
259
  }
232
260
 
261
+ .max-w_surface\.xsmall {
262
+ max-width: var(--sizes-surface-xsmall);
263
+ }
264
+
265
+ .gap_xxsmall {
266
+ gap: var(--spacing-xxsmall);
267
+ }
268
+
269
+ .td_underline {
270
+ text-decoration: underline;
271
+ }
272
+
273
+ .h_215px {
274
+ height: 215px;
275
+ }
276
+
277
+ .c_inherit {
278
+ color: inherit;
279
+ }
280
+
233
281
  .bd-l_4px_solid {
234
282
  border-left: 4px solid;
235
283
  }
@@ -246,6 +294,26 @@
246
294
  white-space: pre;
247
295
  }
248
296
 
297
+ .d_inline {
298
+ display: inline;
299
+ }
300
+
301
+ .ms_xsmall {
302
+ margin-inline-start: var(--spacing-xsmall);
303
+ }
304
+
305
+ .h_auto {
306
+ height: auto;
307
+ }
308
+
309
+ .w_surface\.xlarge {
310
+ width: var(--sizes-surface-xlarge);
311
+ }
312
+
313
+ .c_text\.error {
314
+ color: var(--colors-text-error);
315
+ }
316
+
249
317
  .h_surface\.xsmall {
250
318
  height: var(--sizes-surface-xsmall);
251
319
  }
@@ -295,6 +363,102 @@
295
363
  border-radius: var(--radii-large);
296
364
  }
297
365
 
366
+ .ov_visible {
367
+ overflow: visible;
368
+ }
369
+
370
+ .bd-b_1px_solid {
371
+ border-bottom: 1px solid;
372
+ }
373
+
374
+ .py_4xsmall {
375
+ padding-block: var(--spacing-4xsmall);
376
+ }
377
+
378
+ .px_4xsmall {
379
+ padding-inline: var(--spacing-4xsmall);
380
+ }
381
+
382
+ .ta_center {
383
+ text-align: center;
384
+ }
385
+
386
+ .my_xxlarge {
387
+ margin-block: var(--spacing-xxlarge);
388
+ }
389
+
390
+ .p_medium {
391
+ padding: var(--spacing-medium);
392
+ }
393
+
394
+ .max-h_surface\.xxsmall {
395
+ max-height: var(--sizes-surface-xxsmall);
396
+ }
397
+
398
+ .gap_small {
399
+ gap: var(--spacing-small);
400
+ }
401
+
402
+ .px_0 {
403
+ padding-inline: 0;
404
+ }
405
+
406
+ .mbs_3xsmall {
407
+ margin-block-start: var(--spacing-3xsmall);
408
+ }
409
+
410
+ .py_small {
411
+ padding-block: var(--spacing-small);
412
+ }
413
+
414
+ .bd-t_1px_solid {
415
+ border-top: 1px solid;
416
+ }
417
+
418
+ .bg_surface\.default {
419
+ background: var(--colors-surface-default);
420
+ }
421
+
422
+ .bg_surface\.dangerSubtle {
423
+ background: var(--colors-surface-danger-subtle);
424
+ }
425
+
426
+ .d_inline-flex {
427
+ display: inline-flex;
428
+ }
429
+
430
+ .white-space_pre-wrap {
431
+ white-space: pre-wrap;
432
+ }
433
+
434
+ .c_primary {
435
+ color: var(--colors-primary);
436
+ }
437
+
438
+ .white-space_nowrap {
439
+ white-space: nowrap;
440
+ }
441
+
442
+ .c_icon\.strong {
443
+ color: var(--colors-icon-strong);
444
+ }
445
+
446
+ .li-s_none {
447
+ list-style: none;
448
+ }
449
+
450
+ .d_grid {
451
+ display: grid;
452
+ }
453
+
454
+ .mbs_xsmall {
455
+ margin-block-start: var(--spacing-xsmall);
456
+ }
457
+
458
+ .asp_1\/1 {
459
+ aspect-ratio: 1/1;
460
+ }
461
+
298
462
  .bd-c_stroke\.default {
299
463
  border-color: var(--colors-stroke-default);
300
464
  }
@@ -342,6 +506,10 @@
342
506
  transition-timing-function: var(--easings-default);
343
507
  }
344
508
 
509
+ .as_center {
510
+ align-self: center;
511
+ }
512
+
345
513
  .bd-l-c_stroke\.default {
346
514
  border-left-color: var(--colors-stroke-default);
347
515
  }
@@ -413,6 +581,69 @@
413
581
  background-color: var(--colors-surface-action);
414
582
  }
415
583
 
584
+ .border-style_dashed {
585
+ border-style: dashed;
586
+ }
587
+
588
+ .bd-c_stroke\.hover {
589
+ border-color: var(--colors-stroke-hover);
590
+ }
591
+
592
+ .mb_medium {
593
+ margin-bottom: var(--spacing-medium);
594
+ }
595
+
596
+ .mt_3xsmall {
597
+ margin-top: var(--spacing-3xsmall);
598
+ }
599
+
600
+ .ml_3xsmall {
601
+ margin-left: var(--spacing-3xsmall);
602
+ }
603
+
604
+ .trs-prop_max-height {
605
+ --transition-prop: max-height;
606
+ transition-property: max-height;
607
+ }
608
+
609
+ .trs-dur_slow {
610
+ --transition-duration: var(--durations-slow);
611
+ transition-duration: var(--durations-slow);
612
+ }
613
+
614
+ .trs-tmf_ease-in-out {
615
+ --transition-easing: ease-in-out;
616
+ transition-timing-function: ease-in-out;
617
+ }
618
+
619
+ .bottom_-medium {
620
+ bottom: calc(var(--spacing-medium) * -1);
621
+ }
622
+
623
+ .jc_space-between {
624
+ justify-content: space-between;
625
+ }
626
+
627
+ .font-style_italic {
628
+ font-style: italic;
629
+ }
630
+
631
+ .bd-c_stroke\.error {
632
+ border-color: var(--colors-stroke-error);
633
+ }
634
+
635
+ .grid-tc_repeat\(2\,_1fr\) {
636
+ grid-template-columns: repeat(2, 1fr);
637
+ }
638
+
639
+ .\[\&\[data-align\=\"center\"\]\]\:ta_center[data-align="center"] {
640
+ text-align: center;
641
+ }
642
+
643
+ .\[\&\:has\(span\[dir\=\"rtl\"\]\)\]\:direction_rtl:has(span[dir="rtl"]) {
644
+ direction: rtl;
645
+ }
646
+
416
647
  .\[\&_img\]\:w_100\% img {
417
648
  width: 100%;
418
649
  }
@@ -517,10 +748,18 @@
517
748
  opacity: 0.7;
518
749
  }
519
750
 
751
+ .\[\&_p\]\:d_inline p {
752
+ display: inline;
753
+ }
754
+
520
755
  .\[\&_\>_\*\:not\(\:where\(\:first-child\)\)\]\:mbs_xsmall > *:not(:where(:first-child)) {
521
756
  margin-block-start: var(--spacing-xsmall);
522
757
  }
523
758
 
759
+ .\[\&_li\]\:d_block li {
760
+ display: block;
761
+ }
762
+
524
763
  .\[\&_svg\]\:fill_text\.subtle svg {
525
764
  fill: var(--colors-text-subtle);
526
765
  }
@@ -541,10 +780,93 @@
541
780
  margin-block-start: var(--spacing-3xsmall);
542
781
  }
543
782
 
783
+ .\[\&_iframe\]\:h_auto iframe {
784
+ height: auto;
785
+ }
786
+
787
+ .\[\&_iframe\]\:w_100\% iframe {
788
+ width: 100%;
789
+ }
790
+
791
+ .\[\&_a\]\:ms_1 a {
792
+ margin-inline-start: var(--spacing-1);
793
+ }
794
+
544
795
  .\[\&_svg\]\:fill_primary svg {
545
796
  fill: var(--colors-primary);
546
797
  }
547
798
 
799
+ .\[\&_a\]\:c_text\.strong a {
800
+ color: var(--colors-text-strong);
801
+ }
802
+
803
+ .open\:max-h_500vh:is([open], [data-open], [data-state="open"]) {
804
+ max-height: 500vh;
805
+ }
806
+
807
+ .\[\&_\:first-child\]\:mbs_0 :first-child {
808
+ margin-block-start: 0;
809
+ }
810
+
811
+ .after\:ta_center::after {
812
+ text-align: center;
813
+ }
814
+
815
+ .after\:pos_absolute::after {
816
+ position: absolute;
817
+ }
818
+
819
+ .after\:inset_0::after {
820
+ inset: 0;
821
+ }
822
+
823
+ .after\:grad-from_surface\.default\/00::after {
824
+ --mix---gradient-from: color-mix(in srgb, var(--colors-surface-default) 00%, transparent);
825
+ --gradient-from: var(--mix---gradient-from, var(--colors-surface-default));
826
+ }
827
+
828
+ .after\:grad-to_surface\.default::after {
829
+ --gradient-to: var(--colors-surface-default);
830
+ }
831
+
832
+ .after\:bg-grad_to-b::after {
833
+ --gradient-stops: var(--gradient-via-stops, var(--gradient-from) var(--gradient-from-position), var(--gradient-to) var(--gradient-to-position));
834
+ --gradient: var(--gradient-via-stops, var(--gradient-stops));
835
+ background-image: linear-gradient(to bottom, var(--gradient));
836
+ }
837
+
838
+ .after\:op_1::after {
839
+ opacity: 1;
840
+ }
841
+
842
+ .after\:z_base::after {
843
+ z-index: var(--z-index-base);
844
+ }
845
+
846
+ .open\:pbe_xsmall:is([open], [data-open], [data-state="open"]) {
847
+ padding-block-end: var(--spacing-xsmall);
848
+ }
849
+
850
+ .first\:bg_surface\.brand\.1\.subtle:first-child {
851
+ background: var(--colors-surface-brand-1-subtle);
852
+ }
853
+
854
+ .\[\&_h3\]\:td_underline h3 {
855
+ text-decoration: underline;
856
+ }
857
+
858
+ .before\:pos_absolute::before {
859
+ position: absolute;
860
+ }
861
+
862
+ .before\:inset_0::before {
863
+ inset: 0;
864
+ }
865
+
866
+ .before\:z_0::before {
867
+ z-index: 0;
868
+ }
869
+
548
870
  .\[\&_\.linenumber\]\:bd-c_stroke\.subtle .linenumber {
549
871
  border-color: var(--colors-stroke-subtle);
550
872
  }
@@ -576,6 +898,75 @@
576
898
  transition-timing-function: ease-out;
577
899
  }
578
900
 
901
+ .\[\&_h1\]\:mt_0 h1 {
902
+ margin-top: 0;
903
+ }
904
+
905
+ .after\:content_\"\"::after {
906
+ content: "";
907
+ }
908
+
909
+ .after\:trs-prop_opacity::after {
910
+ --transition-prop: opacity;
911
+ transition-property: opacity;
912
+ }
913
+
914
+ .after\:trs-dur_slow::after {
915
+ --transition-duration: var(--durations-slow);
916
+ transition-duration: var(--durations-slow);
917
+ }
918
+
919
+ .after\:trs-tmf_ease-out::after {
920
+ --transition-easing: ease-out;
921
+ transition-timing-function: ease-out;
922
+ }
923
+
924
+ .\[\&_svg\]\:trs-tmf_ease-in-out svg {
925
+ --transition-easing: ease-in-out;
926
+ transition-timing-function: ease-in-out;
927
+ }
928
+
929
+ .\[\&_svg\]\:trs-dur_fast svg {
930
+ --transition-duration: var(--durations-fast);
931
+ transition-duration: var(--durations-fast);
932
+ }
933
+
934
+ .first\:bd-c_stroke\.default:first-child {
935
+ border-color: var(--colors-stroke-default);
936
+ }
937
+
938
+ .\[\&_\[data-forward\]\]\:trs-prop_width\,_height [data-forward] {
939
+ --transition-prop: width, height;
940
+ transition-property: width, height;
941
+ }
942
+
943
+ .\[\&_\[data-forward\]\]\:trs-tmf_ease-in-out [data-forward] {
944
+ --transition-easing: ease-in-out;
945
+ transition-timing-function: ease-in-out;
946
+ }
947
+
948
+ .\[\&_\[data-forward\]\]\:trs-dur_fast [data-forward] {
949
+ --transition-duration: var(--durations-fast);
950
+ transition-duration: var(--durations-fast);
951
+ }
952
+
953
+ .before\:content_\"\"::before {
954
+ content: "";
955
+ }
956
+
957
+ .focusWithin\:td_none:focus-within {
958
+ text-decoration: none;
959
+ }
960
+
961
+ .focusVisible\:ring_none:is(:focus-visible, [data-focus-visible]) {
962
+ outline: 2px solid transparent;
963
+ outline-offset: 2px;
964
+ }
965
+
966
+ .focusVisible\:bdr_0:is(:focus-visible, [data-focus-visible]) {
967
+ border-radius: 0;
968
+ }
969
+
579
970
  .\[\&\:hover\,_\&\:focus-visible\]\:bd-c_stroke\.hover:hover,.\[\&\:hover\,_\&\:focus-visible\]\:bd-c_stroke\.hover:focus-visible {
580
971
  border-color: var(--colors-stroke-hover);
581
972
  }
@@ -584,14 +975,82 @@
584
975
  background-color: var(--colors-surface-action-subtle-hover);
585
976
  }
586
977
 
978
+ .hover\:td_none:is(:hover, [data-hover]) {
979
+ text-decoration: none;
980
+ }
981
+
982
+ .hover\:bg_surface\.actionSubtle\.hover:is(:hover, [data-hover]) {
983
+ background: var(--colors-surface-action-subtle-hover);
984
+ }
985
+
986
+ .hover\:bd-c_text\.link:is(:hover, [data-hover]) {
987
+ border-color: var(--colors-text-link);
988
+ }
989
+
990
+ .active\:bg_surface\.actionSubtle\.active:is(:active, [data-active]) {
991
+ background: var(--colors-surface-action-subtle-active);
992
+ }
993
+
994
+ .active\:bd-c_text\.link:is(:active, [data-active]) {
995
+ border-color: var(--colors-text-link);
996
+ }
997
+
587
998
  .\[\&_button\[data-expanded\=\'true\'\]\]\:\[\&_svg\]\:trf_rotate\(-45deg\) button[data-expanded='true'] svg {
588
999
  transform: rotate(-45deg);
589
1000
  }
590
1001
 
1002
+ .open\:after\:op_0:is([open], [data-open], [data-state="open"])::after {
1003
+ opacity: 0;
1004
+ }
1005
+
1006
+ .open\:after\:z_hide:is([open], [data-open], [data-state="open"])::after {
1007
+ z-index: var(--z-index-hide);
1008
+ }
1009
+
1010
+ .open\:\[\&_svg\]\:trf_rotate\(180deg\):is([open], [data-open], [data-state="open"]) svg {
1011
+ transform: rotate(180deg);
1012
+ }
1013
+
1014
+ .first\:\[\&_p\]\:fw_bold:first-child p {
1015
+ font-weight: var(--font-weights-bold);
1016
+ }
1017
+
591
1018
  .\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h1,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h2,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h3,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h4,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h5,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h6,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h1,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h2,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h3,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h4,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h5,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h6 {
592
1019
  text-decoration: underline;
593
1020
  }
594
1021
 
1022
+ .focusVisible\:after\:pos_absolute:is(:focus-visible, [data-focus-visible])::after {
1023
+ position: absolute;
1024
+ }
1025
+
1026
+ .focusVisible\:after\:inset_0:is(:focus-visible, [data-focus-visible])::after {
1027
+ inset: 0;
1028
+ }
1029
+
1030
+ .focusVisible\:after\:ring_3px:is(:focus-visible, [data-focus-visible])::after {
1031
+ outline: 3px;
1032
+ }
1033
+
1034
+ .focusVisible\:after\:bdr_xsmall:is(:focus-visible, [data-focus-visible])::after {
1035
+ border-radius: var(--radii-xsmall);
1036
+ }
1037
+
1038
+ .focusVisible\:after\:ring-o_3px:is(:focus-visible, [data-focus-visible])::after {
1039
+ outline-offset: 3px;
1040
+ }
1041
+
1042
+ .focusVisible\:after\:content_\"\":is(:focus-visible, [data-focus-visible])::after {
1043
+ content: "";
1044
+ }
1045
+
1046
+ .focusVisible\:after\:ring-c_stroke\.default:is(:focus-visible, [data-focus-visible])::after {
1047
+ outline-color: var(--colors-stroke-default);
1048
+ }
1049
+
1050
+ .focusVisible\:after\:outline-style_solid:is(:focus-visible, [data-focus-visible])::after {
1051
+ outline-style: solid;
1052
+ }
1053
+
595
1054
  .hover\:\[\&_\[data-byline-button\]\]\:bg_background\.default:is(:hover, [data-hover]) [data-byline-button] {
596
1055
  background: var(--colors-background-default);
597
1056
  }
@@ -600,9 +1059,36 @@
600
1059
  transform: scale(1.2);
601
1060
  }
602
1061
 
1062
+ .hover\:\[\&_h3\]\:td_none:is(:hover, [data-hover]) h3 {
1063
+ text-decoration: none;
1064
+ }
1065
+
1066
+ .hover\:\[\&_\[data-forward\]\]\:w_large:is(:hover, [data-hover]) [data-forward] {
1067
+ width: var(--sizes-large);
1068
+ }
1069
+
1070
+ .hover\:\[\&_\[data-forward\]\]\:h_large:is(:hover, [data-hover]) [data-forward] {
1071
+ height: var(--sizes-large);
1072
+ }
1073
+
1074
+ @media screen and (min-width: 29.75rem) {
1075
+ .mobileWide\:max-w_surface\.medium {
1076
+ max-width: var(--sizes-surface-medium);
1077
+ }
1078
+ .mobileWide\:d_none {
1079
+ display: none;
1080
+ }
1081
+ }
1082
+
603
1083
  @media screen and (min-width: 37.5625rem) {
604
1084
  .tablet\:px_medium {
605
1085
  padding-inline: var(--spacing-medium);
1086
+ }
1087
+ .tablet\:mt_xxlarge {
1088
+ margin-top: var(--spacing-xxlarge);
1089
+ }
1090
+ .tablet\:mb_xxlarge {
1091
+ margin-bottom: var(--spacing-xxlarge);
606
1092
  }
607
1093
  .\[\&\[data-has-image\=\'true\'\]\]\:tablet\:py_xsmall[data-has-image='true'] {
608
1094
  padding-block: var(--spacing-xsmall);
@@ -621,6 +1107,9 @@
621
1107
  }
622
1108
  .tabletWide\:max-w_532px {
623
1109
  max-width: 532px;
1110
+ }
1111
+ .tabletWide\:max-w_1100px {
1112
+ max-width: 1100px;
624
1113
  }
625
1114
  .tabletWide\:flex-d_row {
626
1115
  flex-direction: row;
@@ -636,6 +1125,9 @@
636
1125
  }
637
1126
  .desktop\:h_260px {
638
1127
  height: 260px;
1128
+ }
1129
+ .desktop\:h_340px {
1130
+ height: 340px;
639
1131
  }
640
1132
  }
641
1133
 
@@ -663,6 +1155,9 @@
663
1155
  }
664
1156
  .tabletWideDown\:px_xsmall {
665
1157
  padding-inline: var(--spacing-xsmall);
1158
+ }
1159
+ .tabletWideDown\:p_xsmall {
1160
+ padding: var(--spacing-xsmall);
666
1161
  }
667
1162
  .tabletWideDown\:grid-tc_1fr_repeat\(5\,_auto\)_1fr {
668
1163
  grid-template-columns: 1fr repeat(5, auto) 1fr;
@@ -670,11 +1165,86 @@
670
1165
  .tabletWideDown\:grid-template-areas_\"track_track_track_track_track_track_track\"_\"\._speed_backwards_play_forwards_volume_\.\" {
671
1166
  grid-template-areas: "track track track track track track track" ". speed backwards play forwards volume .";
672
1167
  }
1168
+ }
1169
+
1170
+ @media screen and (max-width: 37.56rem) {
1171
+ .tabletDown\:gap_0 {
1172
+ gap: 0;
1173
+ }
1174
+ .tabletDown\:p_0 {
1175
+ padding: 0;
1176
+ }
1177
+ .tabletDown\:p_xsmall {
1178
+ padding: var(--spacing-xsmall);
1179
+ }
1180
+ .tabletDown\:w_100\% {
1181
+ width: 100%;
1182
+ }
1183
+ .tabletDown\:bdr_0 {
1184
+ border-radius: 0;
1185
+ }
1186
+ .tabletDown\:grid-tc_1fr {
1187
+ grid-template-columns: 1fr;
1188
+ }
1189
+ .tabletDown\:flex-d_column {
1190
+ flex-direction: column;
1191
+ }
673
1192
  }
674
1193
 
675
1194
  @media screen and (max-width: 29.7475rem) {
1195
+ .mobileWideDown\:d_grid {
1196
+ display: grid;
1197
+ }
1198
+ .mobileWideDown\:ov_hidden {
1199
+ overflow: hidden;
1200
+ }
1201
+ .mobileWideDown\:white-space_nowrap {
1202
+ white-space: nowrap;
1203
+ }
1204
+ .mobileWideDown\:max-h_large {
1205
+ max-height: var(--sizes-large);
1206
+ }
1207
+ .mobileWideDown\:tov_ellipsis {
1208
+ text-overflow: ellipsis;
1209
+ }
676
1210
  .mobileWideDown\:cg_3xsmall {
677
1211
  column-gap: var(--spacing-3xsmall);
1212
+ }
1213
+ .mobileWideDown\:grid-tc_1fr_auto {
1214
+ grid-template-columns: 1fr auto;
1215
+ }
1216
+ .mobileWideDown\:ai_center {
1217
+ align-items: center;
1218
+ }
1219
+ .mobileWideDown\:trs-prop_max-height {
1220
+ --transition-prop: max-height;
1221
+ transition-property: max-height;
1222
+ }
1223
+ .mobileWideDown\:trs-dur_slow {
1224
+ --transition-duration: var(--durations-slow);
1225
+ transition-duration: var(--durations-slow);
1226
+ }
1227
+ .mobileWideDown\:trs-tmf_ease-in {
1228
+ --transition-easing: ease-in;
1229
+ transition-timing-function: ease-in;
1230
+ }
1231
+ }
1232
+
1233
+ @media screen and (max-width: 29.7475rem) {
1234
+ .mobileWideDown\:open\:d_inline:is([open], [data-open], [data-state="open"]) {
1235
+ display: inline;
1236
+ }
1237
+ }
1238
+
1239
+ @media screen and (max-width: 29.7475rem) {
1240
+ .mobileWideDown\:open\:white-space_pre-wrap:is([open], [data-open], [data-state="open"]) {
1241
+ white-space: pre-wrap;
1242
+ }
1243
+ }
1244
+
1245
+ @media screen and (max-width: 29.7475rem) {
1246
+ .mobileWideDown\:open\:max-h_none:is([open], [data-open], [data-state="open"]) {
1247
+ max-height: none;
678
1248
  }
679
1249
  }
680
1250
 
@@ -682,5 +1252,32 @@
682
1252
  .mobileDown\:px_xsmall {
683
1253
  padding-inline: var(--spacing-xsmall);
684
1254
  }
1255
+ }
1256
+
1257
+ @media print {
1258
+ .print\:ov_visible {
1259
+ overflow: visible;
1260
+ }
1261
+ .print\:d_none {
1262
+ display: none;
1263
+ }
1264
+ }
1265
+
1266
+ @media print {
1267
+ .closed\:print\:ov_visible:is([closed], [data-closed], [data-state="closed"]) {
1268
+ overflow: visible;
1269
+ }
1270
+ }
1271
+
1272
+ @media print {
1273
+ .closed\:print\:max-h_500vh:is([closed], [data-closed], [data-state="closed"]) {
1274
+ max-height: 500vh;
1275
+ }
1276
+ }
1277
+
1278
+ @media print {
1279
+ .print\:after\:d_none::after {
1280
+ display: none;
1281
+ }
685
1282
  }
686
1283
  }