@automattic/newspack-blocks 4.16.0-alpha.2 → 4.17.0-alpha.1
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.
- package/CHANGELOG.md +36 -1
- package/composer.lock +13 -14
- package/dist/block_styles-rtl.css +2 -2
- package/dist/block_styles.asset.php +1 -1
- package/dist/block_styles.css +2 -2
- package/dist/blocks/homepage-articles/block.json +1 -1
- package/dist/carousel/view-rtl.css +1 -1
- package/dist/carousel/view.asset.php +1 -1
- package/dist/carousel/view.css +1 -1
- package/dist/donate/view-rtl.css +1 -1
- package/dist/donate/view.asset.php +1 -1
- package/dist/donate/view.css +1 -1
- package/dist/editor-rtl.css +11 -10
- package/dist/editor.asset.php +1 -1
- package/dist/editor.css +11 -10
- package/dist/editor.js +18 -18
- package/dist/frequencyBased-rtl.css +1 -1
- package/dist/frequencyBased.asset.php +1 -1
- package/dist/frequencyBased.css +1 -1
- package/dist/homepage-articles/view-rtl.css +1 -1
- package/dist/homepage-articles/view.asset.php +1 -1
- package/dist/homepage-articles/view.css +1 -1
- package/dist/modal-rtl.css +1 -1
- package/dist/modal.asset.php +1 -1
- package/dist/modal.css +1 -1
- package/dist/modal.js +1 -1
- package/dist/modalCheckout-rtl.css +1 -1
- package/dist/modalCheckout.asset.php +1 -1
- package/dist/modalCheckout.css +1 -1
- package/dist/modalCheckout.js +1 -1
- package/dist/tiersBased-rtl.css +1 -1
- package/dist/tiersBased.asset.php +1 -1
- package/dist/tiersBased.css +1 -1
- package/includes/class-modal-checkout.php +2 -1
- package/includes/class-newspack-blocks.php +3 -1
- package/languages/newspack-blocks-de_DE-53e2a1d5945b8d2b1c35e81ae1e532f3.json +1 -1
- package/languages/newspack-blocks-de_DE-7c29764d5ef91723f5ce454f66431b9e.json +1 -1
- package/languages/newspack-blocks-de_DE.po +95 -85
- package/languages/newspack-blocks-es_ES-53e2a1d5945b8d2b1c35e81ae1e532f3.json +1 -1
- package/languages/newspack-blocks-es_ES-7c29764d5ef91723f5ce454f66431b9e.json +1 -1
- package/languages/newspack-blocks-es_ES.po +95 -85
- package/languages/newspack-blocks-fr_BE-53e2a1d5945b8d2b1c35e81ae1e532f3.json +1 -1
- package/languages/newspack-blocks-fr_BE-7c29764d5ef91723f5ce454f66431b9e.json +1 -1
- package/languages/newspack-blocks-fr_BE.po +95 -85
- package/languages/newspack-blocks-nb_NO-53e2a1d5945b8d2b1c35e81ae1e532f3.json +1 -1
- package/languages/newspack-blocks-nb_NO-7c29764d5ef91723f5ce454f66431b9e.json +1 -1
- package/languages/newspack-blocks-nb_NO.mo +0 -0
- package/languages/newspack-blocks-nb_NO.po +96 -86
- package/languages/newspack-blocks-pt_PT-53e2a1d5945b8d2b1c35e81ae1e532f3.json +1 -1
- package/languages/newspack-blocks-pt_PT-7c29764d5ef91723f5ce454f66431b9e.json +1 -1
- package/languages/newspack-blocks-pt_PT.po +95 -85
- package/languages/newspack-blocks.pot +98 -88
- package/newspack-blocks.php +2 -2
- package/package.json +5 -3
- package/src/block-styles/core/columns/editor.scss +5 -4
- package/src/block-styles/core/columns/view.scss +2 -1
- package/src/block-styles/core/group/editor.scss +2 -1
- package/src/block-styles/core/group/view.scss +2 -1
- package/src/blocks/author-list/index.js +6 -1
- package/src/blocks/author-profile/index.js +6 -1
- package/src/blocks/carousel/editor.scss +3 -2
- package/src/blocks/carousel/index.js +7 -13
- package/src/blocks/carousel/view.scss +17 -17
- package/src/blocks/checkout-button/edit.scss +2 -2
- package/src/blocks/checkout-button/index.js +6 -1
- package/src/blocks/donate/frequency-based/style.scss +17 -17
- package/src/blocks/donate/index.js +8 -12
- package/src/blocks/donate/styles/editor.scss +4 -5
- package/src/blocks/donate/styles/style-variations.scss +68 -68
- package/src/blocks/donate/styles/view.scss +5 -6
- package/src/blocks/donate/tiers-based/style.scss +11 -11
- package/src/blocks/homepage-articles/block.json +1 -1
- package/src/blocks/homepage-articles/edit.tsx +8 -35
- package/src/blocks/homepage-articles/editor.scss +3 -3
- package/src/blocks/homepage-articles/index.js +7 -14
- package/src/blocks/homepage-articles/view.scss +28 -5
- package/src/blocks/iframe/class-wp-rest-newspack-iframe-controller.php +79 -21
- package/src/blocks/iframe/edit.js +8 -13
- package/src/blocks/iframe/index.js +8 -3
- package/src/blocks/video-playlist/editor.scss +2 -2
- package/src/blocks/video-playlist/index.js +7 -14
- package/src/modal-checkout/accessibility.js +1 -11
- package/src/modal-checkout/checkout.scss +60 -42
- package/src/modal-checkout/index.js +13 -5
- package/src/modal-checkout/modal.js +4 -1
- package/src/modal-checkout/modal.scss +13 -13
- package/src/modal-checkout/templates/form-change-payment-method.php +7 -5
- package/src/modal-checkout/templates/form-checkout.php +2 -1
- package/src/setup/editor.scss +2 -2
- package/src/setup/newspack-logo.js +12 -3
- package/src/shared/js/newspack-icon.js +7 -2
- package/src/shared/sass/_variables.scss +0 -2
- package/vendor/composer/installed.php +2 -2
- package/webpack.config.js +17 -0
- package/src/blocks/iframe/icons.js +0 -10
- package/src/shared/sass/_colors.scss +0 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,44 @@
|
|
|
1
|
-
# [4.
|
|
1
|
+
# [4.17.0-alpha.1](https://github.com/Automattic/newspack-blocks/compare/v4.16.0...v4.17.0-alpha.1) (2025-10-17)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
+
* correct RTL styles for the Content Loop ([#2215](https://github.com/Automattic/newspack-blocks/issues/2215)) ([a8e2f42](https://github.com/Automattic/newspack-blocks/commit/a8e2f42655c63dbea3a6a8cf3fd0c497ae038365))
|
|
7
|
+
* ga4 events for tiered modal ([#2218](https://github.com/Automattic/newspack-blocks/issues/2218)) ([a08981d](https://github.com/Automattic/newspack-blocks/commit/a08981dd7c7ea168825a12bddc74840493560d3e))
|
|
8
|
+
* handle invalid file errors when processing archive ([#2221](https://github.com/Automattic/newspack-blocks/issues/2221)) ([2ba3d26](https://github.com/Automattic/newspack-blocks/commit/2ba3d26fc2864f8f28705d26866deb136d32a7e8))
|
|
9
|
+
* **modal-checkout:** style improvements to single-gateway ([#2223](https://github.com/Automattic/newspack-blocks/issues/2223)) ([3c0014a](https://github.com/Automattic/newspack-blocks/commit/3c0014a463649545a3d5680c4ca16eca2c23de5e))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add newspack-colors and newspack-icons packages ([#2222](https://github.com/Automattic/newspack-blocks/issues/2222)) ([f6bdf20](https://github.com/Automattic/newspack-blocks/commit/f6bdf20434f34e813b13856266372ad355f31f19))
|
|
15
|
+
|
|
16
|
+
# [4.16.0](https://github.com/Automattic/newspack-blocks/compare/v4.15.4...v4.16.0) (2025-10-06)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **checkout-button:** editor's align center ([#2207](https://github.com/Automattic/newspack-blocks/issues/2207)) ([0279b3d](https://github.com/Automattic/newspack-blocks/commit/0279b3debf80c626d8b98008545ac88aa4f83808))
|
|
22
|
+
* clarify NRH dependency for Campaign ID sidebar attribute ([#2214](https://github.com/Automattic/newspack-blocks/issues/2214)) ([a25087c](https://github.com/Automattic/newspack-blocks/commit/a25087c7c85b32d06caeb80589627f2312046347))
|
|
6
23
|
* ga4 events for tiered modal ([#2218](https://github.com/Automattic/newspack-blocks/issues/2218)) ([74cf571](https://github.com/Automattic/newspack-blocks/commit/74cf571dbeb5e963f817f9f3cb02ecd117f9ab50))
|
|
24
|
+
* input hardening ([12a87f1](https://github.com/Automattic/newspack-blocks/commit/12a87f1b03c6c2f762aa9a65e8d14b0ae437953b))
|
|
25
|
+
* update download URL for db.php ([#2208](https://github.com/Automattic/newspack-blocks/issues/2208)) ([d334f82](https://github.com/Automattic/newspack-blocks/commit/d334f8275ade2c1a8b5d53d9ca44bb44db5d28e8))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* better error messages for limited products ([#2202](https://github.com/Automattic/newspack-blocks/issues/2202)) ([5572d62](https://github.com/Automattic/newspack-blocks/commit/5572d623d5cdfc04be9dc4f317d512797d248dfd))
|
|
31
|
+
* **checkout-button:** grouped product support ([#2201](https://github.com/Automattic/newspack-blocks/issues/2201)) ([f053be1](https://github.com/Automattic/newspack-blocks/commit/f053be1d730a99289f6f8b981e3604095033775c))
|
|
32
|
+
* **modal-checkout:** switch subscription support ([#2204](https://github.com/Automattic/newspack-blocks/issues/2204)) ([6906e23](https://github.com/Automattic/newspack-blocks/commit/6906e234dfa23e3ce0dcfd92cb337f63d1b239e1))
|
|
33
|
+
* replace buttongroup with togglegroupcontrol ([#2197](https://github.com/Automattic/newspack-blocks/issues/2197)) ([26920db](https://github.com/Automattic/newspack-blocks/commit/26920db7295d41eb62ce0835e1250576aab2e919))
|
|
34
|
+
* support for iframe auto-resizing ([541af11](https://github.com/Automattic/newspack-blocks/commit/541af116a128dc4fe43281fd717308349f5dfdf8))
|
|
35
|
+
|
|
36
|
+
## [4.15.4](https://github.com/Automattic/newspack-blocks/compare/v4.15.3...v4.15.4) (2025-10-01)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* **iframe-block:** validate file extensions before allowing upload ([#2220](https://github.com/Automattic/newspack-blocks/issues/2220)) ([263e419](https://github.com/Automattic/newspack-blocks/commit/263e419b56814d3f848d6629a5442f54b1dad28d))
|
|
7
42
|
|
|
8
43
|
## [4.15.3](https://github.com/Automattic/newspack-blocks/compare/v4.15.2...v4.15.3) (2025-09-25)
|
|
9
44
|
|
package/composer.lock
CHANGED
|
@@ -2492,28 +2492,27 @@
|
|
|
2492
2492
|
},
|
|
2493
2493
|
{
|
|
2494
2494
|
"name": "sirbrillig/phpcs-variable-analysis",
|
|
2495
|
-
"version": "v2.
|
|
2495
|
+
"version": "v2.13.0",
|
|
2496
2496
|
"source": {
|
|
2497
2497
|
"type": "git",
|
|
2498
2498
|
"url": "https://github.com/sirbrillig/phpcs-variable-analysis.git",
|
|
2499
|
-
"reference": "
|
|
2499
|
+
"reference": "a15e970b8a0bf64cfa5e86d941f5e6b08855f369"
|
|
2500
2500
|
},
|
|
2501
2501
|
"dist": {
|
|
2502
2502
|
"type": "zip",
|
|
2503
|
-
"url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/
|
|
2504
|
-
"reference": "
|
|
2503
|
+
"url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/a15e970b8a0bf64cfa5e86d941f5e6b08855f369",
|
|
2504
|
+
"reference": "a15e970b8a0bf64cfa5e86d941f5e6b08855f369",
|
|
2505
2505
|
"shasum": ""
|
|
2506
2506
|
},
|
|
2507
2507
|
"require": {
|
|
2508
2508
|
"php": ">=5.4.0",
|
|
2509
|
-
"squizlabs/php_codesniffer": "^3.5.
|
|
2509
|
+
"squizlabs/php_codesniffer": "^3.5.7 || ^4.0.0"
|
|
2510
2510
|
},
|
|
2511
2511
|
"require-dev": {
|
|
2512
2512
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
|
|
2513
|
-
"
|
|
2514
|
-
"phpstan/phpstan": "^1.7",
|
|
2513
|
+
"phpstan/phpstan": "^1.7 || ^2.0",
|
|
2515
2514
|
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3",
|
|
2516
|
-
"vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0"
|
|
2515
|
+
"vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0 || ^6.0 || ^7.0"
|
|
2517
2516
|
},
|
|
2518
2517
|
"type": "phpcodesniffer-standard",
|
|
2519
2518
|
"autoload": {
|
|
@@ -2545,20 +2544,20 @@
|
|
|
2545
2544
|
"source": "https://github.com/sirbrillig/phpcs-variable-analysis",
|
|
2546
2545
|
"wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki"
|
|
2547
2546
|
},
|
|
2548
|
-
"time": "2025-
|
|
2547
|
+
"time": "2025-09-30T22:22:48+00:00"
|
|
2549
2548
|
},
|
|
2550
2549
|
{
|
|
2551
2550
|
"name": "squizlabs/php_codesniffer",
|
|
2552
|
-
"version": "3.13.
|
|
2551
|
+
"version": "3.13.4",
|
|
2553
2552
|
"source": {
|
|
2554
2553
|
"type": "git",
|
|
2555
2554
|
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
|
|
2556
|
-
"reference": "
|
|
2555
|
+
"reference": "ad545ea9c1b7d270ce0fc9cbfb884161cd706119"
|
|
2557
2556
|
},
|
|
2558
2557
|
"dist": {
|
|
2559
2558
|
"type": "zip",
|
|
2560
|
-
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/
|
|
2561
|
-
"reference": "
|
|
2559
|
+
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ad545ea9c1b7d270ce0fc9cbfb884161cd706119",
|
|
2560
|
+
"reference": "ad545ea9c1b7d270ce0fc9cbfb884161cd706119",
|
|
2562
2561
|
"shasum": ""
|
|
2563
2562
|
},
|
|
2564
2563
|
"require": {
|
|
@@ -2629,7 +2628,7 @@
|
|
|
2629
2628
|
"type": "thanks_dev"
|
|
2630
2629
|
}
|
|
2631
2630
|
],
|
|
2632
|
-
"time": "2025-
|
|
2631
|
+
"time": "2025-09-05T05:47:09+00:00"
|
|
2633
2632
|
},
|
|
2634
2633
|
{
|
|
2635
2634
|
"name": "symfony/console",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
body:not(.is-block-theme) div.wp-block-columns{gap:32px}body:not(.is-block-theme) div.wp-block-columns.is-style-borders{gap:64px}@media only screen and (max-width:781px){body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile{gap:20px}body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile.is-style-borders{gap:40px}}@media only screen and (min-width:782px){.wp-block-columns.is-style-first-col-to-second>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(3){order:-1}}.wp-block-columns.is-style-borders>.wp-block-column{position:relative}.wp-block-columns.is-style-borders>.wp-block-column:after{border:solid #
|
|
2
|
-
.wp-block-group.is-style-border{border:1px solid #
|
|
1
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}body:not(.is-block-theme) div.wp-block-columns{gap:32px}body:not(.is-block-theme) div.wp-block-columns.is-style-borders{gap:64px}@media only screen and (max-width:781px){body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile{gap:20px}body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile.is-style-borders{gap:40px}}@media only screen and (min-width:782px){.wp-block-columns.is-style-first-col-to-second>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(3){order:-1}}.wp-block-columns.is-style-borders>.wp-block-column{position:relative}.wp-block-columns.is-style-borders>.wp-block-column:after{border:solid #ddd;border-width:1px 0 0;bottom:-32px;content:"";right:0;position:absolute;left:0}.wp-block-columns.is-style-borders>.wp-block-column:last-child:after{display:none}@media only screen and (min-width:782px){.wp-block-columns.is-style-borders>.wp-block-column{margin-bottom:0}.wp-block-columns.is-style-borders>.wp-block-column:after{border-left-width:1px;border-top-width:0;inset:0 -32px 0 auto}.wp-block-columns.is-style-borders.is-style-first-col-to-second>.wp-block-column:first-child:after,.wp-block-columns.is-style-borders.is-style-first-col-to-third>.wp-block-column:first-child:after{display:none}.wp-block-columns.is-style-borders.is-style-first-col-to-second>.wp-block-column:nth-child(2):after,.wp-block-columns.is-style-borders.is-style-first-col-to-third>.wp-block-column:nth-child(3):after{display:block}}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders>.wp-block-column:after{border-left-width:1px;border-top-width:0;inset:0 -20px 0 auto}@media only screen and (min-width:782px){.wp-block-columns.is-not-stacked-on-mobile.is-style-borders>.wp-block-column:after{left:-32px}}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-second>.wp-block-column:first-child:after,.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-third>.wp-block-column:first-child:after{display:none}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-second>.wp-block-column:nth-child(2):after,.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-third>.wp-block-column:nth-child(3):after{display:block}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column:not(:first-child),.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child){margin-right:0}@media(min-width:600px)and (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:only-child){flex-basis:unset!important;flex-grow:1}}
|
|
2
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}.wp-block-group.is-style-border{border:1px solid #ddd}.wp-block-group.is-style-border:not(.has-background){padding:20px 30px}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<?php return array('dependencies' => array(), 'version' => '
|
|
1
|
+
<?php return array('dependencies' => array(), 'version' => '2fb9636ddc1b2784fa43');
|
package/dist/block_styles.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
body:not(.is-block-theme) div.wp-block-columns{gap:32px}body:not(.is-block-theme) div.wp-block-columns.is-style-borders{gap:64px}@media only screen and (max-width:781px){body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile{gap:20px}body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile.is-style-borders{gap:40px}}@media only screen and (min-width:782px){.wp-block-columns.is-style-first-col-to-second>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(3){order:-1}}.wp-block-columns.is-style-borders>.wp-block-column{position:relative}.wp-block-columns.is-style-borders>.wp-block-column:after{border:solid #
|
|
2
|
-
.wp-block-group.is-style-border{border:1px solid #
|
|
1
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}body:not(.is-block-theme) div.wp-block-columns{gap:32px}body:not(.is-block-theme) div.wp-block-columns.is-style-borders{gap:64px}@media only screen and (max-width:781px){body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile{gap:20px}body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile.is-style-borders{gap:40px}}@media only screen and (min-width:782px){.wp-block-columns.is-style-first-col-to-second>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(3){order:-1}}.wp-block-columns.is-style-borders>.wp-block-column{position:relative}.wp-block-columns.is-style-borders>.wp-block-column:after{border:solid #ddd;border-width:1px 0 0;bottom:-32px;content:"";left:0;position:absolute;right:0}.wp-block-columns.is-style-borders>.wp-block-column:last-child:after{display:none}@media only screen and (min-width:782px){.wp-block-columns.is-style-borders>.wp-block-column{margin-bottom:0}.wp-block-columns.is-style-borders>.wp-block-column:after{border-right-width:1px;border-top-width:0;inset:0 -32px 0 auto}.wp-block-columns.is-style-borders.is-style-first-col-to-second>.wp-block-column:first-child:after,.wp-block-columns.is-style-borders.is-style-first-col-to-third>.wp-block-column:first-child:after{display:none}.wp-block-columns.is-style-borders.is-style-first-col-to-second>.wp-block-column:nth-child(2):after,.wp-block-columns.is-style-borders.is-style-first-col-to-third>.wp-block-column:nth-child(3):after{display:block}}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders>.wp-block-column:after{border-right-width:1px;border-top-width:0;inset:0 -20px 0 auto}@media only screen and (min-width:782px){.wp-block-columns.is-not-stacked-on-mobile.is-style-borders>.wp-block-column:after{right:-32px}}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-second>.wp-block-column:first-child:after,.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-third>.wp-block-column:first-child:after{display:none}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-second>.wp-block-column:nth-child(2):after,.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-third>.wp-block-column:nth-child(3):after{display:block}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column:not(:first-child),.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child){margin-left:0}@media(min-width:600px)and (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:only-child){flex-basis:unset!important;flex-grow:1}}
|
|
2
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}.wp-block-group.is-style-border{border:1px solid #ddd}.wp-block-group.is-style-border:not(.has-background){padding:20px 30px}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@font-face{font-family:swiper-icons;font-style:normal;font-weight:400;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")}:root{--swiper-theme-color:#007aff}:host{display:block;margin-right:auto;margin-left:auto;position:relative;z-index:1}.swiper{display:block;list-style:none;margin-right:auto;margin-left:auto;overflow:hidden;padding:0;position:relative;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{height:100%;right:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(-270deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(-90deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(-180deg,rgba(0,0,0,.5),transparent)}.swiper-lazy-preloader{border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid transparent;box-sizing:border-box;height:42px;right:50%;margin-right:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper:after{content:"";right:0;pointer-events:none;position:absolute;top:0}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:var(--swiper-navigation-size);justify-content:center;margin-top:calc(0px - var(--swiper-navigation-size)/2);position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/44*27);z-index:10}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center;width:100%}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(-180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);font-variant:normal;letter-spacing:0;line-height:1;text-transform:none!important}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:auto;left:var(--swiper-navigation-sides-offset,10px)}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);right:0;top:var(--swiper-pagination-top,auto);width:100%}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))}button.swiper-pagination-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:var(--swiper-pagination-bullet-opacity,1)}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-left,auto);left:var(--swiper-pagination-right,8px);top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{right:50%;transform:translateX(50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;right:0;position:absolute;top:0;transform:scale(0);transform-origin:right top;width:100%}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:left top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{height:var(--swiper-pagination-progressbar-size,4px);right:0;top:0;width:100%}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{height:100%;right:0;top:0;width:var(--swiper-pagination-progressbar-size,4px)}.swiper-pagination-lock{display:none}.swiper-scrollbar{background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1));border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{bottom:var(--swiper-scrollbar-bottom,4px);height:var(--swiper-scrollbar-size,4px);right:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:var(--swiper-scrollbar-top,auto);width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);right:var(--swiper-scrollbar-left,auto);position:absolute;left:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);width:var(--swiper-scrollbar-size,4px);z-index:50}.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;right:0;position:relative;top:0;width:100%}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{right:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:100% 0;visibility:hidden;width:100%;z-index:1}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:0% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{bottom:0;height:100%;right:0;opacity:.6;position:absolute;width:100%;z-index:0}.swiper-cube .swiper-cube-shadow:before{background:#000;bottom:0;content:"";filter:blur(50px);right:0;position:absolute;left:0;top:0}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{backface-visibility:hidden;pointer-events:none;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}
|
|
2
|
-
.newspack-preview-label{background:#ffc000;border-radius:2px;font-family:sans-serif;font-size:10px;right:5px;padding:0 4px;position:absolute;text-transform:uppercase;top:5px;z-index:1}.wp-block-newspack-blocks-carousel{margin-top:0;position:relative}.wp-block-newspack-blocks-carousel article{margin-bottom:0;max-width:100%;overflow-wrap:break-word;padding:0;position:relative;word-break:break-word}.wp-block-newspack-blocks-carousel article a{color:#fff}.wp-block-newspack-blocks-carousel article a:active,.wp-block-newspack-blocks-carousel article a:focus,.wp-block-newspack-blocks-carousel article a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.2em}.wp-block-newspack-blocks-carousel article .entry-title a{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:3;max-height:3.5625em;overflow:hidden;text-overflow:ellipsis}.wp-block-newspack-blocks-carousel article .avatar{height:1.8em;width:1.8em}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.6em}.wp-block-newspack-blocks-carousel article .avatar{height:40px;width:40px}}.wp-block-newspack-blocks-carousel article .entry-wrapper{background-color:rgba(0,0,0,.5);bottom:0;color:#fff;right:0;padding:1.5em;position:absolute;left:0}.wp-block-newspack-blocks-carousel article .entry-meta{color:#fff;font-size:.8em;margin-bottom:0}.wp-block-newspack-blocks-carousel article .entry-meta a{color:#fff;font-weight:700;text-decoration:none}.wp-block-newspack-blocks-carousel article .entry-meta a:active,.wp-block-newspack-blocks-carousel article .entry-meta a:focus,.wp-block-newspack-blocks-carousel article .entry-meta a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-caption{margin-top:var(--wp--preset--spacing--00,var(--wp--preset--spacing--20,.5rem));width:100%}.wp-block-newspack-blocks-carousel article .entry-caption figcaption{color:#fff;font-size:var(--wp--preset--font-size--x-small,var(--newspack-theme-font-size-sm,.8em));line-height:var(--wp--custom--line-height--x-small,var(--newspack-theme-font-line-height-body,1.6))}.wp-block-newspack-blocks-carousel article .entry-caption figcaption a{font-weight:400;text-decoration:underline}.wp-block-newspack-blocks-carousel .post-thumbnail{height:100%;margin:0;padding:0;position:relative;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a,.wp-block-newspack-blocks-carousel .post-thumbnail img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a.image-fit-contain,.wp-block-newspack-blocks-carousel .post-thumbnail img.image-fit-contain{-o-object-fit:contain;object-fit:contain}.wp-block-newspack-blocks-carousel__placeholder{background:#f1f1f1;height:420px}.wp-block-newspack-blocks-carousel .swiper-initialized .wp-block-newspack-blocks-carousel__placeholder{height:100%}.wp-block-newspack-blocks-carousel p{white-space:normal}.wp-block-newspack-blocks-carousel .swiper-pagination-bullets{align-items:flex-end;bottom:0;display:flex;flex-wrap:wrap;height:calc(1.5em + 12px);justify-content:center;padding:0;position:relative}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet{background:#000;border-radius:6px;display:inline-block;height:12px;margin:0 4px;opacity:.5;padding:0;transition:box-shadow .25s,opacity .25s,width .25s;width:12px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #000;outline:0}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active,.wp-block-newspack-blocks-carousel .swiper-pagination-bullet[selected]{opacity:1;outline:0;width:24px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet span{height:1px;overflow:hidden;position:absolute!important;width:1px;clip:rect(1px,1px,1px,1px);white-space:nowrap}.wp-block-newspack-blocks-carousel .swiper-button{background-color:rgba(0,0,0,.5);background-position:50%;background-repeat:no-repeat;background-size:24px;border:0;border-radius:4px;box-shadow:none;cursor:pointer;height:48px;margin:0;padding:0;transition:background-color .25s,box-shadow .25s;width:48px}.wp-block-newspack-blocks-carousel .swiper-button:focus,.wp-block-newspack-blocks-carousel .swiper-button:hover{background-color:rgba(0,0,0,.75)}.wp-block-newspack-blocks-carousel .swiper-button:focus{box-shadow:inset 0 0 0 2px rgba(0,0,0,.75),inset 0 0 0 4px #fff;outline:0}.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:none;right:1.5em;margin-top:-24px;left:auto}@media only screen and (min-width:600px){.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:block}}.wp-block-newspack-blocks-carousel .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-button-prev:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-prev:after{content:none}.wp-block-newspack-blocks-carousel .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M5.88 4.12 13.76 12l-7.88 7.88L8 22l10-10L8 2z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");right:auto;left:1.5em}.wp-block-newspack-blocks-carousel .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M18 4.12 10.12 12 18 19.88 15.88 22l-10-10 10-10z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M6 19h4V5H6zm8-14v14h4V5z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");display:none;margin-top:0;position:absolute;left:1.5em;top:1.5em;transform:none;z-index:9}.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M8 5v14l11-7z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-slide{height:auto;max-height:75vh}.wp-block-newspack-blocks-carousel figcaption{font-size:.6em}.wp-block-newspack-blocks-carousel .entry-title{margin:0 0 .25em}.wp-block-newspack-blocks-carousel .entry-title a{color:#fff;text-decoration:none}.wp-block-newspack-blocks-carousel .entry-meta{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em}.wp-block-newspack-blocks-carousel .entry-meta .byline:not(:last-child){margin-left:1.5em}.wp-block-newspack-blocks-carousel .cat-links{color:#fff;font-size:.6em;font-weight:700;margin:0 0 .5em}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label{align-items:center}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label .flag+a{margin-right:.5em}.wp-block-newspack-blocks-carousel .cat-links a{text-decoration:none}.wp-block-newspack-blocks-carousel .avatar{border-radius:100%;display:block;margin-left:.5em}.wp-block-newspack-blocks-carousel .swiper-button-play,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-pause{display:block}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-play{display:none}.wp-block-newspack-blocks-carousel .author-avatar,.wp-block-newspack-blocks-carousel .byline,.wp-block-newspack-blocks-carousel .cat-links,.wp-block-newspack-blocks-carousel .posted-on,.wp-block-newspack-blocks-carousel .tags-links{clip:auto;height:auto;position:relative;width:auto}.wp-block-newspack-blocks-carousel.hide-controls button{display:none;visibility:hidden}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-2 article .entry-title{font-size:1.4em}.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-meta{font-size:.7em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-wrapper,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-wrapper{padding:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:.9em}.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title a,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title a{-webkit-line-clamp:2}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-meta{font-size:.7em}}.wpnbpc .entry-sponsors{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;width:100%}.wpnbpc .entry-sponsors.plus-author{font-size:.9em}.wpnbpc .entry-sponsors.plus-author:not(:last-child){margin-bottom:.5rem}.wpnbpc .sponsor-logos{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;line-height:1}
|
|
2
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}.newspack-preview-label{background:#ffc000;border-radius:2px;font-family:sans-serif;font-size:10px;right:5px;padding:0 4px;position:absolute;text-transform:uppercase;top:5px;z-index:1}.wp-block-newspack-blocks-carousel{margin-top:0;position:relative}.wp-block-newspack-blocks-carousel article{margin-bottom:0;max-width:100%;overflow-wrap:break-word;padding:0;position:relative;word-break:break-word}.wp-block-newspack-blocks-carousel article a{color:#fff}.wp-block-newspack-blocks-carousel article a:active,.wp-block-newspack-blocks-carousel article a:focus,.wp-block-newspack-blocks-carousel article a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.2em}.wp-block-newspack-blocks-carousel article .entry-title a{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:3;max-height:3.5625em;overflow:hidden;text-overflow:ellipsis}.wp-block-newspack-blocks-carousel article .avatar{height:1.8em;width:1.8em}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.6em}.wp-block-newspack-blocks-carousel article .avatar{height:40px;width:40px}}.wp-block-newspack-blocks-carousel article .entry-wrapper{background-color:rgba(0,0,0,.5);bottom:0;color:#fff;right:0;padding:1.5em;position:absolute;left:0}.wp-block-newspack-blocks-carousel article .entry-meta{color:#fff;font-size:.8em;margin-bottom:0}.wp-block-newspack-blocks-carousel article .entry-meta a{color:#fff;font-weight:700;text-decoration:none}.wp-block-newspack-blocks-carousel article .entry-meta a:active,.wp-block-newspack-blocks-carousel article .entry-meta a:focus,.wp-block-newspack-blocks-carousel article .entry-meta a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-caption{margin-top:var(--wp--preset--spacing--00,var(--wp--preset--spacing--20,.5rem));width:100%}.wp-block-newspack-blocks-carousel article .entry-caption figcaption{color:#fff;font-size:var(--wp--preset--font-size--x-small,var(--newspack-theme-font-size-sm,.8em));line-height:var(--wp--custom--line-height--x-small,var(--newspack-theme-font-line-height-body,1.6))}.wp-block-newspack-blocks-carousel article .entry-caption figcaption a{font-weight:400;text-decoration:underline}.wp-block-newspack-blocks-carousel .post-thumbnail{height:100%;margin:0;padding:0;position:relative;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a,.wp-block-newspack-blocks-carousel .post-thumbnail img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a.image-fit-contain,.wp-block-newspack-blocks-carousel .post-thumbnail img.image-fit-contain{-o-object-fit:contain;object-fit:contain}.wp-block-newspack-blocks-carousel__placeholder{background:#f7f7f7;height:420px}.wp-block-newspack-blocks-carousel .swiper-initialized .wp-block-newspack-blocks-carousel__placeholder{height:100%}.wp-block-newspack-blocks-carousel p{white-space:normal}.wp-block-newspack-blocks-carousel .swiper-pagination-bullets{align-items:flex-end;bottom:0;display:flex;flex-wrap:wrap;height:calc(1.5em + 12px);justify-content:center;padding:0;position:relative}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet{background:#000;border-radius:6px;display:inline-block;height:12px;margin:0 4px;opacity:.5;padding:0;transition:box-shadow .25s,opacity .25s,width .25s;width:12px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #f0f0f0;outline:0}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active,.wp-block-newspack-blocks-carousel .swiper-pagination-bullet[selected]{opacity:1;outline:0;width:24px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet span{height:1px;overflow:hidden;position:absolute!important;width:1px;clip:rect(1px,1px,1px,1px);white-space:nowrap}.wp-block-newspack-blocks-carousel .swiper-button{background-color:rgba(0,0,0,.5);background-position:50%;background-repeat:no-repeat;background-size:24px;border:0;border-radius:4px;box-shadow:none;cursor:pointer;height:48px;margin:0;padding:0;transition:background-color .25s,box-shadow .25s;width:48px}.wp-block-newspack-blocks-carousel .swiper-button:focus,.wp-block-newspack-blocks-carousel .swiper-button:hover{background-color:rgba(0,0,0,.702)}.wp-block-newspack-blocks-carousel .swiper-button:focus{box-shadow:inset 0 0 0 2px rgba(0,0,0,.702),inset 0 0 0 4px #fff;outline:0}.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:none;right:1.5em;margin-top:-24px;left:auto}@media only screen and (min-width:600px){.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:block}}.wp-block-newspack-blocks-carousel .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-button-prev:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-prev:after{content:none}.wp-block-newspack-blocks-carousel .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M5.88 4.12 13.76 12l-7.88 7.88L8 22l10-10L8 2z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");right:auto;left:1.5em}.wp-block-newspack-blocks-carousel .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M18 4.12 10.12 12 18 19.88 15.88 22l-10-10 10-10z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M6 19h4V5H6zm8-14v14h4V5z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");display:none;margin-top:0;position:absolute;left:1.5em;top:1.5em;transform:none;z-index:9}.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M8 5v14l11-7z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-slide{height:auto;max-height:75vh}.wp-block-newspack-blocks-carousel figcaption{font-size:.6em}.wp-block-newspack-blocks-carousel .entry-title{margin:0 0 .25em}.wp-block-newspack-blocks-carousel .entry-title a{color:#fff;text-decoration:none}.wp-block-newspack-blocks-carousel .entry-meta{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em}.wp-block-newspack-blocks-carousel .entry-meta .byline:not(:last-child){margin-left:1.5em}.wp-block-newspack-blocks-carousel .cat-links{color:#fff;font-size:.6em;font-weight:700;margin:0 0 .5em}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label{align-items:center}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label .flag+a{margin-right:.5em}.wp-block-newspack-blocks-carousel .cat-links a{text-decoration:none}.wp-block-newspack-blocks-carousel .avatar{border-radius:100%;display:block;margin-left:.5em}.wp-block-newspack-blocks-carousel .swiper-button-play,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-pause{display:block}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-play{display:none}.wp-block-newspack-blocks-carousel .author-avatar,.wp-block-newspack-blocks-carousel .byline,.wp-block-newspack-blocks-carousel .cat-links,.wp-block-newspack-blocks-carousel .posted-on,.wp-block-newspack-blocks-carousel .tags-links{clip:auto;height:auto;position:relative;width:auto}.wp-block-newspack-blocks-carousel.hide-controls button{display:none;visibility:hidden}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-2 article .entry-title{font-size:1.4em}.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-meta{font-size:.7em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-wrapper,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-wrapper{padding:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:.9em}.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title a,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title a{-webkit-line-clamp:2}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-meta{font-size:.7em}}.wpnbpc .entry-sponsors{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;width:100%}.wpnbpc .entry-sponsors.plus-author{font-size:.9em}.wpnbpc .entry-sponsors.plus-author:not(:last-child){margin-bottom:.5rem}.wpnbpc .sponsor-logos{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;line-height:1}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<?php return array('dependencies' => array('wp-a11y', 'wp-dom-ready', 'wp-escape-html', 'wp-i18n'), 'version' => '
|
|
1
|
+
<?php return array('dependencies' => array('wp-a11y', 'wp-dom-ready', 'wp-escape-html', 'wp-i18n'), 'version' => '27a033179adad872b5ad');
|
package/dist/carousel/view.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@font-face{font-family:swiper-icons;font-style:normal;font-weight:400;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")}:root{--swiper-theme-color:#007aff}:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.swiper-lazy-preloader{border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid transparent;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:var(--swiper-navigation-size);justify-content:center;margin-top:calc(0px - var(--swiper-navigation-size)/2);position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/44*27);z-index:10}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center;width:100%}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);font-variant:normal;letter-spacing:0;line-height:1;text-transform:none!important}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{left:auto;right:var(--swiper-navigation-sides-offset,10px)}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);left:0;top:var(--swiper-pagination-top,auto);width:100%}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))}button.swiper-pagination-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:var(--swiper-pagination-bullet-opacity,1)}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:var(--swiper-pagination-left,auto);right:var(--swiper-pagination-right,8px);top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0;width:100%}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{height:100%;left:0;top:0;width:var(--swiper-pagination-progressbar-size,4px)}.swiper-pagination-lock{display:none}.swiper-scrollbar{background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1));border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{bottom:var(--swiper-scrollbar-bottom,4px);height:var(--swiper-scrollbar-size,4px);left:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:var(--swiper-scrollbar-top,auto);width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);left:var(--swiper-scrollbar-left,auto);position:absolute;right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);width:var(--swiper-scrollbar-size,4px);z-index:50}.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;left:0;position:relative;top:0;width:100%}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:0 0;visibility:hidden;width:100%;z-index:1}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0}.swiper-cube .swiper-cube-shadow:before{background:#000;bottom:0;content:"";filter:blur(50px);left:0;position:absolute;right:0;top:0}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{backface-visibility:hidden;pointer-events:none;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}
|
|
2
|
-
.newspack-preview-label{background:#ffc000;border-radius:2px;font-family:sans-serif;font-size:10px;left:5px;padding:0 4px;position:absolute;text-transform:uppercase;top:5px;z-index:1}.wp-block-newspack-blocks-carousel{margin-top:0;position:relative}.wp-block-newspack-blocks-carousel article{margin-bottom:0;max-width:100%;overflow-wrap:break-word;padding:0;position:relative;word-break:break-word}.wp-block-newspack-blocks-carousel article a{color:#fff}.wp-block-newspack-blocks-carousel article a:active,.wp-block-newspack-blocks-carousel article a:focus,.wp-block-newspack-blocks-carousel article a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.2em}.wp-block-newspack-blocks-carousel article .entry-title a{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:3;max-height:3.5625em;overflow:hidden;text-overflow:ellipsis}.wp-block-newspack-blocks-carousel article .avatar{height:1.8em;width:1.8em}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.6em}.wp-block-newspack-blocks-carousel article .avatar{height:40px;width:40px}}.wp-block-newspack-blocks-carousel article .entry-wrapper{background-color:rgba(0,0,0,.5);bottom:0;color:#fff;left:0;padding:1.5em;position:absolute;right:0}.wp-block-newspack-blocks-carousel article .entry-meta{color:#fff;font-size:.8em;margin-bottom:0}.wp-block-newspack-blocks-carousel article .entry-meta a{color:#fff;font-weight:700;text-decoration:none}.wp-block-newspack-blocks-carousel article .entry-meta a:active,.wp-block-newspack-blocks-carousel article .entry-meta a:focus,.wp-block-newspack-blocks-carousel article .entry-meta a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-caption{margin-top:var(--wp--preset--spacing--00,var(--wp--preset--spacing--20,.5rem));width:100%}.wp-block-newspack-blocks-carousel article .entry-caption figcaption{color:#fff;font-size:var(--wp--preset--font-size--x-small,var(--newspack-theme-font-size-sm,.8em));line-height:var(--wp--custom--line-height--x-small,var(--newspack-theme-font-line-height-body,1.6))}.wp-block-newspack-blocks-carousel article .entry-caption figcaption a{font-weight:400;text-decoration:underline}.wp-block-newspack-blocks-carousel .post-thumbnail{height:100%;margin:0;padding:0;position:relative;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a,.wp-block-newspack-blocks-carousel .post-thumbnail img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a.image-fit-contain,.wp-block-newspack-blocks-carousel .post-thumbnail img.image-fit-contain{-o-object-fit:contain;object-fit:contain}.wp-block-newspack-blocks-carousel__placeholder{background:#f1f1f1;height:420px}.wp-block-newspack-blocks-carousel .swiper-initialized .wp-block-newspack-blocks-carousel__placeholder{height:100%}.wp-block-newspack-blocks-carousel p{white-space:normal}.wp-block-newspack-blocks-carousel .swiper-pagination-bullets{align-items:flex-end;bottom:0;display:flex;flex-wrap:wrap;height:calc(1.5em + 12px);justify-content:center;padding:0;position:relative}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet{background:#000;border-radius:6px;display:inline-block;height:12px;margin:0 4px;opacity:.5;padding:0;transition:box-shadow .25s,opacity .25s,width .25s;width:12px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #000;outline:0}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active,.wp-block-newspack-blocks-carousel .swiper-pagination-bullet[selected]{opacity:1;outline:0;width:24px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet span{height:1px;overflow:hidden;position:absolute!important;width:1px;clip:rect(1px,1px,1px,1px);white-space:nowrap}.wp-block-newspack-blocks-carousel .swiper-button{background-color:rgba(0,0,0,.5);background-position:50%;background-repeat:no-repeat;background-size:24px;border:0;border-radius:4px;box-shadow:none;cursor:pointer;height:48px;margin:0;padding:0;transition:background-color .25s,box-shadow .25s;width:48px}.wp-block-newspack-blocks-carousel .swiper-button:focus,.wp-block-newspack-blocks-carousel .swiper-button:hover{background-color:rgba(0,0,0,.75)}.wp-block-newspack-blocks-carousel .swiper-button:focus{box-shadow:inset 0 0 0 2px rgba(0,0,0,.75),inset 0 0 0 4px #fff;outline:0}.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:none;left:1.5em;margin-top:-24px;right:auto}@media only screen and (min-width:600px){.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:block}}.wp-block-newspack-blocks-carousel .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-button-prev:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-prev:after{content:none}.wp-block-newspack-blocks-carousel .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M5.88 4.12 13.76 12l-7.88 7.88L8 22l10-10L8 2z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");left:auto;right:1.5em}.wp-block-newspack-blocks-carousel .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M18 4.12 10.12 12 18 19.88 15.88 22l-10-10 10-10z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M6 19h4V5H6zm8-14v14h4V5z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");display:none;margin-top:0;position:absolute;right:1.5em;top:1.5em;transform:none;z-index:9}.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M8 5v14l11-7z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-slide{height:auto;max-height:75vh}.wp-block-newspack-blocks-carousel figcaption{font-size:.6em}.wp-block-newspack-blocks-carousel .entry-title{margin:0 0 .25em}.wp-block-newspack-blocks-carousel .entry-title a{color:#fff;text-decoration:none}.wp-block-newspack-blocks-carousel .entry-meta{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em}.wp-block-newspack-blocks-carousel .entry-meta .byline:not(:last-child){margin-right:1.5em}.wp-block-newspack-blocks-carousel .cat-links{color:#fff;font-size:.6em;font-weight:700;margin:0 0 .5em}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label{align-items:center}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label .flag+a{margin-left:.5em}.wp-block-newspack-blocks-carousel .cat-links a{text-decoration:none}.wp-block-newspack-blocks-carousel .avatar{border-radius:100%;display:block;margin-right:.5em}.wp-block-newspack-blocks-carousel .swiper-button-play,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-pause{display:block}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-play{display:none}.wp-block-newspack-blocks-carousel .author-avatar,.wp-block-newspack-blocks-carousel .byline,.wp-block-newspack-blocks-carousel .cat-links,.wp-block-newspack-blocks-carousel .posted-on,.wp-block-newspack-blocks-carousel .tags-links{clip:auto;height:auto;position:relative;width:auto}.wp-block-newspack-blocks-carousel.hide-controls button{display:none;visibility:hidden}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-2 article .entry-title{font-size:1.4em}.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-meta{font-size:.7em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-wrapper,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-wrapper{padding:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:.9em}.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title a,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title a{-webkit-line-clamp:2}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-meta{font-size:.7em}}.wpnbpc .entry-sponsors{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;width:100%}.wpnbpc .entry-sponsors.plus-author{font-size:.9em}.wpnbpc .entry-sponsors.plus-author:not(:last-child){margin-bottom:.5rem}.wpnbpc .sponsor-logos{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;line-height:1}
|
|
2
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}.newspack-preview-label{background:#ffc000;border-radius:2px;font-family:sans-serif;font-size:10px;left:5px;padding:0 4px;position:absolute;text-transform:uppercase;top:5px;z-index:1}.wp-block-newspack-blocks-carousel{margin-top:0;position:relative}.wp-block-newspack-blocks-carousel article{margin-bottom:0;max-width:100%;overflow-wrap:break-word;padding:0;position:relative;word-break:break-word}.wp-block-newspack-blocks-carousel article a{color:#fff}.wp-block-newspack-blocks-carousel article a:active,.wp-block-newspack-blocks-carousel article a:focus,.wp-block-newspack-blocks-carousel article a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.2em}.wp-block-newspack-blocks-carousel article .entry-title a{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:3;max-height:3.5625em;overflow:hidden;text-overflow:ellipsis}.wp-block-newspack-blocks-carousel article .avatar{height:1.8em;width:1.8em}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel article .entry-title{font-size:1.6em}.wp-block-newspack-blocks-carousel article .avatar{height:40px;width:40px}}.wp-block-newspack-blocks-carousel article .entry-wrapper{background-color:rgba(0,0,0,.5);bottom:0;color:#fff;left:0;padding:1.5em;position:absolute;right:0}.wp-block-newspack-blocks-carousel article .entry-meta{color:#fff;font-size:.8em;margin-bottom:0}.wp-block-newspack-blocks-carousel article .entry-meta a{color:#fff;font-weight:700;text-decoration:none}.wp-block-newspack-blocks-carousel article .entry-meta a:active,.wp-block-newspack-blocks-carousel article .entry-meta a:focus,.wp-block-newspack-blocks-carousel article .entry-meta a:hover{color:hsla(0,0%,100%,.75)}.wp-block-newspack-blocks-carousel article .entry-caption{margin-top:var(--wp--preset--spacing--00,var(--wp--preset--spacing--20,.5rem));width:100%}.wp-block-newspack-blocks-carousel article .entry-caption figcaption{color:#fff;font-size:var(--wp--preset--font-size--x-small,var(--newspack-theme-font-size-sm,.8em));line-height:var(--wp--custom--line-height--x-small,var(--newspack-theme-font-line-height-body,1.6))}.wp-block-newspack-blocks-carousel article .entry-caption figcaption a{font-weight:400;text-decoration:underline}.wp-block-newspack-blocks-carousel .post-thumbnail{height:100%;margin:0;padding:0;position:relative;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a,.wp-block-newspack-blocks-carousel .post-thumbnail img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-newspack-blocks-carousel .post-thumbnail a.image-fit-contain,.wp-block-newspack-blocks-carousel .post-thumbnail img.image-fit-contain{-o-object-fit:contain;object-fit:contain}.wp-block-newspack-blocks-carousel__placeholder{background:#f7f7f7;height:420px}.wp-block-newspack-blocks-carousel .swiper-initialized .wp-block-newspack-blocks-carousel__placeholder{height:100%}.wp-block-newspack-blocks-carousel p{white-space:normal}.wp-block-newspack-blocks-carousel .swiper-pagination-bullets{align-items:flex-end;bottom:0;display:flex;flex-wrap:wrap;height:calc(1.5em + 12px);justify-content:center;padding:0;position:relative}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet{background:#000;border-radius:6px;display:inline-block;height:12px;margin:0 4px;opacity:.5;padding:0;transition:box-shadow .25s,opacity .25s,width .25s;width:12px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px #f0f0f0;outline:0}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active,.wp-block-newspack-blocks-carousel .swiper-pagination-bullet[selected]{opacity:1;outline:0;width:24px}.wp-block-newspack-blocks-carousel .swiper-pagination-bullet span{height:1px;overflow:hidden;position:absolute!important;width:1px;clip:rect(1px,1px,1px,1px);white-space:nowrap}.wp-block-newspack-blocks-carousel .swiper-button{background-color:rgba(0,0,0,.5);background-position:50%;background-repeat:no-repeat;background-size:24px;border:0;border-radius:4px;box-shadow:none;cursor:pointer;height:48px;margin:0;padding:0;transition:background-color .25s,box-shadow .25s;width:48px}.wp-block-newspack-blocks-carousel .swiper-button:focus,.wp-block-newspack-blocks-carousel .swiper-button:hover{background-color:rgba(0,0,0,.702)}.wp-block-newspack-blocks-carousel .swiper-button:focus{box-shadow:inset 0 0 0 2px rgba(0,0,0,.702),inset 0 0 0 4px #fff;outline:0}.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:none;left:1.5em;margin-top:-24px;right:auto}@media only screen and (min-width:600px){.wp-block-newspack-blocks-carousel .swiper-button-next,.wp-block-newspack-blocks-carousel .swiper-button-prev{display:block}}.wp-block-newspack-blocks-carousel .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-button-prev:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-next:after,.wp-block-newspack-blocks-carousel .swiper-rtl .swiper-button-prev:after{content:none}.wp-block-newspack-blocks-carousel .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M5.88 4.12 13.76 12l-7.88 7.88L8 22l10-10L8 2z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");left:auto;right:1.5em}.wp-block-newspack-blocks-carousel .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M18 4.12 10.12 12 18 19.88 15.88 22l-10-10 10-10z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M6 19h4V5H6zm8-14v14h4V5z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");display:none;margin-top:0;position:absolute;right:1.5em;top:1.5em;transform:none;z-index:9}.wp-block-newspack-blocks-carousel .swiper-button-play{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27%3E%3Cpath fill=%27%23fff%27 d=%27M8 5v14l11-7z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E")}.wp-block-newspack-blocks-carousel .swiper-slide{height:auto;max-height:75vh}.wp-block-newspack-blocks-carousel figcaption{font-size:.6em}.wp-block-newspack-blocks-carousel .entry-title{margin:0 0 .25em}.wp-block-newspack-blocks-carousel .entry-title a{color:#fff;text-decoration:none}.wp-block-newspack-blocks-carousel .entry-meta{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em}.wp-block-newspack-blocks-carousel .entry-meta .byline:not(:last-child){margin-right:1.5em}.wp-block-newspack-blocks-carousel .cat-links{color:#fff;font-size:.6em;font-weight:700;margin:0 0 .5em}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label{align-items:center}.wp-block-newspack-blocks-carousel .cat-links.sponsor-label .flag+a{margin-left:.5em}.wp-block-newspack-blocks-carousel .cat-links a{text-decoration:none}.wp-block-newspack-blocks-carousel .avatar{border-radius:100%;display:block;margin-right:.5em}.wp-block-newspack-blocks-carousel .swiper-button-play,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-pause{display:block}.wp-block-newspack-blocks-carousel .swiper-button-pause,.wp-block-newspack-blocks-carousel.wp-block-newspack-blocks-carousel__autoplay-playing .swiper-button-play{display:none}.wp-block-newspack-blocks-carousel .author-avatar,.wp-block-newspack-blocks-carousel .byline,.wp-block-newspack-blocks-carousel .cat-links,.wp-block-newspack-blocks-carousel .posted-on,.wp-block-newspack-blocks-carousel .tags-links{clip:auto;height:auto;position:relative;width:auto}.wp-block-newspack-blocks-carousel.hide-controls button{display:none;visibility:hidden}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-2 article .entry-title{font-size:1.4em}.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-title{font-size:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-3 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-4 article .entry-meta{font-size:.7em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-wrapper,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-wrapper{padding:1em}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:1.2em}}@media only screen and (min-width:1168px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title{font-size:.9em}.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-title a,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-title a{-webkit-line-clamp:2}}@media only screen and (min-width:782px){.wp-block-newspack-blocks-carousel.slides-per-view-5 article .entry-meta,.wp-block-newspack-blocks-carousel.slides-per-view-6 article .entry-meta{font-size:.7em}}.wpnbpc .entry-sponsors{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;width:100%}.wpnbpc .entry-sponsors.plus-author{font-size:.9em}.wpnbpc .entry-sponsors.plus-author:not(:last-child){margin-bottom:.5rem}.wpnbpc .sponsor-logos{align-items:center;display:inline-flex;flex-wrap:wrap;gap:.5em;line-height:1}
|
package/dist/donate/view-rtl.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.wpbnbd.is-style-default .wpbnbd__button{padding:.38rem .76rem}.wpbnbd.is-style-default .wpbnbd__button:focus,.wpbnbd.is-style-default .wpbnbd__button:hover{background:#f1f1f1}.wpbnbd.is-style-default .wpbnbd__tiers__selection>button{flex:1}.wpbnbd.is-style-default.wpbnbd--frequency-based .wpbnbd__button{border-width:0 0 1px}.wpbnbd.is-style-default.wpbnbd--frequency-based .wpbnbd__button--active{background:#fff;border-bottom:0}.wpbnbd.is-style-default.wpbnbd-frequencies--2 .tab-container .freq-label:nth-of-type(2){border-right-width:1px}.wpbnbd.is-style-default.wpbnbd-frequencies--3 .tab-container .freq-label:nth-of-type(2){border-right-width:1px;border-left-width:1px}.wpbnbd.is-style-alternate{border-color:#f1f1f1;border-radius:5px}.wpbnbd.is-style-alternate .thanks{margin:1.12rem}.wpbnbd.is-style-alternate .money-input{max-width:100%}.wpbnbd.is-style-alternate .money-input input[type=number]{max-width:100%;width:100%}.wpbnbd.is-style-alternate.untiered .input-container{margin:1.12rem}.wpbnbd.is-style-alternate.tiered .tiers .tier-label{background:#f1f1f1;border-color:#f1f1f1;margin:0;text-align:center}.wpbnbd.is-style-alternate.tiered .money-input{bottom:0;right:0;left:0}.wpbnbd.is-style-alternate .tab-container .freq-label,.wpbnbd.is-style-alternate .wpbnbd__tiers__selection{background:#f1f1f1;border-color:#f1f1f1}.wpbnbd.is-style-alternate .wpbnbd__tiers__selection{border-radius:5px;margin-right:auto;margin-left:auto;padding:5px;width:-moz-min-content;width:min-content}.wpbnbd.is-style-alternate .wpbnbd__tiers__selection .wpbnbd__button{color:#111;padding:0 15px}.wpbnbd.is-style-alternate .wpbnbd__tiers .wpbnbd__button{border:.19rem solid transparent}.wpbnbd.is-style-alternate .wpbnbd__tiers .wpbnbd__button--active{border-color:#fff}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active:after,.wpbnbd.is-style-alternate .wpbnbd__tiers .wpbnbd__button--active{background:#fff;border-radius:5px;box-shadow:0 0 0 1px #ccc}.wpbnbd.is-style-alternate .tab-container .freq-label{border-width:1px;padding:calc(.57rem + 1px) .5rem;position:relative}@media only screen and (min-width:600px){.wpbnbd.is-style-alternate .tab-container .freq-label{padding:calc(.57rem + 1px) .76rem}}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active{color:#111}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active:after{box-sizing:content-box;content:"";display:block;inset:.19rem;position:absolute;z-index:-1}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active:hover{background:#f1f1f1}.wpbnbd.is-style-alternate .frequencies input[type=radio]:checked~.tiers{display:grid;grid-gap:.28rem;grid-template-columns:repeat(2,1fr);margin:1.12rem}@media only screen and (min-width:600px){.wpbnbd.is-style-alternate .frequencies input[type=radio]:checked~.tiers{grid-template-columns:repeat(4,1fr);grid-gap:.56rem}}.wpbnbd.is-style-alternate.is-style-default button{border-top-right-radius:0;border-top-left-radius:0;margin:0 -1px -1px;width:calc(100% + 2px)}@media only screen and (min-width:600px){.wpbnbd.is-style-alternate.wpbnbd--nyp-disabled .frequencies input[type=radio]:checked~.tiers{grid-template-columns:repeat(3,1fr)}}.wpbnbd.is-style-minimal{border:none}.wpbnbd.is-style-minimal form{text-align:center}.wpbnbd.is-style-minimal .thanks{margin:1.12rem 0}.wpbnbd.is-style-minimal .money-input{max-width:100%}.wpbnbd.is-style-minimal .money-input input[type=number]{max-width:100%;width:100%}.wpbnbd.is-style-minimal.untiered .input-container{margin:.56rem 0 1.12rem;text-align:right}.wpbnbd.is-style-minimal .wpbnbd__tiers__selection .wpbnbd__button{border:none;flex-basis:100%;padding:8px;position:relative}.wpbnbd.is-style-minimal .wpbnbd__tiers__selection .wpbnbd__button:after{background:#ccc;bottom:0;content:"";display:block;height:1px;right:0;position:absolute;width:100%}.wpbnbd.is-style-minimal .wpbnbd__tiers__selection .wpbnbd__button--active:after{background:#111;height:3px}.wpbnbd.is-style-minimal .wpbnbd__tiers__back-button{margin-bottom:10px}.wpbnbd.is-style-minimal.tiered .tiers .tier-label{align-items:center;background:transparent;border:none;color:#767676;display:grid;font-family:inherit;font-weight:inherit;grid-gap:.25rem;grid-template-columns:auto 1fr;margin:0;padding:0;text-align:right}.wpbnbd.is-style-minimal.tiered .tiers .tier-label:before{background:#fff;border:1px solid #ccc;border-radius:100%;box-shadow:inset 0 0 0 3px #fff;content:"";display:block;height:20px;padding:3px;width:20px}.wpbnbd.is-style-minimal.tiered .tiers .tier-label:hover{color:inherit}.wpbnbd.is-style-minimal.tiered .tiers input[type=radio]:checked+.tier-select-label{background:none;color:inherit}.wpbnbd.is-style-minimal.tiered .tiers input[type=radio]:checked+.tier-select-label:before{background:currentcolor}.wpbnbd.is-style-minimal.tiered .money-input{bottom:0;right:0;left:0}.wpbnbd.is-style-minimal .tab-container .freq-label{background:transparent;border:none;box-shadow:0 3px 0 #fff,0 4px 0 0 #ccc;padding:.38rem 0;transition:none}@media only screen and (min-width:782px){.wpbnbd.is-style-minimal .tab-container .freq-label{padding-right:.76rem;padding-left:.76rem}}.wpbnbd.is-style-minimal .tab-container .freq-label:before{border-color:#ccc;border-width:1px}.wpbnbd.is-style-minimal .tab-container .freq-label.wpbnbd__button--active{box-shadow:0 4px 0 currentcolor}.wpbnbd.is-style-minimal .frequency input[type=radio]:checked~.tiers{display:flex;flex-wrap:wrap;grid-gap:1.12rem;justify-content:center;margin:1.12rem 0}@media only screen and (min-width:600px){.wpbnbd.is-style-minimal .frequency input[type=radio]:checked~.tiers{display:grid;grid-gap:.56rem;grid-template-columns:repeat(4,1fr)}}.wpbnbd.is-style-minimal button[type=submit]{margin:0 auto;min-width:50%}@media only screen and (min-width:600px){.wpbnbd.is-style-minimal.wpbnbd--nyp-disabled .frequency input[type=radio]:checked~.tiers{grid-template-columns:repeat(3,1fr)}}.wpbnbd.is-style-modern{background:none;border:none;font-family:var(--newspack-ui-font-family,system-ui,sans-serif);position:relative}.wpbnbd.is-style-modern,.wpbnbd.is-style-modern .thanks{font-size:var(--newspack-ui-font-size-s,16px);line-height:var(--newspack-ui-line-height-s,1.5)}.wpbnbd.is-style-modern .thanks{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-bottom:0;border-top:0;color:var(--newspack-ui-color-neutral-60,#6c6c6c);margin:0;padding:0 var(--newspack-ui-spacer-5,24px) var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern .money-input{border-color:var(--newspack-ui-color-input-border,#ccc);color:var(--newspack-ui-color-neutral-90,#1e1e1e);font-size:var(--newspack-ui-font-size-s,16px);right:var(--newspack-ui-spacer-5,24px);line-height:var(--newspack-ui-line-height-s,1.5);max-width:100%;overflow:hidden;left:var(--newspack-ui-spacer-5,24px);transition:border-color 125ms ease-in-out,outline 125ms ease-in-out}.wpbnbd.is-style-modern .money-input:focus-within{border-color:var(--newspack-ui-color-input-border-focus,#1e1e1e);outline:2px solid var(--newspack-ui-color-input-border-focus,#1e1e1e);outline-offset:-1px}.wpbnbd.is-style-modern .money-input .currency{background:var(--newspack-ui-color-neutral-5,#f7f7f7);font-size:var(--newspack-ui-font-size-xs,14px);font-weight:600;line-height:var(--newspack-ui-spacer-9,48px);margin:0;padding:0;text-align:center;width:var(--newspack-ui-spacer-9,48px)}.wpbnbd.is-style-modern .money-input input[type=number]{font-family:inherit;font-size:inherit;font-weight:400;line-height:inherit;max-width:100%;padding:calc(var(--newspack-ui-spacer-2, 12px) - 1px);width:100%}.wpbnbd.is-style-modern .tab-container .freq-label,.wpbnbd.is-style-modern .wpbnbd__tiers__selection{background:var(--newspack-ui-color-neutral-10,#f0f0f0);border:none}.wpbnbd.is-style-modern .tab-container .freq-label.wpbnbd__button--active:after,.wpbnbd.is-style-modern .wpbnbd__tiers .wpbnbd__button--active{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-radius:var(--newspack-ui-border-radius-s,4px)}.wpbnbd.is-style-modern .wpbnbd__button{font-family:inherit;font-size:inherit;line-height:inherit;text-transform:none}.wpbnbd.is-style-modern .frequencies{font-family:inherit;font-size:var(--newspack-ui-font-size-s,16px);line-height:var(--newspack-ui-line-height-s,1.5)}.wpbnbd.is-style-modern .frequencies input[type=radio]:checked~.tiers{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-bottom:0;border-radius:var(--newspack-ui-border-radius-l,8px) var(--newspack-ui-border-radius-l,8px) 0 0;display:grid;gap:calc(var(--newspack-ui-spacer-base, 8px)/2);grid-template-columns:repeat(2,1fr);margin:var(--newspack-ui-spacer-2,12px) 0 0;padding:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--nyp-disabled .frequencies input[type=radio]:checked~.tiers{grid-template-columns:repeat(3,1fr)}.wpbnbd.is-style-modern.wpbnbd--frequency-based form:after{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-radius:0 0 var(--newspack-ui-border-radius-l,8px) var(--newspack-ui-border-radius-l,8px);border-top:0;bottom:0;box-sizing:border-box;content:"";display:block;font-size:var(--newspack-ui-font-size-s,16px);height:calc(var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-2, 12px) + 1.5em + var(--newspack-ui-spacer-2, 12px) + var(--newspack-ui-spacer-5, 24px));position:absolute;width:100%;z-index:0}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container{background:var(--newspack-ui-color-neutral-10,#f0f0f0);border-radius:var(--newspack-ui-border-radius-m,6px);gap:calc(var(--newspack-ui-spacer-base, 8px)/2);margin-right:auto;margin-left:auto;padding:calc(var(--newspack-ui-spacer-base, 8px)/2);width:-moz-min-content;width:min-content}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container:has(:nth-child(3)){max-width:300px;width:100%}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container:has(:nth-child(3)) .freq-label{padding-right:calc(var(--newspack-ui-spacer-2, 12px) - 1px);padding-left:calc(var(--newspack-ui-spacer-2, 12px) - 1px);width:100%}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label{background:transparent;border:1px solid transparent;border-radius:var(--newspack-ui-border-radius-s,4px);color:var(--newspack-ui-color-neutral-60,#6c6c6c);font-size:var(--newspack-ui-font-size-xs,14px);line-height:var(--newspack-ui-spacer-5,24px);padding:calc(var(--newspack-ui-spacer-base, 8px) - 1px) calc(var(--newspack-ui-spacer-3, 16px) - 1px);position:relative;transition:all 125ms ease-in-out;width:auto}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label:hover{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label:focus{outline:none;text-decoration:none}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label:focus-visible{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label.wpbnbd__button--active{background:var(--newspack-ui-color-neutral-0,#fff);border-color:var(--newspack-ui-color-neutral-30,#ddd);color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.untiered .input-container{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-bottom:0;border-radius:var(--newspack-ui-border-radius-l,8px) var(--newspack-ui-border-radius-l,8px) 0 0;margin:var(--newspack-ui-spacer-2,12px) 0 0;padding:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.untiered .money-input{right:0;left:0}.wpbnbd.is-style-modern.wpbnbd--frequency-based.untiered .donate-label{display:block;margin-bottom:var(--newspack-ui-spacer-base,8px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered{font-size:var(--newspack-ui-font-size-s,16px);line-height:var(--newspack-ui-line-height-s,1.5)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers{color:var(--newspack-ui-color-neutral-60,#6c6c6c);position:relative}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers .tier-label{background:var(--newspack-ui-color-neutral-10,#f0f0f0);border:0;border-radius:var(--newspack-ui-border-radius-s,4px);color:inherit;font-family:inherit;font-weight:600;margin:0;padding:var(--newspack-ui-spacer-2,12px) var(--newspack-ui-spacer-5,24px);text-align:center;transition:background 125ms ease-in-out,color 125ms ease-in-out}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers .tier-label:hover{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers .odl{bottom:calc(var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-9, 48px) + var(--newspack-ui-spacer-base, 8px));color:var(--newspack-ui-color-neutral-90,#1e1e1e);font-weight:600;right:0;padding:0 var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input.other-input:checked+label{margin-bottom:calc(var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-base, 8px) + var(--newspack-ui-spacer-9, 48px))}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input[type=radio]:checked+.tier-label,.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input[type=radio]:focus+.tier-label{background:var(--newspack-ui-color-neutral-90,#1e1e1e);color:var(--newspack-ui-color-neutral-0,#fff);outline:none}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input[type=radio]:focus-visible+.tier-label{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .money-input{bottom:var(--newspack-ui-spacer-5,24px);right:var(--newspack-ui-spacer-5,24px);left:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button,.wpbnbd.is-style-modern.wpbnbd--frequency-based button{font-family:inherit;font-size:var(--newspack-ui-font-size-s,16px);font-weight:600;line-height:var(--newspack-ui-line-height-s,1.5);margin:0}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]{margin:0 calc(1px + var(--newspack-ui-spacer-5, 24px)) calc(1px + var(--newspack-ui-spacer-5, 24px));padding:var(--newspack-ui-spacer-2,12px) var(--newspack-ui-spacer-5,24px);position:relative;transition:opacity 125ms ease-in-out,outline 125ms ease-in-out;width:calc(100% - var(--newspack-ui-spacer-5, 24px)*2 - 2px);z-index:1}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button:disabled,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]:disabled{pointer-events:none}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button:hover,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]:hover{opacity:.8}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button:focus,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]:focus{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--tiers-based{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection{border-radius:var(--newspack-ui-border-radius-m,6px);gap:calc(var(--newspack-ui-spacer-base, 8px)/2);margin:0 auto var(--newspack-ui-spacer-2,12px);padding:calc(var(--newspack-ui-spacer-base, 8px)/2);width:-moz-min-content;width:min-content}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection:has(:nth-child(3)){max-width:300px;width:100%}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection:has(:nth-child(3))>.wpbnbd__button{padding-right:calc(var(--newspack-ui-spacer-2, 12px) - 1px);padding-left:calc(var(--newspack-ui-spacer-2, 12px) - 1px);width:100%}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button{border-radius:var(--newspack-ui-border-radius-s,4px);color:var(--newspack-ui-color-neutral-60,#6c6c6c);font-size:var(--newspack-ui-font-size-xs,14px);font-weight:600;line-height:var(--newspack-ui-spacer-5,24px);overflow:hidden;padding:calc(var(--newspack-ui-spacer-base, 8px) - 1px) calc(var(--newspack-ui-spacer-3, 16px) - 1px);transition:all 125ms ease-in-out;width:auto}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button--active,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button:hover{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button:focus{outline:none}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button:focus-visible{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__heading{align-self:flex-start;font-family:inherit;font-size:var(--newspack-ui-font-size-m,clamp(1.125rem,.929rem + .402vw,1.25rem));font-weight:700;line-height:var(--newspack-ui-line-height-m,1.6)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__options{margin-right:calc(var(--newspack-ui-spacer-2, 12px)/-2);margin-left:calc(var(--newspack-ui-spacer-2, 12px)/-2)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier{background:var(--newspack-ui-color-neutral-0,#fff);border-color:var(--newspack-ui-color-neutral-30,#ddd);border-radius:var(--newspack-ui-border-radius-m,6px);margin-right:calc(var(--newspack-ui-spacer-2, 12px)/2);margin-left:calc(var(--newspack-ui-spacer-2, 12px)/2);padding:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier--recommended{border:1px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline:1px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:-2px}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier:not(.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier--recommended) .submit-button:hover,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier:not(.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier--recommended) button[type=submit]:hover{background:var(--newspack-ui-color-neutral-5,#f7f7f7)!important;opacity:1}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__top{align-items:center;flex-wrap:wrap-reverse;gap:calc(var(--newspack-ui-spacer-base, 8px)/2) var(--newspack-ui-spacer-3,16px);margin-bottom:calc(var(--newspack-ui-spacer-base, 8px)/2)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__recommend-label{background:var(--newspack-ui-color-neutral-90,#1e1e1e);border-radius:var(--newspack-ui-border-radius-2xs,2px);color:var(--newspack-ui-color-neutral-0,#fff);font-family:inherit;font-size:var(--newspack-ui-font-size-xs,14px);font-weight:600;height:auto;line-height:var(--newspack-ui-line-height-xs,1.4286);padding:calc(var(--newspack-ui-spacer-base, 8px)*.25) calc(var(--newspack-ui-spacer-base, 8px)*.75);word-break:break-word}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__amount{margin-bottom:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__amount__value{color:var(--newspack-ui-color-neutral-60,#6c6c6c);font-size:var(--newspack-ui-font-size-2xs,12px);line-height:var(--newspack-ui-line-height-2xs,1.3333)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__amount .amount{color:var(--newspack-ui-color-neutral-90,#1e1e1e);font-family:inherit;font-size:var(--newspack-ui-font-size-xl,clamp(1.375rem,.394rem + 2.008vw,2rem));line-height:var(--newspack-ui-line-height-xl,1.375);word-break:break-all}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__description{font-size:var(--newspack-ui-font-size-xs,14px);line-height:var(--newspack-ui-line-height-xs,1.4286);margin:var(--newspack-ui-spacer-5,24px) 0 0}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers .submit-button,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers button[type=submit]{border-width:1px;font-family:inherit;font-size:var(--newspack-ui-font-size-s,16px);font-weight:600;line-height:var(--newspack-ui-line-height-s,1.5);margin:auto 0 0;padding:calc(var(--newspack-ui-spacer-2, 12px) - 1px) calc(var(--newspack-ui-spacer-5, 24px) - 1px);transition:background 125ms ease-in-out,border-color 125ms ease-in-out,opacity 125ms ease-in-out,outline 125ms ease-in-out}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers .submit-button:hover,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers button[type=submit]:hover{opacity:.8}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers .submit-button:focus,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers button[type=submit]:focus{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd .tab-container .freq-label,.wpbnbd__button{background:#fff;border:0 solid #ccc;color:#767676;line-height:1.6;text-align:center;text-overflow:ellipsis}.wpbnbd .tab-container .freq-label--active,.wpbnbd .tab-container .freq-label:focus,.wpbnbd .tab-container .freq-label:hover,.wpbnbd__button--active,.wpbnbd__button:focus,.wpbnbd__button:hover{color:#111}.wpbnbd .tier-frequency,.wpbnbd__tiers__amount__value{font-size:13px}.wpbnbd .price-amount,.wpbnbd .woocommerce-Price-amount{display:inline;font-family:var(--newspack-theme-font-heading,sans-serif);font-size:29px;font-weight:700}.wpbnbd mark{background-color:transparent}.wpbnbd--selected-other .wp-block-newspack-blocks-donate__frequency-label{display:none}
|
|
1
|
+
:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600}.wpbnbd.is-style-default .wpbnbd__button{padding:.38rem .76rem}.wpbnbd.is-style-default .wpbnbd__button:focus,.wpbnbd.is-style-default .wpbnbd__button:hover{background:#f7f7f7}.wpbnbd.is-style-default .wpbnbd__tiers__selection>button{flex:1}.wpbnbd.is-style-default.wpbnbd--frequency-based .wpbnbd__button{border-width:0 0 1px}.wpbnbd.is-style-default.wpbnbd--frequency-based .wpbnbd__button--active{background:#fff;border-bottom:0}.wpbnbd.is-style-default.wpbnbd-frequencies--2 .tab-container .freq-label:nth-of-type(2){border-right-width:1px}.wpbnbd.is-style-default.wpbnbd-frequencies--3 .tab-container .freq-label:nth-of-type(2){border-right-width:1px;border-left-width:1px}.wpbnbd.is-style-alternate{border-color:#f7f7f7;border-radius:5px}.wpbnbd.is-style-alternate .thanks{margin:1.12rem}.wpbnbd.is-style-alternate .money-input{max-width:100%}.wpbnbd.is-style-alternate .money-input input[type=number]{max-width:100%;width:100%}.wpbnbd.is-style-alternate.untiered .input-container{margin:1.12rem}.wpbnbd.is-style-alternate.tiered .tiers .tier-label{background:#f7f7f7;border-color:#f7f7f7;margin:0;text-align:center}.wpbnbd.is-style-alternate.tiered .money-input{bottom:0;right:0;left:0}.wpbnbd.is-style-alternate .tab-container .freq-label,.wpbnbd.is-style-alternate .wpbnbd__tiers__selection{background:#f7f7f7;border-color:#f7f7f7}.wpbnbd.is-style-alternate .wpbnbd__tiers__selection{border-radius:5px;margin-right:auto;margin-left:auto;padding:5px;width:-moz-min-content;width:min-content}.wpbnbd.is-style-alternate .wpbnbd__tiers__selection .wpbnbd__button{color:#1e1e1e;padding:0 15px}.wpbnbd.is-style-alternate .wpbnbd__tiers .wpbnbd__button{border:.19rem solid transparent}.wpbnbd.is-style-alternate .wpbnbd__tiers .wpbnbd__button--active{border-color:#fff}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active:after,.wpbnbd.is-style-alternate .wpbnbd__tiers .wpbnbd__button--active{background:#fff;border-radius:5px;box-shadow:0 0 0 1px #ddd}.wpbnbd.is-style-alternate .tab-container .freq-label{border-width:1px;padding:calc(.57rem + 1px) .5rem;position:relative}@media only screen and (min-width:600px){.wpbnbd.is-style-alternate .tab-container .freq-label{padding:calc(.57rem + 1px) .76rem}}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active{color:#1e1e1e}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active:after{box-sizing:content-box;content:"";display:block;inset:.19rem;position:absolute;z-index:-1}.wpbnbd.is-style-alternate .tab-container .freq-label.wpbnbd__button--active:hover{background:#f7f7f7}.wpbnbd.is-style-alternate .frequencies input[type=radio]:checked~.tiers{display:grid;grid-gap:.28rem;grid-template-columns:repeat(2,1fr);margin:1.12rem}@media only screen and (min-width:600px){.wpbnbd.is-style-alternate .frequencies input[type=radio]:checked~.tiers{grid-template-columns:repeat(4,1fr);grid-gap:.56rem}}.wpbnbd.is-style-alternate.is-style-default button{border-top-right-radius:0;border-top-left-radius:0;margin:0 -1px -1px;width:calc(100% + 2px)}@media only screen and (min-width:600px){.wpbnbd.is-style-alternate.wpbnbd--nyp-disabled .frequencies input[type=radio]:checked~.tiers{grid-template-columns:repeat(3,1fr)}}.wpbnbd.is-style-minimal{border:none}.wpbnbd.is-style-minimal form{text-align:center}.wpbnbd.is-style-minimal .thanks{margin:1.12rem 0}.wpbnbd.is-style-minimal .money-input{max-width:100%}.wpbnbd.is-style-minimal .money-input input[type=number]{max-width:100%;width:100%}.wpbnbd.is-style-minimal.untiered .input-container{margin:.56rem 0 1.12rem;text-align:right}.wpbnbd.is-style-minimal .wpbnbd__tiers__selection .wpbnbd__button{border:none;flex-basis:100%;padding:8px;position:relative}.wpbnbd.is-style-minimal .wpbnbd__tiers__selection .wpbnbd__button:after{background:#ddd;bottom:0;content:"";display:block;height:1px;right:0;position:absolute;width:100%}.wpbnbd.is-style-minimal .wpbnbd__tiers__selection .wpbnbd__button--active:after{background:#1e1e1e;height:3px}.wpbnbd.is-style-minimal .wpbnbd__tiers__back-button{margin-bottom:10px}.wpbnbd.is-style-minimal.tiered .tiers .tier-label{align-items:center;background:transparent;border:none;color:#6c6c6c;display:grid;font-family:inherit;font-weight:inherit;grid-gap:.25rem;grid-template-columns:auto 1fr;margin:0;padding:0;text-align:right}.wpbnbd.is-style-minimal.tiered .tiers .tier-label:before{background:#fff;border:1px solid #ddd;border-radius:100%;box-shadow:inset 0 0 0 3px #fff;content:"";display:block;height:20px;padding:3px;width:20px}.wpbnbd.is-style-minimal.tiered .tiers .tier-label:hover{color:inherit}.wpbnbd.is-style-minimal.tiered .tiers input[type=radio]:checked+.tier-select-label{background:none;color:inherit}.wpbnbd.is-style-minimal.tiered .tiers input[type=radio]:checked+.tier-select-label:before{background:currentcolor}.wpbnbd.is-style-minimal.tiered .money-input{bottom:0;right:0;left:0}.wpbnbd.is-style-minimal .tab-container .freq-label{background:transparent;border:none;box-shadow:0 3px 0 #fff,0 4px 0 0 #ddd;padding:.38rem 0;transition:none}@media only screen and (min-width:782px){.wpbnbd.is-style-minimal .tab-container .freq-label{padding-right:.76rem;padding-left:.76rem}}.wpbnbd.is-style-minimal .tab-container .freq-label:before{border-color:#ddd;border-width:1px}.wpbnbd.is-style-minimal .tab-container .freq-label.wpbnbd__button--active{box-shadow:0 4px 0 currentcolor}.wpbnbd.is-style-minimal .frequency input[type=radio]:checked~.tiers{display:flex;flex-wrap:wrap;grid-gap:1.12rem;justify-content:center;margin:1.12rem 0}@media only screen and (min-width:600px){.wpbnbd.is-style-minimal .frequency input[type=radio]:checked~.tiers{display:grid;grid-gap:.56rem;grid-template-columns:repeat(4,1fr)}}.wpbnbd.is-style-minimal button[type=submit]{margin:0 auto;min-width:50%}@media only screen and (min-width:600px){.wpbnbd.is-style-minimal.wpbnbd--nyp-disabled .frequency input[type=radio]:checked~.tiers{grid-template-columns:repeat(3,1fr)}}.wpbnbd.is-style-modern{background:none;border:none;font-family:var(--newspack-ui-font-family,system-ui,sans-serif);position:relative}.wpbnbd.is-style-modern,.wpbnbd.is-style-modern .thanks{font-size:var(--newspack-ui-font-size-s,16px);line-height:var(--newspack-ui-line-height-s,1.5)}.wpbnbd.is-style-modern .thanks{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-bottom:0;border-top:0;color:var(--newspack-ui-color-neutral-60,#6c6c6c);margin:0;padding:0 var(--newspack-ui-spacer-5,24px) var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern .money-input{border-color:var(--newspack-ui-color-input-border,#ccc);color:var(--newspack-ui-color-neutral-90,#1e1e1e);font-size:var(--newspack-ui-font-size-s,16px);right:var(--newspack-ui-spacer-5,24px);line-height:var(--newspack-ui-line-height-s,1.5);max-width:100%;overflow:hidden;left:var(--newspack-ui-spacer-5,24px);transition:border-color 125ms ease-in-out,outline 125ms ease-in-out}.wpbnbd.is-style-modern .money-input:focus-within{border-color:var(--newspack-ui-color-input-border-focus,#1e1e1e);outline:2px solid var(--newspack-ui-color-input-border-focus,#1e1e1e);outline-offset:-1px}.wpbnbd.is-style-modern .money-input .currency{background:var(--newspack-ui-color-neutral-5,#f7f7f7);font-size:var(--newspack-ui-font-size-xs,14px);font-weight:600;line-height:var(--newspack-ui-spacer-9,48px);margin:0;padding:0;text-align:center;width:var(--newspack-ui-spacer-9,48px)}.wpbnbd.is-style-modern .money-input input[type=number]{font-family:inherit;font-size:inherit;font-weight:400;line-height:inherit;max-width:100%;padding:calc(var(--newspack-ui-spacer-2, 12px) - 1px);width:100%}.wpbnbd.is-style-modern .tab-container .freq-label,.wpbnbd.is-style-modern .wpbnbd__tiers__selection{background:var(--newspack-ui-color-neutral-10,#f0f0f0);border:none}.wpbnbd.is-style-modern .tab-container .freq-label.wpbnbd__button--active:after,.wpbnbd.is-style-modern .wpbnbd__tiers .wpbnbd__button--active{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-radius:var(--newspack-ui-border-radius-s,4px)}.wpbnbd.is-style-modern .wpbnbd__button{font-family:inherit;font-size:inherit;line-height:inherit;text-transform:none}.wpbnbd.is-style-modern .frequencies{font-family:inherit;font-size:var(--newspack-ui-font-size-s,16px);line-height:var(--newspack-ui-line-height-s,1.5)}.wpbnbd.is-style-modern .frequencies input[type=radio]:checked~.tiers{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-bottom:0;border-radius:var(--newspack-ui-border-radius-l,8px) var(--newspack-ui-border-radius-l,8px) 0 0;display:grid;gap:calc(var(--newspack-ui-spacer-base, 8px)/2);grid-template-columns:repeat(2,1fr);margin:var(--newspack-ui-spacer-2,12px) 0 0;padding:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--nyp-disabled .frequencies input[type=radio]:checked~.tiers{grid-template-columns:repeat(3,1fr)}.wpbnbd.is-style-modern.wpbnbd--frequency-based form:after{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-radius:0 0 var(--newspack-ui-border-radius-l,8px) var(--newspack-ui-border-radius-l,8px);border-top:0;bottom:0;box-sizing:border-box;content:"";display:block;font-size:var(--newspack-ui-font-size-s,16px);height:calc(var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-2, 12px) + 1.5em + var(--newspack-ui-spacer-2, 12px) + var(--newspack-ui-spacer-5, 24px));position:absolute;width:100%;z-index:0}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container{background:var(--newspack-ui-color-neutral-10,#f0f0f0);border-radius:var(--newspack-ui-border-radius-m,6px);gap:calc(var(--newspack-ui-spacer-base, 8px)/2);margin-right:auto;margin-left:auto;padding:calc(var(--newspack-ui-spacer-base, 8px)/2);width:-moz-min-content;width:min-content}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container:has(:nth-child(3)){max-width:300px;width:100%}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container:has(:nth-child(3)) .freq-label{padding-right:calc(var(--newspack-ui-spacer-2, 12px) - 1px);padding-left:calc(var(--newspack-ui-spacer-2, 12px) - 1px);width:100%}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label{background:transparent;border:1px solid transparent;border-radius:var(--newspack-ui-border-radius-s,4px);color:var(--newspack-ui-color-neutral-60,#6c6c6c);font-size:var(--newspack-ui-font-size-xs,14px);line-height:var(--newspack-ui-spacer-5,24px);padding:calc(var(--newspack-ui-spacer-base, 8px) - 1px) calc(var(--newspack-ui-spacer-3, 16px) - 1px);position:relative;transition:all 125ms ease-in-out;width:auto}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label:hover{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label:focus{outline:none;text-decoration:none}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label:focus-visible{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--frequency-based .tab-container .freq-label.wpbnbd__button--active{background:var(--newspack-ui-color-neutral-0,#fff);border-color:var(--newspack-ui-color-neutral-30,#ddd);color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.untiered .input-container{background:var(--newspack-ui-color-neutral-0,#fff);border:1px solid var(--newspack-ui-color-neutral-30,#ddd);border-bottom:0;border-radius:var(--newspack-ui-border-radius-l,8px) var(--newspack-ui-border-radius-l,8px) 0 0;margin:var(--newspack-ui-spacer-2,12px) 0 0;padding:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.untiered .money-input{right:0;left:0}.wpbnbd.is-style-modern.wpbnbd--frequency-based.untiered .donate-label{display:block;margin-bottom:var(--newspack-ui-spacer-base,8px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered{font-size:var(--newspack-ui-font-size-s,16px);line-height:var(--newspack-ui-line-height-s,1.5)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers{color:var(--newspack-ui-color-neutral-60,#6c6c6c);position:relative}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers .tier-label{background:var(--newspack-ui-color-neutral-10,#f0f0f0);border:0;border-radius:var(--newspack-ui-border-radius-s,4px);color:inherit;font-family:inherit;font-weight:600;margin:0;padding:var(--newspack-ui-spacer-2,12px) var(--newspack-ui-spacer-5,24px);text-align:center;transition:background 125ms ease-in-out,color 125ms ease-in-out}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers .tier-label:hover{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers .odl{bottom:calc(var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-9, 48px) + var(--newspack-ui-spacer-base, 8px));color:var(--newspack-ui-color-neutral-90,#1e1e1e);font-weight:600;right:0;padding:0 var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input.other-input:checked+label{margin-bottom:calc(var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-5, 24px) + var(--newspack-ui-spacer-base, 8px) + var(--newspack-ui-spacer-9, 48px))}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input[type=radio]:checked+.tier-label,.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input[type=radio]:focus+.tier-label{background:var(--newspack-ui-color-neutral-90,#1e1e1e);color:var(--newspack-ui-color-neutral-0,#fff);outline:none}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .tiers input[type=radio]:focus-visible+.tier-label{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--frequency-based.tiered .money-input{bottom:var(--newspack-ui-spacer-5,24px);right:var(--newspack-ui-spacer-5,24px);left:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button,.wpbnbd.is-style-modern.wpbnbd--frequency-based button{font-family:inherit;font-size:var(--newspack-ui-font-size-s,16px);font-weight:600;line-height:var(--newspack-ui-line-height-s,1.5);margin:0}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]{margin:0 calc(1px + var(--newspack-ui-spacer-5, 24px)) calc(1px + var(--newspack-ui-spacer-5, 24px));padding:var(--newspack-ui-spacer-2,12px) var(--newspack-ui-spacer-5,24px);position:relative;transition:opacity 125ms ease-in-out,outline 125ms ease-in-out;width:calc(100% - var(--newspack-ui-spacer-5, 24px)*2 - 2px);z-index:1}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button:disabled,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]:disabled{pointer-events:none}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button:hover,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]:hover{opacity:.8}.wpbnbd.is-style-modern.wpbnbd--frequency-based .submit-button:focus,.wpbnbd.is-style-modern.wpbnbd--frequency-based button[type=submit]:focus{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--tiers-based{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection{border-radius:var(--newspack-ui-border-radius-m,6px);gap:calc(var(--newspack-ui-spacer-base, 8px)/2);margin:0 auto var(--newspack-ui-spacer-2,12px);padding:calc(var(--newspack-ui-spacer-base, 8px)/2);width:-moz-min-content;width:min-content}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection:has(:nth-child(3)){max-width:300px;width:100%}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection:has(:nth-child(3))>.wpbnbd__button{padding-right:calc(var(--newspack-ui-spacer-2, 12px) - 1px);padding-left:calc(var(--newspack-ui-spacer-2, 12px) - 1px);width:100%}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button{border-radius:var(--newspack-ui-border-radius-s,4px);color:var(--newspack-ui-color-neutral-60,#6c6c6c);font-size:var(--newspack-ui-font-size-xs,14px);font-weight:600;line-height:var(--newspack-ui-spacer-5,24px);overflow:hidden;padding:calc(var(--newspack-ui-spacer-base, 8px) - 1px) calc(var(--newspack-ui-spacer-3, 16px) - 1px);transition:all 125ms ease-in-out;width:auto}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button--active,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button:hover{color:var(--newspack-ui-color-neutral-90,#1e1e1e)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button:focus{outline:none}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__selection .wpbnbd__button:focus-visible{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__heading{align-self:flex-start;font-family:inherit;font-size:var(--newspack-ui-font-size-m,clamp(1.125rem,.929rem + .402vw,1.25rem));font-weight:700;line-height:var(--newspack-ui-line-height-m,1.6)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__options{margin-right:calc(var(--newspack-ui-spacer-2, 12px)/-2);margin-left:calc(var(--newspack-ui-spacer-2, 12px)/-2)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier{background:var(--newspack-ui-color-neutral-0,#fff);border-color:var(--newspack-ui-color-neutral-30,#ddd);border-radius:var(--newspack-ui-border-radius-m,6px);margin-right:calc(var(--newspack-ui-spacer-2, 12px)/2);margin-left:calc(var(--newspack-ui-spacer-2, 12px)/2);padding:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier--recommended{border:1px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline:1px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:-2px}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier:not(.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier--recommended) .submit-button:hover,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier:not(.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__tier--recommended) button[type=submit]:hover{background:var(--newspack-ui-color-neutral-5,#f7f7f7)!important;opacity:1}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__top{align-items:center;flex-wrap:wrap-reverse;gap:calc(var(--newspack-ui-spacer-base, 8px)/2) var(--newspack-ui-spacer-3,16px);margin-bottom:calc(var(--newspack-ui-spacer-base, 8px)/2)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__recommend-label{background:var(--newspack-ui-color-neutral-90,#1e1e1e);border-radius:var(--newspack-ui-border-radius-2xs,2px);color:var(--newspack-ui-color-neutral-0,#fff);font-family:inherit;font-size:var(--newspack-ui-font-size-xs,14px);font-weight:600;height:auto;line-height:var(--newspack-ui-line-height-xs,1.4286);padding:calc(var(--newspack-ui-spacer-base, 8px)*.25) calc(var(--newspack-ui-spacer-base, 8px)*.75);word-break:break-word}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__amount{margin-bottom:var(--newspack-ui-spacer-5,24px)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__amount__value{color:var(--newspack-ui-color-neutral-60,#6c6c6c);font-size:var(--newspack-ui-font-size-2xs,12px);line-height:var(--newspack-ui-line-height-2xs,1.3333)}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__amount .amount{color:var(--newspack-ui-color-neutral-90,#1e1e1e);font-family:inherit;font-size:var(--newspack-ui-font-size-xl,clamp(1.375rem,.394rem + 2.008vw,2rem));line-height:var(--newspack-ui-line-height-xl,1.375);word-break:break-all}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers__description{font-size:var(--newspack-ui-font-size-xs,14px);line-height:var(--newspack-ui-line-height-xs,1.4286);margin:var(--newspack-ui-spacer-5,24px) 0 0}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers .submit-button,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers button[type=submit]{border-width:1px;font-family:inherit;font-size:var(--newspack-ui-font-size-s,16px);font-weight:600;line-height:var(--newspack-ui-line-height-s,1.5);margin:auto 0 0;padding:calc(var(--newspack-ui-spacer-2, 12px) - 1px) calc(var(--newspack-ui-spacer-5, 24px) - 1px);transition:background 125ms ease-in-out,border-color 125ms ease-in-out,opacity 125ms ease-in-out,outline 125ms ease-in-out}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers .submit-button:hover,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers button[type=submit]:hover{opacity:.8}.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers .submit-button:focus,.wpbnbd.is-style-modern.wpbnbd--tiers-based .wpbnbd__tiers button[type=submit]:focus{outline:2px solid var(--newspack-ui-color-neutral-90,#1e1e1e);outline-offset:1px}.wpbnbd .tab-container .freq-label,.wpbnbd__button{background:#fff;border:0 solid #ddd;color:#6c6c6c;line-height:1.6;text-align:center;text-overflow:ellipsis}.wpbnbd .tab-container .freq-label--active,.wpbnbd .tab-container .freq-label:focus,.wpbnbd .tab-container .freq-label:hover,.wpbnbd__button--active,.wpbnbd__button:focus,.wpbnbd__button:hover{color:#1e1e1e}.wpbnbd .tier-frequency,.wpbnbd__tiers__amount__value{font-size:13px}.wpbnbd .price-amount,.wpbnbd .woocommerce-Price-amount{display:inline;font-family:var(--newspack-theme-font-heading,sans-serif);font-size:29px;font-weight:700}.wpbnbd mark{background-color:transparent}.wpbnbd--selected-other .wp-block-newspack-blocks-donate__frequency-label{display:none}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<?php return array('dependencies' => array('lodash'), 'version' => '
|
|
1
|
+
<?php return array('dependencies' => array('lodash'), 'version' => '947340b9e3afb5f26c15');
|