soames-gatsby-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +24 -0
  3. package/dist/gatsby-config.js +47 -0
  4. package/dist/gatsby-node.js +7 -0
  5. package/dist/src/components/Bio.js +23 -0
  6. package/dist/src/components/BlogSidebar.js +30 -0
  7. package/dist/src/components/Footer.js +11 -0
  8. package/dist/src/components/FooterMenu.js +26 -0
  9. package/dist/src/components/Header.js +12 -0
  10. package/dist/src/components/HeaderMenu.js +34 -0
  11. package/dist/src/components/HeroHeader.js +39 -0
  12. package/dist/src/components/Layout.js +24 -0
  13. package/dist/src/components/Logo.js +17 -0
  14. package/dist/src/components/Seo.js +59 -0
  15. package/dist/src/components/shortcodes/RemoveContentAreaPadding.js +12 -0
  16. package/dist/src/components/shortcodes/SoamesFeature.js +9 -0
  17. package/dist/src/components/shortcodes/SoamesGalleryMenu.js +15 -0
  18. package/dist/src/components/shortcodes/SoamesIconList.js +15 -0
  19. package/dist/src/components/shortcodes/SoamesSoundCloud.js +18 -0
  20. package/dist/src/components/shortcodes/SoamesTextBlock.js +8 -0
  21. package/dist/src/components/shortcodes/SoamesTextList.js +8 -0
  22. package/dist/src/components/shortcodes/SoamesTitle.js +7 -0
  23. package/dist/src/components/shortcodes/SoamesTitleBar.js +7 -0
  24. package/dist/src/components/shortcodes/SoamesTitleBarLg.js +25 -0
  25. package/dist/src/components/shortcodes/SoamesVideo.js +8 -0
  26. package/dist/src/pages/index.js +9 -0
  27. package/dist/src/templates/blog-post-archive.js +59 -0
  28. package/dist/src/templates/blog-post.js +67 -0
  29. package/dist/src/templates/page.js +33 -0
  30. package/dist/src/utils/shortcodes/Shortcodes.js +105 -0
  31. package/dist/src/utils/shortcodes/getAttributes.js +18 -0
  32. package/dist/src/utils/shortcodes/getContent.js +7 -0
  33. package/gatsby-browser.js +11 -0
  34. package/gatsby-node.js +138 -0
  35. package/gatsby-ssr.js +12 -0
  36. package/package.json +76 -0
  37. package/src/components/Bio.tsx +63 -0
  38. package/src/components/BlogSidebar.tsx +86 -0
  39. package/src/components/Footer.tsx +53 -0
  40. package/src/components/FooterMenu.tsx +66 -0
  41. package/src/components/Header.tsx +37 -0
  42. package/src/components/HeaderMenu.tsx +123 -0
  43. package/src/components/HeroHeader.tsx +75 -0
  44. package/src/components/Layout.tsx +60 -0
  45. package/src/components/Logo.tsx +49 -0
  46. package/src/components/Seo.tsx +84 -0
  47. package/src/components/shortcodes/RemoveContentAreaPadding.tsx +13 -0
  48. package/src/components/shortcodes/SoamesFeature.tsx +54 -0
  49. package/src/components/shortcodes/SoamesGalleryMenu.tsx +63 -0
  50. package/src/components/shortcodes/SoamesIconList.tsx +57 -0
  51. package/src/components/shortcodes/SoamesSoundCloud.tsx +71 -0
  52. package/src/components/shortcodes/SoamesTextBlock.tsx +27 -0
  53. package/src/components/shortcodes/SoamesTextList.tsx +27 -0
  54. package/src/components/shortcodes/SoamesTitle.tsx +23 -0
  55. package/src/components/shortcodes/SoamesTitleBar.tsx +21 -0
  56. package/src/components/shortcodes/SoamesTitleBarLg.tsx +56 -0
  57. package/src/components/shortcodes/SoamesVideo.tsx +34 -0
  58. package/src/styles/soames/base.css +592 -0
  59. package/src/styles/soames/components.css +1551 -0
  60. package/src/styles/soames/layout.css +209 -0
  61. package/src/styles/soames/overrides.css +1779 -0
  62. package/src/styles/soames/typography.css +23 -0
  63. package/src/styles/theme.css +8 -0
  64. package/src/styles/vendor/normalize.css +343 -0
  65. package/src/styles/vendor/wordpress-blocks.css +3451 -0
  66. package/src/templates/blog-post-archive.tsx +167 -0
  67. package/src/templates/blog-post.tsx +183 -0
  68. package/src/templates/page.tsx +65 -0
  69. package/src/utils/shortcodes/Shortcodes.tsx +119 -0
  70. package/src/utils/shortcodes/getAttributes.ts +19 -0
  71. package/src/utils/shortcodes/getContent.ts +5 -0
  72. package/static/js/soames-nav-dropdown.js +646 -0
  73. package/static/js/soames-navbar-dropdown.js +127 -0
@@ -0,0 +1,3451 @@
1
+ /* WordPress Blocks */
2
+
3
+ :root {
4
+ --maxWidth-none: "none";
5
+ --maxWidth-xs: 20rem;
6
+ --maxWidth-sm: 24rem;
7
+ --maxWidth-md: 28rem;
8
+ --maxWidth-lg: 32rem;
9
+ --maxWidth-xl: 36rem;
10
+ --maxWidth-2xl: 42rem;
11
+ --maxWidth-3xl: 48rem;
12
+ --maxWidth-4xl: 56rem;
13
+ --maxWidth-full: "100%";
14
+ --maxWidth-wrapper: var(--maxWidth-2xl);
15
+ --spacing-px: "1px";
16
+ --spacing-0: 0;
17
+ --spacing-1: 0.25rem;
18
+ --spacing-2: 0.5rem;
19
+ --spacing-3: 0.75rem;
20
+ --spacing-4: 1rem;
21
+ --spacing-5: 1.25rem;
22
+ --spacing-6: 1.5rem;
23
+ --spacing-8: 2rem;
24
+ --spacing-10: 2.5rem;
25
+ --spacing-12: 3rem;
26
+ --spacing-16: 4rem;
27
+ --spacing-20: 5rem;
28
+ --spacing-24: 6rem;
29
+ --spacing-32: 8rem;
30
+ --fontFamily-sans: Rubik, Montserrat, system-ui, -apple-system, BlinkMacSystemFont,
31
+ "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
32
+ "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
33
+ --fontFamily-serif: "Merriweather", "Georgia", Cambria, "Times New Roman",
34
+ Times, serif;
35
+ --font-body: var(--fontFamily-serif);
36
+ --font-heading: var(--fontFamily-sans);
37
+ --fontWeight-normal: 400;
38
+ --fontWeight-medium: 500;
39
+ --fontWeight-semibold: 600;
40
+ --fontWeight-bold: 700;
41
+ --fontWeight-extrabold: 800;
42
+ --fontWeight-black: 500;
43
+ --fontSize-root: 16px;
44
+ --lineHeight-none: 1;
45
+ --lineHeight-tight: 1.1;
46
+ --lineHeight-normal: 1.5;
47
+ --lineHeight-relaxed: 1.625;
48
+ /* 1.200 Minor Third Type Scale */
49
+ --fontSize-0: 0.833rem;
50
+ --fontSize-1: 1rem;
51
+ --fontSize-2: 1.2rem;
52
+ --fontSize-3: 1.44rem;
53
+ --fontSize-4: 1.728rem;
54
+ --fontSize-5: 2.074rem;
55
+ --fontSize-6: 2.488rem;
56
+ --fontSize-7: 2.986rem;
57
+ --color-primary: #005b99;
58
+ --color-text: #2e353f;
59
+ --color-text-light: #4f5969;
60
+ --color-heading: #1a202c;
61
+ --color-heading-black: black;
62
+ --color-accent: #d1dce5;
63
+ }
64
+
65
+ /* HTML elements */
66
+
67
+ *,
68
+ :after,
69
+ :before {
70
+ box-sizing: border-box;
71
+ }
72
+
73
+ html {
74
+ line-height: var(--lineHeight-normal);
75
+ font-size: var(--fontSize-root);
76
+ -webkit-font-smoothing: antialiased;
77
+ -moz-osx-font-smoothing: grayscale;
78
+ }
79
+
80
+ body {
81
+ font-family: var(--font-body);
82
+ font-size: var(--fontSize-1);
83
+ color: var(--color-text);
84
+ }
85
+
86
+ footer {
87
+ padding: var(--spacing-6) var(--spacing-0);
88
+ }
89
+
90
+ hr {
91
+ background: var(--color-accent);
92
+ height: 1px;
93
+ border: 0;
94
+ }
95
+
96
+ /* Heading */
97
+
98
+ h1,
99
+ h2,
100
+ h3,
101
+ h4,
102
+ h5,
103
+ h6 {
104
+ font-family: var(--font-heading);
105
+ margin-top: var(--spacing-12);
106
+ margin-bottom: var(--spacing-6);
107
+ line-height: var(--lineHeight-tight);
108
+ letter-spacing: -0.025em;
109
+ }
110
+
111
+ h2,
112
+ h3,
113
+ h4,
114
+ h5,
115
+ h6 {
116
+ font-weight: var(--fontWeight-black);
117
+ color: var(--color-heading);
118
+ }
119
+
120
+ h1 {
121
+ font-weight: var(--fontWeight-black);
122
+ font-size: var(--fontSize-6);
123
+ color: var(--color-heading-black);
124
+ }
125
+
126
+ h2 {
127
+ font-size: var(--fontSize-5);
128
+ }
129
+
130
+ h3 {
131
+ font-size: var(--fontSize-4);
132
+ }
133
+
134
+ h4 {
135
+ font-size: var(--fontSize-3);
136
+ }
137
+
138
+ h5 {
139
+ font-size: var(--fontSize-2);
140
+ }
141
+
142
+ h6 {
143
+ font-size: var(--fontSize-1);
144
+ }
145
+
146
+ h1 > a {
147
+ color: inherit;
148
+ text-decoration: none;
149
+ }
150
+
151
+ h2 > a,
152
+ h3 > a,
153
+ h4 > a,
154
+ h5 > a,
155
+ h6 > a {
156
+ text-decoration: none;
157
+ color: inherit;
158
+ }
159
+
160
+ /* Prose */
161
+
162
+ p {
163
+ line-height: var(--lineHeight-relaxed);
164
+ --baseline-multiplier: 0.179;
165
+ --x-height-multiplier: 0.35;
166
+ margin: var(--spacing-0) var(--spacing-0) var(--spacing-8) var(--spacing-0);
167
+ padding: var(--spacing-0);
168
+ }
169
+
170
+ ul,
171
+ ol {
172
+ margin-left: var(--spacing-0);
173
+ margin-right: var(--spacing-0);
174
+ padding: var(--spacing-0);
175
+ margin-bottom: var(--spacing-8);
176
+ list-style-position: outside;
177
+ list-style-image: none;
178
+ }
179
+
180
+ ul li,
181
+ ol li {
182
+ padding-left: var(--spacing-0);
183
+ margin-bottom: calc(var(--spacing-8) / 2);
184
+ }
185
+
186
+ li > p {
187
+ margin-bottom: calc(var(--spacing-8) / 2);
188
+ }
189
+
190
+ li *:last-child {
191
+ margin-bottom: var(--spacing-0);
192
+ }
193
+
194
+ li > ul {
195
+ margin-left: var(--spacing-8);
196
+ margin-top: calc(var(--spacing-8) / 2);
197
+ }
198
+
199
+ blockquote {
200
+ color: var(--color-text-light);
201
+ margin-left: calc(-1 * var(--spacing-6));
202
+ margin-right: var(--spacing-8);
203
+ padding: var(--spacing-0) var(--spacing-0) var(--spacing-0) var(--spacing-6);
204
+ border-left: var(--spacing-1) solid var(--color-primary);
205
+ font-size: var(--fontSize-2);
206
+ font-style: italic;
207
+ margin-bottom: var(--spacing-8);
208
+ }
209
+
210
+ blockquote > :last-child {
211
+ margin-bottom: var(--spacing-0);
212
+ }
213
+
214
+ blockquote > ul,
215
+ blockquote > ol {
216
+ list-style-position: inside;
217
+ }
218
+
219
+ table {
220
+ width: 100%;
221
+ margin-bottom: var(--spacing-8);
222
+ border-collapse: collapse;
223
+ border-spacing: 0.25rem;
224
+ }
225
+
226
+ table thead tr th {
227
+ border-bottom: 1px solid var(--color-accent);
228
+ }
229
+
230
+ /* Link */
231
+
232
+ a {
233
+ color: var(--color-primary);
234
+ word-break: break-word;
235
+ }
236
+
237
+ a:hover,
238
+ a:focus {
239
+ text-decoration: none;
240
+ }
241
+
242
+ /* Custom classes */
243
+
244
+ .global-wrapper {
245
+
246
+ html, body {
247
+ margin: 0;
248
+ padding: 0;
249
+ width: 100%;
250
+ height: 100%;
251
+ overflow-x: hidden;
252
+ }
253
+
254
+ body {
255
+ font-family: 'Rubik', sans-serif;
256
+ -webkit-font-smoothing: antialiased;
257
+ -moz-osx-font-smoothing: grayscale;
258
+ }
259
+
260
+ code {
261
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
262
+ monospace;
263
+ }
264
+
265
+ }
266
+
267
+ .global-wrapper[data-is-root-path="true"] .bio {
268
+ margin-bottom: var(--spacing-20);
269
+ }
270
+
271
+ .global-header {
272
+ margin-bottom: var(--spacing-12);
273
+ }
274
+
275
+ .main-heading {
276
+ font-size: var(--fontSize-7);
277
+ margin: 0;
278
+ }
279
+
280
+ .post-list-item {
281
+ margin-bottom: var(--spacing-8);
282
+ margin-top: var(--spacing-8);
283
+ }
284
+
285
+ .post-list-item p {
286
+ margin-bottom: var(--spacing-0);
287
+ }
288
+
289
+ .post-list-item h2 {
290
+ font-size: var(--fontSize-4);
291
+ color: var(--color-primary);
292
+ margin-bottom: var(--spacing-2);
293
+ margin-top: var(--spacing-0);
294
+ }
295
+
296
+ .post-list-item header {
297
+ margin-bottom: var(--spacing-4);
298
+ }
299
+
300
+ .header-link-home {
301
+ font-weight: var(--fontWeight-bold);
302
+ font-family: var(--font-heading);
303
+ text-decoration: none;
304
+ font-size: var(--fontSize-2);
305
+ }
306
+
307
+ .bio {
308
+ display: flex;
309
+ margin-bottom: var(--spacing-16);
310
+ }
311
+
312
+ .bio p {
313
+ margin-bottom: var(--spacing-0);
314
+ }
315
+
316
+ .bio-avatar {
317
+ margin-right: var(--spacing-4);
318
+ margin-bottom: var(--spacing-0);
319
+ max-width: 80px;
320
+ height: auto;
321
+ border-radius: 100%;
322
+ }
323
+
324
+ .blog-post header h1 {
325
+ margin: var(--spacing-0) var(--spacing-0) var(--spacing-4) var(--spacing-0);
326
+ }
327
+
328
+ .blog-post header p {
329
+ font-size: var(--fontSize-2);
330
+ font-family: var(--font-heading);
331
+ }
332
+
333
+ .blog-post-nav ul {
334
+ margin: var(--spacing-0);
335
+ }
336
+
337
+ .gatsby-highlight {
338
+ margin-bottom: var(--spacing-8);
339
+ }
340
+
341
+ /* Media queries */
342
+
343
+ @media (max-width: 42rem) {
344
+ blockquote {
345
+ padding: var(--spacing-0) var(--spacing-0) var(--spacing-0) var(--spacing-4);
346
+ margin-left: var(--spacing-0);
347
+ }
348
+ ul,
349
+ ol {
350
+ list-style-position: inside;
351
+ }
352
+ }
353
+
354
+ #start-resizable-editor-section {
355
+ display: none;
356
+ }
357
+
358
+ .wp-block-audio {
359
+ margin: 0 0 1em 0;
360
+ }
361
+ .wp-block-audio figcaption {
362
+ margin-top: 0.5em;
363
+ margin-bottom: 1em;
364
+ }
365
+ .wp-block-audio audio {
366
+ width: 100%;
367
+ min-width: 300px;
368
+ }
369
+
370
+ .wp-block-button__link {
371
+ color: #fff;
372
+ background-color: #32373c;
373
+ border-radius: 9999px;
374
+ box-shadow: none;
375
+ cursor: pointer;
376
+ display: inline-block;
377
+ font-size: 1.125em;
378
+ padding: calc(0.667em + 2px) calc(1.333em + 2px);
379
+ text-align: center;
380
+ text-decoration: none;
381
+ overflow-wrap: break-word;
382
+ box-sizing: border-box;
383
+ }
384
+ .wp-block-button__link:hover,
385
+ .wp-block-button__link:focus,
386
+ .wp-block-button__link:active,
387
+ .wp-block-button__link:visited {
388
+ color: #fff;
389
+ }
390
+ .wp-block-button__link.aligncenter {
391
+ text-align: center;
392
+ }
393
+ .wp-block-button__link.alignright {
394
+ /*rtl:ignore*/
395
+ text-align: right;
396
+ }
397
+
398
+ .wp-block-buttons > .wp-block-button.has-custom-width {
399
+ max-width: none;
400
+ }
401
+ .wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
402
+ width: 100%;
403
+ }
404
+ .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
405
+ width: calc(25% - 0.5em);
406
+ }
407
+ .wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
408
+ width: calc(50% - 0.5em);
409
+ }
410
+ .wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
411
+ width: calc(75% - 0.5em);
412
+ }
413
+ .wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
414
+ margin-right: 0;
415
+ width: 100%;
416
+ }
417
+
418
+ .wp-block-button.is-style-squared,
419
+ .wp-block-button__link.wp-block-button.is-style-squared {
420
+ border-radius: 0;
421
+ }
422
+
423
+ .wp-block-button.no-border-radius,
424
+ .wp-block-button__link.no-border-radius {
425
+ border-radius: 0 !important;
426
+ }
427
+
428
+ .is-style-outline > .wp-block-button__link,
429
+ .wp-block-button__link.is-style-outline {
430
+ border: 2px solid currentColor;
431
+ padding: 0.667em 1.333em;
432
+ }
433
+
434
+ .is-style-outline > .wp-block-button__link:not(.has-text-color),
435
+ .wp-block-button__link.is-style-outline:not(.has-text-color) {
436
+ color: currentColor;
437
+ }
438
+
439
+ .is-style-outline > .wp-block-button__link:not(.has-background),
440
+ .wp-block-button__link.is-style-outline:not(.has-background) {
441
+ background-color: transparent;
442
+ }
443
+
444
+ .wp-block-buttons {
445
+ display: flex;
446
+ flex-direction: row;
447
+ flex-wrap: wrap;
448
+ /* stylelint-disable indentation */
449
+ }
450
+ .wp-block-buttons.is-vertical {
451
+ flex-direction: column;
452
+ }
453
+ .wp-block-buttons.is-vertical > .wp-block-button {
454
+ /*rtl:ignore*/
455
+ margin-right: 0;
456
+ }
457
+ .wp-block-buttons.is-vertical > .wp-block-button:last-child {
458
+ margin-bottom: 0;
459
+ }
460
+ .wp-block-buttons > .wp-block-button {
461
+ display: inline-block;
462
+ /*rtl:ignore*/
463
+ margin-left: 0;
464
+ /*rtl:ignore*/
465
+ margin-right: 0.5em;
466
+ margin-bottom: 0.5em;
467
+ }
468
+ .wp-block-buttons > .wp-block-button:last-child {
469
+ /*rtl:ignore*/
470
+ margin-right: 0;
471
+ }
472
+ .wp-block-buttons.is-content-justification-left {
473
+ justify-content: flex-start;
474
+ }
475
+ .wp-block-buttons.is-content-justification-left.is-vertical {
476
+ align-items: flex-start;
477
+ }
478
+ .wp-block-buttons.is-content-justification-center {
479
+ justify-content: center;
480
+ }
481
+ .wp-block-buttons.is-content-justification-center.is-vertical {
482
+ align-items: center;
483
+ }
484
+ .wp-block-buttons.is-content-justification-right {
485
+ justify-content: flex-end;
486
+ }
487
+ .wp-block-buttons.is-content-justification-right > .wp-block-button {
488
+ /*rtl:ignore*/
489
+ margin-left: 0.5em;
490
+ /*rtl:ignore*/
491
+ margin-right: 0;
492
+ }
493
+ .wp-block-buttons.is-content-justification-right
494
+ > .wp-block-button:first-child {
495
+ /*rtl:ignore*/
496
+ margin-left: 0;
497
+ }
498
+ .wp-block-buttons.is-content-justification-right.is-vertical {
499
+ align-items: flex-end;
500
+ }
501
+ .wp-block-buttons.is-content-justification-space-between {
502
+ justify-content: space-between;
503
+ }
504
+ .wp-block-buttons.aligncenter {
505
+ text-align: center;
506
+ }
507
+ .wp-block-buttons.alignleft .wp-block-button {
508
+ /*rtl:ignore*/
509
+ margin-left: 0;
510
+ /*rtl:ignore*/
511
+ margin-right: 0.5em;
512
+ }
513
+ .wp-block-buttons.alignleft .wp-block-button:last-child {
514
+ /*rtl:ignore*/
515
+ margin-right: 0;
516
+ }
517
+ .wp-block-buttons.alignright .wp-block-button {
518
+ /*rtl:ignore*/
519
+ margin-right: 0;
520
+ /*rtl:ignore*/
521
+ margin-left: 0.5em;
522
+ }
523
+ .wp-block-buttons.alignright .wp-block-button:first-child {
524
+ /*rtl:ignore*/
525
+ margin-left: 0;
526
+ }
527
+ .wp-block-buttons:not(.is-content-justification-space-between, .is-content-justification-right, .is-content-justification-left, .is-content-justification-center)
528
+ .wp-block-button.aligncenter {
529
+ /* stylelint-enable indentation */
530
+ margin-left: auto;
531
+ margin-right: auto;
532
+ margin-bottom: 0.5em;
533
+ width: 100%;
534
+ }
535
+
536
+ .wp-block-calendar {
537
+ text-align: center;
538
+ }
539
+ .wp-block-calendar th,
540
+ .wp-block-calendar tbody td {
541
+ padding: 0.25em;
542
+ border: 1px solid #ddd;
543
+ }
544
+ .wp-block-calendar tfoot td {
545
+ border: none;
546
+ }
547
+ .wp-block-calendar table {
548
+ width: 100%;
549
+ border-collapse: collapse;
550
+ }
551
+ .wp-block-calendar table th {
552
+ font-weight: 400;
553
+ background: #ddd;
554
+ }
555
+ .wp-block-calendar a {
556
+ text-decoration: underline;
557
+ }
558
+ .wp-block-calendar table tbody,
559
+ .wp-block-calendar table caption {
560
+ color: #40464d;
561
+ }
562
+
563
+ .wp-block-categories.alignleft {
564
+ /*rtl:ignore*/
565
+ margin-right: 2em;
566
+ }
567
+ .wp-block-categories.alignright {
568
+ /*rtl:ignore*/
569
+ margin-left: 2em;
570
+ }
571
+
572
+ .wp-block-code code {
573
+ display: block;
574
+ white-space: pre-wrap;
575
+ overflow-wrap: break-word;
576
+ }
577
+
578
+ .wp-block-columns {
579
+ display: flex;
580
+ margin-bottom: 1.75em;
581
+ box-sizing: border-box;
582
+ flex-wrap: wrap;
583
+ /**
584
+ * All Columns Alignment
585
+ */
586
+ }
587
+ @media (min-width: 782px) {
588
+ .wp-block-columns {
589
+ flex-wrap: nowrap;
590
+ }
591
+ }
592
+ .wp-block-columns.has-background {
593
+ padding: 1.25em 2.375em;
594
+ }
595
+ .wp-block-columns.are-vertically-aligned-top {
596
+ align-items: flex-start;
597
+ }
598
+ .wp-block-columns.are-vertically-aligned-center {
599
+ align-items: center;
600
+ }
601
+ .wp-block-columns.are-vertically-aligned-bottom {
602
+ align-items: flex-end;
603
+ }
604
+
605
+ .wp-block-column {
606
+ flex-grow: 1;
607
+ min-width: 0;
608
+ word-break: break-word;
609
+ overflow-wrap: break-word;
610
+ /**
611
+ * Individual Column Alignment
612
+ */
613
+ }
614
+ @media (max-width: 599px) {
615
+ .wp-block-column {
616
+ flex-basis: 100% !important;
617
+ }
618
+ }
619
+ @media (min-width: 600px) and (max-width: 781px) {
620
+ .wp-block-column:not(:only-child) {
621
+ flex-basis: calc(50% - 1em) !important;
622
+ flex-grow: 0;
623
+ }
624
+ .wp-block-column:nth-child(even) {
625
+ margin-left: 2em;
626
+ }
627
+ }
628
+ @media (min-width: 782px) {
629
+ .wp-block-column {
630
+ flex-basis: 0;
631
+ flex-grow: 1;
632
+ }
633
+ .wp-block-column[style*="flex-basis"] {
634
+ flex-grow: 0;
635
+ }
636
+ .wp-block-column:not(:first-child) {
637
+ margin-left: 2em;
638
+ }
639
+ }
640
+ .wp-block-column.is-vertically-aligned-top {
641
+ align-self: flex-start;
642
+ }
643
+ .wp-block-column.is-vertically-aligned-center {
644
+ -ms-grid-row-align: center;
645
+ align-self: center;
646
+ }
647
+ .wp-block-column.is-vertically-aligned-bottom {
648
+ align-self: flex-end;
649
+ }
650
+ .wp-block-column.is-vertically-aligned-top,
651
+ .wp-block-column.is-vertically-aligned-center,
652
+ .wp-block-column.is-vertically-aligned-bottom {
653
+ width: 100%;
654
+ }
655
+
656
+ .wp-block-cover-image,
657
+ .wp-block-cover {
658
+ position: relative;
659
+ background-size: cover;
660
+ background-position: center center;
661
+ min-height: 430px;
662
+ width: 100%;
663
+ display: flex;
664
+ justify-content: center;
665
+ align-items: center;
666
+ padding: 1em;
667
+ box-sizing: border-box;
668
+ /**
669
+ * Set a default background color for has-background-dim _unless_ it includes another
670
+ * background-color class (e.g. has-green-background-color). The presence of another
671
+ * background-color class implies that another style will provide the background color
672
+ * for the overlay.
673
+ *
674
+ * See:
675
+ * - Issue with background color specificity: https://github.com/WordPress/gutenberg/issues/26545
676
+ * - Issue with alternative fix: https://github.com/WordPress/gutenberg/issues/26545
677
+ */
678
+ }
679
+ .wp-block-cover-image.has-parallax,
680
+ .wp-block-cover.has-parallax {
681
+ background-attachment: fixed;
682
+ }
683
+ @supports (-webkit-overflow-scrolling: touch) {
684
+ .wp-block-cover-image.has-parallax,
685
+ .wp-block-cover.has-parallax {
686
+ background-attachment: scroll;
687
+ }
688
+ }
689
+ @media (prefers-reduced-motion: reduce) {
690
+ .wp-block-cover-image.has-parallax,
691
+ .wp-block-cover.has-parallax {
692
+ background-attachment: scroll;
693
+ }
694
+ }
695
+ .wp-block-cover-image.is-repeated,
696
+ .wp-block-cover.is-repeated {
697
+ background-repeat: repeat;
698
+ background-size: auto;
699
+ }
700
+ .wp-block-cover-image.has-background-dim:not([class*="-background-color"]),
701
+ .wp-block-cover.has-background-dim:not([class*="-background-color"]) {
702
+ background-color: #000;
703
+ }
704
+ .wp-block-cover-image.has-background-dim::before,
705
+ .wp-block-cover.has-background-dim::before {
706
+ content: "";
707
+ background-color: inherit;
708
+ }
709
+ .wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,
710
+ .wp-block-cover-image .wp-block-cover__gradient-background,
711
+ .wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
712
+ .wp-block-cover .wp-block-cover__gradient-background {
713
+ position: absolute;
714
+ top: 0;
715
+ left: 0;
716
+ bottom: 0;
717
+ right: 0;
718
+ z-index: 1;
719
+ opacity: 0.5;
720
+ }
721
+ .wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
722
+ .wp-block-cover-image.has-background-dim.has-background-dim-10
723
+ .wp-block-cover__gradient-background,
724
+ .wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
725
+ .wp-block-cover.has-background-dim.has-background-dim-10
726
+ .wp-block-cover__gradient-background {
727
+ opacity: 0.1;
728
+ }
729
+ .wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
730
+ .wp-block-cover-image.has-background-dim.has-background-dim-20
731
+ .wp-block-cover__gradient-background,
732
+ .wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
733
+ .wp-block-cover.has-background-dim.has-background-dim-20
734
+ .wp-block-cover__gradient-background {
735
+ opacity: 0.2;
736
+ }
737
+ .wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
738
+ .wp-block-cover-image.has-background-dim.has-background-dim-30
739
+ .wp-block-cover__gradient-background,
740
+ .wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
741
+ .wp-block-cover.has-background-dim.has-background-dim-30
742
+ .wp-block-cover__gradient-background {
743
+ opacity: 0.3;
744
+ }
745
+ .wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
746
+ .wp-block-cover-image.has-background-dim.has-background-dim-40
747
+ .wp-block-cover__gradient-background,
748
+ .wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
749
+ .wp-block-cover.has-background-dim.has-background-dim-40
750
+ .wp-block-cover__gradient-background {
751
+ opacity: 0.4;
752
+ }
753
+ .wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
754
+ .wp-block-cover-image.has-background-dim.has-background-dim-50
755
+ .wp-block-cover__gradient-background,
756
+ .wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
757
+ .wp-block-cover.has-background-dim.has-background-dim-50
758
+ .wp-block-cover__gradient-background {
759
+ opacity: 0.5;
760
+ }
761
+ .wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
762
+ .wp-block-cover-image.has-background-dim.has-background-dim-60
763
+ .wp-block-cover__gradient-background,
764
+ .wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
765
+ .wp-block-cover.has-background-dim.has-background-dim-60
766
+ .wp-block-cover__gradient-background {
767
+ opacity: 0.6;
768
+ }
769
+ .wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
770
+ .wp-block-cover-image.has-background-dim.has-background-dim-70
771
+ .wp-block-cover__gradient-background,
772
+ .wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
773
+ .wp-block-cover.has-background-dim.has-background-dim-70
774
+ .wp-block-cover__gradient-background {
775
+ opacity: 0.7;
776
+ }
777
+ .wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
778
+ .wp-block-cover-image.has-background-dim.has-background-dim-80
779
+ .wp-block-cover__gradient-background,
780
+ .wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
781
+ .wp-block-cover.has-background-dim.has-background-dim-80
782
+ .wp-block-cover__gradient-background {
783
+ opacity: 0.8;
784
+ }
785
+ .wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
786
+ .wp-block-cover-image.has-background-dim.has-background-dim-90
787
+ .wp-block-cover__gradient-background,
788
+ .wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
789
+ .wp-block-cover.has-background-dim.has-background-dim-90
790
+ .wp-block-cover__gradient-background {
791
+ opacity: 0.9;
792
+ }
793
+ .wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
794
+ .wp-block-cover-image.has-background-dim.has-background-dim-100
795
+ .wp-block-cover__gradient-background,
796
+ .wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
797
+ .wp-block-cover.has-background-dim.has-background-dim-100
798
+ .wp-block-cover__gradient-background {
799
+ opacity: 1;
800
+ }
801
+ .wp-block-cover-image.alignleft,
802
+ .wp-block-cover-image.alignright,
803
+ .wp-block-cover.alignleft,
804
+ .wp-block-cover.alignright {
805
+ max-width: 420px;
806
+ width: 100%;
807
+ }
808
+ .wp-block-cover-image::after,
809
+ .wp-block-cover::after {
810
+ display: block;
811
+ content: "";
812
+ font-size: 0;
813
+ min-height: inherit;
814
+ }
815
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
816
+ .wp-block-cover-image::after,
817
+ .wp-block-cover::after {
818
+ content: none;
819
+ }
820
+ }
821
+ .wp-block-cover-image.aligncenter,
822
+ .wp-block-cover-image.alignleft,
823
+ .wp-block-cover-image.alignright,
824
+ .wp-block-cover.aligncenter,
825
+ .wp-block-cover.alignleft,
826
+ .wp-block-cover.alignright {
827
+ display: flex;
828
+ }
829
+ .wp-block-cover-image .wp-block-cover__inner-container,
830
+ .wp-block-cover .wp-block-cover__inner-container {
831
+ width: 100%;
832
+ z-index: 1;
833
+ color: #fff;
834
+ }
835
+ .wp-block-cover-image p:not(.has-text-color),
836
+ .wp-block-cover-image h1:not(.has-text-color),
837
+ .wp-block-cover-image h2:not(.has-text-color),
838
+ .wp-block-cover-image h3:not(.has-text-color),
839
+ .wp-block-cover-image h4:not(.has-text-color),
840
+ .wp-block-cover-image h5:not(.has-text-color),
841
+ .wp-block-cover-image h6:not(.has-text-color),
842
+ .wp-block-cover p:not(.has-text-color),
843
+ .wp-block-cover h1:not(.has-text-color),
844
+ .wp-block-cover h2:not(.has-text-color),
845
+ .wp-block-cover h3:not(.has-text-color),
846
+ .wp-block-cover h4:not(.has-text-color),
847
+ .wp-block-cover h5:not(.has-text-color),
848
+ .wp-block-cover h6:not(.has-text-color) {
849
+ color: inherit;
850
+ }
851
+ .wp-block-cover-image.is-position-top-left,
852
+ .wp-block-cover.is-position-top-left {
853
+ align-items: flex-start;
854
+ justify-content: flex-start;
855
+ }
856
+ .wp-block-cover-image.is-position-top-center,
857
+ .wp-block-cover.is-position-top-center {
858
+ align-items: flex-start;
859
+ justify-content: center;
860
+ }
861
+ .wp-block-cover-image.is-position-top-right,
862
+ .wp-block-cover.is-position-top-right {
863
+ align-items: flex-start;
864
+ justify-content: flex-end;
865
+ }
866
+ .wp-block-cover-image.is-position-center-left,
867
+ .wp-block-cover.is-position-center-left {
868
+ align-items: center;
869
+ justify-content: flex-start;
870
+ }
871
+ .wp-block-cover-image.is-position-center-center,
872
+ .wp-block-cover.is-position-center-center {
873
+ align-items: center;
874
+ justify-content: center;
875
+ }
876
+ .wp-block-cover-image.is-position-center-right,
877
+ .wp-block-cover.is-position-center-right {
878
+ align-items: center;
879
+ justify-content: flex-end;
880
+ }
881
+ .wp-block-cover-image.is-position-bottom-left,
882
+ .wp-block-cover.is-position-bottom-left {
883
+ align-items: flex-end;
884
+ justify-content: flex-start;
885
+ }
886
+ .wp-block-cover-image.is-position-bottom-center,
887
+ .wp-block-cover.is-position-bottom-center {
888
+ align-items: flex-end;
889
+ justify-content: center;
890
+ }
891
+ .wp-block-cover-image.is-position-bottom-right,
892
+ .wp-block-cover.is-position-bottom-right {
893
+ align-items: flex-end;
894
+ justify-content: flex-end;
895
+ }
896
+ .wp-block-cover-image.has-custom-content-position.has-custom-content-position
897
+ .wp-block-cover__inner-container,
898
+ .wp-block-cover.has-custom-content-position.has-custom-content-position
899
+ .wp-block-cover__inner-container {
900
+ margin: 0;
901
+ width: auto;
902
+ }
903
+ .wp-block-cover-image img.wp-block-cover__image-background,
904
+ .wp-block-cover-image video.wp-block-cover__video-background,
905
+ .wp-block-cover img.wp-block-cover__image-background,
906
+ .wp-block-cover video.wp-block-cover__video-background {
907
+ position: absolute;
908
+ top: 0;
909
+ left: 0;
910
+ right: 0;
911
+ bottom: 0;
912
+ margin: 0;
913
+ padding: 0;
914
+ width: 100%;
915
+ height: 100%;
916
+ max-width: none;
917
+ max-height: none;
918
+ -o-object-fit: cover;
919
+ object-fit: cover;
920
+ outline: none;
921
+ border: none;
922
+ box-shadow: none;
923
+ }
924
+
925
+ .wp-block-cover__video-background {
926
+ z-index: 0;
927
+ }
928
+
929
+ .wp-block-cover__image-background {
930
+ z-index: 0;
931
+ }
932
+
933
+ section.wp-block-cover-image h2,
934
+ .wp-block-cover-image-text,
935
+ .wp-block-cover-text {
936
+ color: #fff;
937
+ }
938
+ section.wp-block-cover-image h2 a,
939
+ section.wp-block-cover-image h2 a:hover,
940
+ section.wp-block-cover-image h2 a:focus,
941
+ section.wp-block-cover-image h2 a:active,
942
+ .wp-block-cover-image-text a,
943
+ .wp-block-cover-image-text a:hover,
944
+ .wp-block-cover-image-text a:focus,
945
+ .wp-block-cover-image-text a:active,
946
+ .wp-block-cover-text a,
947
+ .wp-block-cover-text a:hover,
948
+ .wp-block-cover-text a:focus,
949
+ .wp-block-cover-text a:active {
950
+ color: #fff;
951
+ }
952
+
953
+ .wp-block-cover-image .wp-block-cover.has-left-content {
954
+ justify-content: flex-start;
955
+ }
956
+ .wp-block-cover-image .wp-block-cover.has-right-content {
957
+ justify-content: flex-end;
958
+ }
959
+
960
+ section.wp-block-cover-image.has-left-content > h2,
961
+ .wp-block-cover-image.has-left-content .wp-block-cover-image-text,
962
+ .wp-block-cover.has-left-content .wp-block-cover-text {
963
+ margin-left: 0;
964
+ text-align: left;
965
+ }
966
+
967
+ section.wp-block-cover-image.has-right-content > h2,
968
+ .wp-block-cover-image.has-right-content .wp-block-cover-image-text,
969
+ .wp-block-cover.has-right-content .wp-block-cover-text {
970
+ margin-right: 0;
971
+ text-align: right;
972
+ }
973
+
974
+ section.wp-block-cover-image > h2,
975
+ .wp-block-cover-image .wp-block-cover-image-text,
976
+ .wp-block-cover .wp-block-cover-text {
977
+ font-size: 2em;
978
+ line-height: 1.25;
979
+ z-index: 1;
980
+ margin-bottom: 0;
981
+ max-width: 840px;
982
+ padding: 0.44em;
983
+ text-align: center;
984
+ }
985
+
986
+ .wp-block[data-align="left"] > [data-type="core/embed"],
987
+ .wp-block[data-align="right"] > [data-type="core/embed"],
988
+ .wp-block-embed.alignleft,
989
+ .wp-block-embed.alignright {
990
+ max-width: 360px;
991
+ width: 100%;
992
+ }
993
+ .wp-block[data-align="left"]
994
+ > [data-type="core/embed"]
995
+ .wp-block-embed__wrapper,
996
+ .wp-block[data-align="right"]
997
+ > [data-type="core/embed"]
998
+ .wp-block-embed__wrapper,
999
+ .wp-block-embed.alignleft .wp-block-embed__wrapper,
1000
+ .wp-block-embed.alignright .wp-block-embed__wrapper {
1001
+ min-width: 280px;
1002
+ }
1003
+
1004
+ .wp-block-cover .wp-block-embed {
1005
+ min-width: 320px;
1006
+ min-height: 240px;
1007
+ }
1008
+
1009
+ .wp-block-embed {
1010
+ margin: 0 0 1em 0;
1011
+ }
1012
+ .wp-block-embed figcaption {
1013
+ margin-top: 0.5em;
1014
+ margin-bottom: 1em;
1015
+ }
1016
+ .wp-block-embed iframe {
1017
+ max-width: 100%;
1018
+ }
1019
+
1020
+ .wp-block-embed__wrapper {
1021
+ position: relative;
1022
+ }
1023
+
1024
+ .wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper::before {
1025
+ content: "";
1026
+ display: block;
1027
+ padding-top: 50%;
1028
+ }
1029
+ .wp-embed-responsive .wp-has-aspect-ratio iframe {
1030
+ position: absolute;
1031
+ top: 0;
1032
+ right: 0;
1033
+ bottom: 0;
1034
+ left: 0;
1035
+ height: 100%;
1036
+ width: 100%;
1037
+ }
1038
+
1039
+ .wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
1040
+ padding-top: 42.85%;
1041
+ }
1042
+ .wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
1043
+ padding-top: 50%;
1044
+ }
1045
+ .wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
1046
+ padding-top: 56.25%;
1047
+ }
1048
+ .wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
1049
+ padding-top: 75%;
1050
+ }
1051
+ .wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
1052
+ padding-top: 100%;
1053
+ }
1054
+ .wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
1055
+ padding-top: 177.77%;
1056
+ }
1057
+ .wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
1058
+ padding-top: 200%;
1059
+ }
1060
+
1061
+ .wp-block-file {
1062
+ margin-bottom: 1.5em;
1063
+ }
1064
+ .wp-block-file.aligncenter {
1065
+ text-align: center;
1066
+ }
1067
+ .wp-block-file.alignright {
1068
+ /*rtl:ignore*/
1069
+ text-align: right;
1070
+ }
1071
+ .wp-block-file .wp-block-file__button {
1072
+ background: #32373c;
1073
+ border-radius: 2em;
1074
+ color: #fff;
1075
+ font-size: 0.8em;
1076
+ padding: 0.5em 1em;
1077
+ }
1078
+ .wp-block-file a.wp-block-file__button {
1079
+ text-decoration: none;
1080
+ }
1081
+ .wp-block-file a.wp-block-file__button:hover,
1082
+ .wp-block-file a.wp-block-file__button:visited,
1083
+ .wp-block-file a.wp-block-file__button:focus,
1084
+ .wp-block-file a.wp-block-file__button:active {
1085
+ box-shadow: none;
1086
+ color: #fff;
1087
+ opacity: 0.85;
1088
+ text-decoration: none;
1089
+ }
1090
+ .wp-block-file * + .wp-block-file__button {
1091
+ margin-left: 0.75em;
1092
+ }
1093
+
1094
+ .wp-block-gallery,
1095
+ .blocks-gallery-grid {
1096
+ display: flex;
1097
+ flex-wrap: wrap;
1098
+ list-style-type: none;
1099
+ padding: 0;
1100
+ margin: 0;
1101
+ }
1102
+ .wp-block-gallery .blocks-gallery-image,
1103
+ .wp-block-gallery .blocks-gallery-item,
1104
+ .blocks-gallery-grid .blocks-gallery-image,
1105
+ .blocks-gallery-grid .blocks-gallery-item {
1106
+ margin: 0 1em 1em 0;
1107
+ display: flex;
1108
+ flex-grow: 1;
1109
+ flex-direction: column;
1110
+ justify-content: center;
1111
+ position: relative;
1112
+ align-self: flex-start;
1113
+ width: calc(50% - 1em);
1114
+ }
1115
+ .wp-block-gallery .blocks-gallery-image:nth-of-type(even),
1116
+ .wp-block-gallery .blocks-gallery-item:nth-of-type(even),
1117
+ .blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),
1118
+ .blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {
1119
+ margin-right: 0;
1120
+ }
1121
+ .wp-block-gallery .blocks-gallery-image figure,
1122
+ .wp-block-gallery .blocks-gallery-item figure,
1123
+ .blocks-gallery-grid .blocks-gallery-image figure,
1124
+ .blocks-gallery-grid .blocks-gallery-item figure {
1125
+ margin: 0;
1126
+ height: 100%;
1127
+ }
1128
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
1129
+ .wp-block-gallery .blocks-gallery-image figure,
1130
+ .wp-block-gallery .blocks-gallery-item figure,
1131
+ .blocks-gallery-grid .blocks-gallery-image figure,
1132
+ .blocks-gallery-grid .blocks-gallery-item figure {
1133
+ display: flex;
1134
+ align-items: flex-end;
1135
+ justify-content: flex-start;
1136
+ }
1137
+ }
1138
+ .wp-block-gallery .blocks-gallery-image img,
1139
+ .wp-block-gallery .blocks-gallery-item img,
1140
+ .blocks-gallery-grid .blocks-gallery-image img,
1141
+ .blocks-gallery-grid .blocks-gallery-item img {
1142
+ display: block;
1143
+ max-width: 100%;
1144
+ height: auto;
1145
+ width: 100%;
1146
+ }
1147
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
1148
+ .wp-block-gallery .blocks-gallery-image img,
1149
+ .wp-block-gallery .blocks-gallery-item img,
1150
+ .blocks-gallery-grid .blocks-gallery-image img,
1151
+ .blocks-gallery-grid .blocks-gallery-item img {
1152
+ width: auto;
1153
+ }
1154
+ }
1155
+ .wp-block-gallery .blocks-gallery-image figcaption,
1156
+ .wp-block-gallery .blocks-gallery-item figcaption,
1157
+ .blocks-gallery-grid .blocks-gallery-image figcaption,
1158
+ .blocks-gallery-grid .blocks-gallery-item figcaption {
1159
+ position: absolute;
1160
+ bottom: 0;
1161
+ width: 100%;
1162
+ max-height: 100%;
1163
+ overflow: auto;
1164
+ padding: 3em 0.77em 0.7em;
1165
+ color: #fff;
1166
+ text-align: center;
1167
+ font-size: 0.8em;
1168
+ background: linear-gradient(
1169
+ 0deg,
1170
+ rgba(0, 0, 0, 0.7) 0,
1171
+ rgba(0, 0, 0, 0.3) 70%,
1172
+ transparent
1173
+ );
1174
+ box-sizing: border-box;
1175
+ margin: 0;
1176
+ }
1177
+ .wp-block-gallery .blocks-gallery-image figcaption img,
1178
+ .wp-block-gallery .blocks-gallery-item figcaption img,
1179
+ .blocks-gallery-grid .blocks-gallery-image figcaption img,
1180
+ .blocks-gallery-grid .blocks-gallery-item figcaption img {
1181
+ display: inline;
1182
+ }
1183
+ .wp-block-gallery figcaption,
1184
+ .blocks-gallery-grid figcaption {
1185
+ flex-grow: 1;
1186
+ }
1187
+ .wp-block-gallery.is-cropped .blocks-gallery-image,
1188
+ .wp-block-gallery.is-cropped .blocks-gallery-item,
1189
+ .blocks-gallery-grid.is-cropped .blocks-gallery-image,
1190
+ .blocks-gallery-grid.is-cropped .blocks-gallery-item {
1191
+ -ms-grid-row-align: inherit;
1192
+ align-self: inherit;
1193
+ }
1194
+ .wp-block-gallery.is-cropped .blocks-gallery-image a,
1195
+ .wp-block-gallery.is-cropped .blocks-gallery-image img,
1196
+ .wp-block-gallery.is-cropped .blocks-gallery-item a,
1197
+ .wp-block-gallery.is-cropped .blocks-gallery-item img,
1198
+ .blocks-gallery-grid.is-cropped .blocks-gallery-image a,
1199
+ .blocks-gallery-grid.is-cropped .blocks-gallery-image img,
1200
+ .blocks-gallery-grid.is-cropped .blocks-gallery-item a,
1201
+ .blocks-gallery-grid.is-cropped .blocks-gallery-item img {
1202
+ width: 100%;
1203
+ }
1204
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
1205
+ .wp-block-gallery.is-cropped .blocks-gallery-image a,
1206
+ .wp-block-gallery.is-cropped .blocks-gallery-image img,
1207
+ .wp-block-gallery.is-cropped .blocks-gallery-item a,
1208
+ .wp-block-gallery.is-cropped .blocks-gallery-item img,
1209
+ .blocks-gallery-grid.is-cropped .blocks-gallery-image a,
1210
+ .blocks-gallery-grid.is-cropped .blocks-gallery-image img,
1211
+ .blocks-gallery-grid.is-cropped .blocks-gallery-item a,
1212
+ .blocks-gallery-grid.is-cropped .blocks-gallery-item img {
1213
+ height: 100%;
1214
+ flex: 1;
1215
+ -o-object-fit: cover;
1216
+ object-fit: cover;
1217
+ }
1218
+ }
1219
+ .wp-block-gallery.columns-1 .blocks-gallery-image,
1220
+ .wp-block-gallery.columns-1 .blocks-gallery-item,
1221
+ .blocks-gallery-grid.columns-1 .blocks-gallery-image,
1222
+ .blocks-gallery-grid.columns-1 .blocks-gallery-item {
1223
+ width: 100%;
1224
+ margin-right: 0;
1225
+ }
1226
+ @media (min-width: 600px) {
1227
+ .wp-block-gallery.columns-3 .blocks-gallery-image,
1228
+ .wp-block-gallery.columns-3 .blocks-gallery-item,
1229
+ .blocks-gallery-grid.columns-3 .blocks-gallery-image,
1230
+ .blocks-gallery-grid.columns-3 .blocks-gallery-item {
1231
+ width: calc(33.3333333333% - 0.6666666667em);
1232
+ margin-right: 1em;
1233
+ }
1234
+ .wp-block-gallery.columns-4 .blocks-gallery-image,
1235
+ .wp-block-gallery.columns-4 .blocks-gallery-item,
1236
+ .blocks-gallery-grid.columns-4 .blocks-gallery-image,
1237
+ .blocks-gallery-grid.columns-4 .blocks-gallery-item {
1238
+ width: calc(25% - 0.75em);
1239
+ margin-right: 1em;
1240
+ }
1241
+ .wp-block-gallery.columns-5 .blocks-gallery-image,
1242
+ .wp-block-gallery.columns-5 .blocks-gallery-item,
1243
+ .blocks-gallery-grid.columns-5 .blocks-gallery-image,
1244
+ .blocks-gallery-grid.columns-5 .blocks-gallery-item {
1245
+ width: calc(20% - 0.8em);
1246
+ margin-right: 1em;
1247
+ }
1248
+ .wp-block-gallery.columns-6 .blocks-gallery-image,
1249
+ .wp-block-gallery.columns-6 .blocks-gallery-item,
1250
+ .blocks-gallery-grid.columns-6 .blocks-gallery-image,
1251
+ .blocks-gallery-grid.columns-6 .blocks-gallery-item {
1252
+ width: calc(16.6666666667% - 0.8333333333em);
1253
+ margin-right: 1em;
1254
+ }
1255
+ .wp-block-gallery.columns-7 .blocks-gallery-image,
1256
+ .wp-block-gallery.columns-7 .blocks-gallery-item,
1257
+ .blocks-gallery-grid.columns-7 .blocks-gallery-image,
1258
+ .blocks-gallery-grid.columns-7 .blocks-gallery-item {
1259
+ width: calc(14.2857142857% - 0.8571428571em);
1260
+ margin-right: 1em;
1261
+ }
1262
+ .wp-block-gallery.columns-8 .blocks-gallery-image,
1263
+ .wp-block-gallery.columns-8 .blocks-gallery-item,
1264
+ .blocks-gallery-grid.columns-8 .blocks-gallery-image,
1265
+ .blocks-gallery-grid.columns-8 .blocks-gallery-item {
1266
+ width: calc(12.5% - 0.875em);
1267
+ margin-right: 1em;
1268
+ }
1269
+ .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
1270
+ .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
1271
+ .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),
1272
+ .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {
1273
+ margin-right: 0;
1274
+ }
1275
+ .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
1276
+ .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
1277
+ .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
1278
+ .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {
1279
+ margin-right: 0;
1280
+ }
1281
+ .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
1282
+ .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
1283
+ .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
1284
+ .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {
1285
+ margin-right: 0;
1286
+ }
1287
+ .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
1288
+ .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
1289
+ .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),
1290
+ .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {
1291
+ margin-right: 0;
1292
+ }
1293
+ .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
1294
+ .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
1295
+ .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),
1296
+ .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {
1297
+ margin-right: 0;
1298
+ }
1299
+ .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
1300
+ .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
1301
+ .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),
1302
+ .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {
1303
+ margin-right: 0;
1304
+ }
1305
+ .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
1306
+ .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
1307
+ .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),
1308
+ .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {
1309
+ margin-right: 0;
1310
+ }
1311
+ .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
1312
+ .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),
1313
+ .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),
1314
+ .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {
1315
+ margin-right: 0;
1316
+ }
1317
+ }
1318
+ .wp-block-gallery .blocks-gallery-image:last-child,
1319
+ .wp-block-gallery .blocks-gallery-item:last-child,
1320
+ .blocks-gallery-grid .blocks-gallery-image:last-child,
1321
+ .blocks-gallery-grid .blocks-gallery-item:last-child {
1322
+ margin-right: 0;
1323
+ }
1324
+ .wp-block-gallery.alignleft,
1325
+ .wp-block-gallery.alignright,
1326
+ .blocks-gallery-grid.alignleft,
1327
+ .blocks-gallery-grid.alignright {
1328
+ max-width: 420px;
1329
+ width: 100%;
1330
+ }
1331
+ .wp-block-gallery.aligncenter .blocks-gallery-item figure,
1332
+ .blocks-gallery-grid.aligncenter .blocks-gallery-item figure {
1333
+ justify-content: center;
1334
+ }
1335
+
1336
+ .wp-block-group {
1337
+ box-sizing: border-box;
1338
+ }
1339
+
1340
+ h1.has-background,
1341
+ h2.has-background,
1342
+ h3.has-background,
1343
+ h4.has-background,
1344
+ h5.has-background,
1345
+ h6.has-background {
1346
+ padding: 1.25em 2.375em;
1347
+ }
1348
+
1349
+ .wp-block-image {
1350
+ margin: 0 0 1em 0;
1351
+ }
1352
+ .wp-block-image img {
1353
+ max-width: 100%;
1354
+ }
1355
+ .wp-block-image:not(.is-style-rounded) img {
1356
+ border-radius: inherit;
1357
+ }
1358
+ .wp-block-image.aligncenter {
1359
+ text-align: center;
1360
+ }
1361
+ .wp-block-image.alignfull img,
1362
+ .wp-block-image.alignwide img {
1363
+ width: 100%;
1364
+ }
1365
+ .wp-block-image .alignleft,
1366
+ .wp-block-image .alignright,
1367
+ .wp-block-image .aligncenter {
1368
+ display: table;
1369
+ }
1370
+ .wp-block-image .alignleft > figcaption,
1371
+ .wp-block-image .alignright > figcaption,
1372
+ .wp-block-image .aligncenter > figcaption {
1373
+ display: table-caption;
1374
+ caption-side: bottom;
1375
+ }
1376
+ .wp-block-image .alignleft {
1377
+ /*rtl:ignore*/
1378
+ float: left;
1379
+ /*rtl:ignore*/
1380
+ margin-left: 0;
1381
+ margin-right: 1em;
1382
+ margin-top: 0.5em;
1383
+ margin-bottom: 0.5em;
1384
+ }
1385
+ .wp-block-image .alignright {
1386
+ /*rtl:ignore*/
1387
+ float: right;
1388
+ /*rtl:ignore*/
1389
+ margin-right: 0;
1390
+ margin-left: 1em;
1391
+ margin-top: 0.5em;
1392
+ margin-bottom: 0.5em;
1393
+ }
1394
+ .wp-block-image .aligncenter {
1395
+ margin-left: auto;
1396
+ margin-right: auto;
1397
+ }
1398
+ .wp-block-image figcaption {
1399
+ margin-top: 0.5em;
1400
+ margin-bottom: 1em;
1401
+ }
1402
+ .wp-block-image.is-style-rounded img {
1403
+ border-radius: 9999px;
1404
+ }
1405
+ .wp-block-image.is-style-circle-mask img {
1406
+ border-radius: 9999px;
1407
+ }
1408
+ @supports ((-webkit-mask-image: none) or (mask-image: none)) or
1409
+ (-webkit-mask-image: none) {
1410
+ .wp-block-image.is-style-circle-mask img {
1411
+ /* stylelint-disable */
1412
+ -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
1413
+ mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
1414
+ /* stylelint-enable */
1415
+ mask-mode: alpha;
1416
+ -webkit-mask-repeat: no-repeat;
1417
+ mask-repeat: no-repeat;
1418
+ -webkit-mask-size: contain;
1419
+ mask-size: contain;
1420
+ -webkit-mask-position: center;
1421
+ mask-position: center;
1422
+ border-radius: 0;
1423
+ }
1424
+ }
1425
+
1426
+ ol.wp-block-latest-comments {
1427
+ padding-left: 0;
1428
+ }
1429
+
1430
+ .wp-block-latest-comments__comment {
1431
+ line-height: 1.1;
1432
+ list-style: none;
1433
+ margin-bottom: 1em;
1434
+ }
1435
+ .has-avatars .wp-block-latest-comments__comment {
1436
+ min-height: 2.25em;
1437
+ list-style: none;
1438
+ }
1439
+ .has-avatars
1440
+ .wp-block-latest-comments__comment
1441
+ .wp-block-latest-comments__comment-meta,
1442
+ .has-avatars
1443
+ .wp-block-latest-comments__comment
1444
+ .wp-block-latest-comments__comment-excerpt {
1445
+ margin-left: 3.25em;
1446
+ }
1447
+ .has-dates .wp-block-latest-comments__comment,
1448
+ .has-excerpts .wp-block-latest-comments__comment {
1449
+ line-height: 1.5;
1450
+ }
1451
+
1452
+ .wp-block-latest-comments__comment-excerpt p {
1453
+ font-size: 0.875em;
1454
+ line-height: 1.8;
1455
+ margin: 0.36em 0 1.4em;
1456
+ }
1457
+
1458
+ .wp-block-latest-comments__comment-date {
1459
+ display: block;
1460
+ font-size: 0.75em;
1461
+ }
1462
+
1463
+ .wp-block-latest-comments .avatar,
1464
+ .wp-block-latest-comments__comment-avatar {
1465
+ border-radius: 1.5em;
1466
+ display: block;
1467
+ float: left;
1468
+ height: 2.5em;
1469
+ margin-right: 0.75em;
1470
+ width: 2.5em;
1471
+ }
1472
+
1473
+ .wp-block-latest-posts.alignleft {
1474
+ /*rtl:ignore*/
1475
+ margin-right: 2em;
1476
+ }
1477
+ .wp-block-latest-posts.alignright {
1478
+ /*rtl:ignore*/
1479
+ margin-left: 2em;
1480
+ }
1481
+ .wp-block-latest-posts.wp-block-latest-posts__list {
1482
+ list-style: none;
1483
+ }
1484
+ .wp-block-latest-posts.wp-block-latest-posts__list li {
1485
+ clear: both;
1486
+ }
1487
+ .wp-block-latest-posts.is-grid {
1488
+ display: flex;
1489
+ flex-wrap: wrap;
1490
+ padding: 0;
1491
+ }
1492
+ .wp-block-latest-posts.is-grid li {
1493
+ margin: 0 1.25em 1.25em 0;
1494
+ width: 100%;
1495
+ }
1496
+ @media (min-width: 600px) {
1497
+ .wp-block-latest-posts.columns-2 li {
1498
+ width: calc((100% / 2) - 1.25em + (1.25em / 2));
1499
+ }
1500
+ .wp-block-latest-posts.columns-2 li:nth-child(2n) {
1501
+ margin-right: 0;
1502
+ }
1503
+ .wp-block-latest-posts.columns-3 li {
1504
+ width: calc((100% / 3) - 1.25em + (1.25em / 3));
1505
+ }
1506
+ .wp-block-latest-posts.columns-3 li:nth-child(3n) {
1507
+ margin-right: 0;
1508
+ }
1509
+ .wp-block-latest-posts.columns-4 li {
1510
+ width: calc((100% / 4) - 1.25em + (1.25em / 4));
1511
+ }
1512
+ .wp-block-latest-posts.columns-4 li:nth-child(4n) {
1513
+ margin-right: 0;
1514
+ }
1515
+ .wp-block-latest-posts.columns-5 li {
1516
+ width: calc((100% / 5) - 1.25em + (1.25em / 5));
1517
+ }
1518
+ .wp-block-latest-posts.columns-5 li:nth-child(5n) {
1519
+ margin-right: 0;
1520
+ }
1521
+ .wp-block-latest-posts.columns-6 li {
1522
+ width: calc((100% / 6) - 1.25em + (1.25em / 6));
1523
+ }
1524
+ .wp-block-latest-posts.columns-6 li:nth-child(6n) {
1525
+ margin-right: 0;
1526
+ }
1527
+ }
1528
+
1529
+ .wp-block-latest-posts__post-date,
1530
+ .wp-block-latest-posts__post-author {
1531
+ display: block;
1532
+ color: #555;
1533
+ font-size: 0.8125em;
1534
+ }
1535
+
1536
+ .wp-block-latest-posts__post-excerpt {
1537
+ margin-top: 0.5em;
1538
+ margin-bottom: 1em;
1539
+ }
1540
+
1541
+ .wp-block-latest-posts__featured-image a {
1542
+ display: inline-block;
1543
+ }
1544
+ .wp-block-latest-posts__featured-image img {
1545
+ height: auto;
1546
+ width: auto;
1547
+ }
1548
+ .wp-block-latest-posts__featured-image.alignleft {
1549
+ /*rtl:ignore*/
1550
+ margin-right: 1em;
1551
+ }
1552
+ .wp-block-latest-posts__featured-image.alignright {
1553
+ /*rtl:ignore*/
1554
+ margin-left: 1em;
1555
+ }
1556
+ .wp-block-latest-posts__featured-image.aligncenter {
1557
+ margin-bottom: 1em;
1558
+ text-align: center;
1559
+ }
1560
+
1561
+ .block-editor-image-alignment-control__row .components-base-control__field {
1562
+ display: flex;
1563
+ justify-content: space-between;
1564
+ align-items: center;
1565
+ }
1566
+ .block-editor-image-alignment-control__row
1567
+ .components-base-control__field
1568
+ .components-base-control__label {
1569
+ margin-bottom: 0;
1570
+ }
1571
+
1572
+ ol.has-background,
1573
+ ul.has-background {
1574
+ padding: 1.25em 2.375em;
1575
+ }
1576
+
1577
+ .wp-block-media-text {
1578
+ /*!rtl:begin:ignore*/
1579
+ direction: ltr;
1580
+ /*!rtl:end:ignore*/
1581
+ display: -ms-grid;
1582
+ display: grid;
1583
+ -ms-grid-columns: 50% 1fr;
1584
+ grid-template-columns: 50% 1fr;
1585
+ -ms-grid-rows: auto;
1586
+ grid-template-rows: auto;
1587
+ }
1588
+ .wp-block-media-text.has-media-on-the-right {
1589
+ -ms-grid-columns: 1fr 50%;
1590
+ grid-template-columns: 1fr 50%;
1591
+ }
1592
+
1593
+ .wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
1594
+ .wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
1595
+ -ms-grid-row-align: start;
1596
+ align-self: start;
1597
+ }
1598
+
1599
+ .wp-block-media-text .wp-block-media-text__content,
1600
+ .wp-block-media-text .wp-block-media-text__media,
1601
+ .wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
1602
+ .wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
1603
+ -ms-grid-row-align: center;
1604
+ align-self: center;
1605
+ }
1606
+
1607
+ .wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
1608
+ .wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
1609
+ -ms-grid-row-align: end;
1610
+ align-self: end;
1611
+ }
1612
+
1613
+ .wp-block-media-text .wp-block-media-text__media {
1614
+ /*!rtl:begin:ignore*/
1615
+ -ms-grid-column: 1;
1616
+ grid-column: 1;
1617
+ -ms-grid-row: 1;
1618
+ grid-row: 1;
1619
+ /*!rtl:end:ignore*/
1620
+ margin: 0;
1621
+ }
1622
+
1623
+ .wp-block-media-text .wp-block-media-text__content {
1624
+ direction: ltr;
1625
+ /*!rtl:begin:ignore*/
1626
+ -ms-grid-column: 2;
1627
+ grid-column: 2;
1628
+ -ms-grid-row: 1;
1629
+ grid-row: 1;
1630
+ /*!rtl:end:ignore*/
1631
+ padding: 0 8% 0 8%;
1632
+ word-break: break-word;
1633
+ }
1634
+
1635
+ .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
1636
+ /*!rtl:begin:ignore*/
1637
+ -ms-grid-column: 2;
1638
+ grid-column: 2;
1639
+ -ms-grid-row: 1;
1640
+ grid-row: 1;
1641
+ /*!rtl:end:ignore*/
1642
+ }
1643
+
1644
+ .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
1645
+ /*!rtl:begin:ignore*/
1646
+ -ms-grid-column: 1;
1647
+ grid-column: 1;
1648
+ -ms-grid-row: 1;
1649
+ grid-row: 1;
1650
+ /*!rtl:end:ignore*/
1651
+ }
1652
+
1653
+ .wp-block-media-text__media img,
1654
+ .wp-block-media-text__media video {
1655
+ max-width: unset;
1656
+ width: 100%;
1657
+ vertical-align: middle;
1658
+ }
1659
+
1660
+ .wp-block-media-text.is-image-fill .wp-block-media-text__media {
1661
+ height: 100%;
1662
+ min-height: 250px;
1663
+ background-size: cover;
1664
+ }
1665
+
1666
+ .wp-block-media-text.is-image-fill .wp-block-media-text__media > a {
1667
+ display: block;
1668
+ height: 100%;
1669
+ }
1670
+
1671
+ .wp-block-media-text.is-image-fill .wp-block-media-text__media img {
1672
+ position: absolute;
1673
+ width: 1px;
1674
+ height: 1px;
1675
+ padding: 0;
1676
+ margin: -1px;
1677
+ overflow: hidden;
1678
+ clip: rect(0, 0, 0, 0);
1679
+ border: 0;
1680
+ }
1681
+
1682
+ /*
1683
+ * Here we here not able to use a mobile first CSS approach.
1684
+ * Custom widths are set using inline styles, and on mobile,
1685
+ * we need 100% width, so we use important to overwrite the inline style.
1686
+ * If the style were set on mobile first, on desktop styles,
1687
+ * we would have no way of setting the style again to the inline style.
1688
+ */
1689
+ @media (max-width: 600px) {
1690
+ .wp-block-media-text.is-stacked-on-mobile {
1691
+ -ms-grid-columns: 100% !important;
1692
+ grid-template-columns: 100% !important;
1693
+ }
1694
+ .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
1695
+ -ms-grid-column: 1;
1696
+ grid-column: 1;
1697
+ -ms-grid-row: 1;
1698
+ grid-row: 1;
1699
+ }
1700
+ .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
1701
+ -ms-grid-column: 1;
1702
+ grid-column: 1;
1703
+ -ms-grid-row: 2;
1704
+ grid-row: 2;
1705
+ }
1706
+ }
1707
+ .wp-block-navigation ul,
1708
+ .wp-block-navigation ul li {
1709
+ list-style: none;
1710
+ padding: 0;
1711
+ }
1712
+
1713
+ .wp-block-navigation__container {
1714
+ align-items: center;
1715
+ list-style: none;
1716
+ margin: 0;
1717
+ padding-left: 0;
1718
+ display: flex;
1719
+ flex-wrap: wrap;
1720
+ }
1721
+ .is-vertical .wp-block-navigation__container {
1722
+ display: block;
1723
+ }
1724
+
1725
+ .items-justified-center > ul {
1726
+ justify-content: center;
1727
+ }
1728
+
1729
+ .items-justified-right > ul {
1730
+ justify-content: flex-end;
1731
+ }
1732
+
1733
+ .items-justified-space-between > ul {
1734
+ justify-content: space-between;
1735
+ }
1736
+
1737
+ .wp-block-navigation .wp-block-pages-list__item,
1738
+ .wp-block-navigation .wp-block-navigation-link {
1739
+ display: flex;
1740
+ align-items: center;
1741
+ position: relative;
1742
+ margin: 0 0.5em 0 0;
1743
+ }
1744
+ .wp-block-navigation
1745
+ .wp-block-pages-list__item
1746
+ .wp-block-navigation-link__container:empty,
1747
+ .wp-block-navigation
1748
+ .wp-block-navigation-link
1749
+ .wp-block-navigation-link__container:empty {
1750
+ display: none;
1751
+ }
1752
+ .wp-block-navigation
1753
+ .wp-block-navigation__container
1754
+ > .wp-block-pages-list__item:last-child,
1755
+ .wp-block-navigation
1756
+ .wp-block-navigation__container
1757
+ > .wp-block-navigation-link:last-child {
1758
+ margin-right: 0;
1759
+ }
1760
+ .wp-block-navigation .wp-block-pages-list__item__link,
1761
+ .wp-block-navigation .wp-block-navigation-link__content {
1762
+ color: inherit;
1763
+ display: block;
1764
+ padding: 0.5em 1em;
1765
+ }
1766
+ .wp-block-navigation[style*="text-decoration"] .wp-block-pages-list__item,
1767
+ .wp-block-navigation[style*="text-decoration"]
1768
+ .wp-block-navigation-link__container,
1769
+ .wp-block-navigation[style*="text-decoration"] .wp-block-navigation-link {
1770
+ text-decoration: inherit;
1771
+ }
1772
+ .wp-block-navigation[style*="text-decoration"] .wp-block-pages-list__item__link,
1773
+ .wp-block-navigation[style*="text-decoration"]
1774
+ .wp-block-navigation-link__content {
1775
+ text-decoration: inherit;
1776
+ }
1777
+ .wp-block-navigation[style*="text-decoration"]
1778
+ .wp-block-pages-list__item__link:focus,
1779
+ .wp-block-navigation[style*="text-decoration"]
1780
+ .wp-block-pages-list__item__link:active,
1781
+ .wp-block-navigation[style*="text-decoration"]
1782
+ .wp-block-navigation-link__content:focus,
1783
+ .wp-block-navigation[style*="text-decoration"]
1784
+ .wp-block-navigation-link__content:active {
1785
+ text-decoration: inherit;
1786
+ }
1787
+ .wp-block-navigation:not([style*="text-decoration"])
1788
+ .wp-block-pages-list__item__link,
1789
+ .wp-block-navigation:not([style*="text-decoration"])
1790
+ .wp-block-navigation-link__content {
1791
+ text-decoration: none;
1792
+ }
1793
+ .wp-block-navigation:not([style*="text-decoration"])
1794
+ .wp-block-pages-list__item__link:focus,
1795
+ .wp-block-navigation:not([style*="text-decoration"])
1796
+ .wp-block-pages-list__item__link:active,
1797
+ .wp-block-navigation:not([style*="text-decoration"])
1798
+ .wp-block-navigation-link__content:focus,
1799
+ .wp-block-navigation:not([style*="text-decoration"])
1800
+ .wp-block-navigation-link__content:active {
1801
+ text-decoration: none;
1802
+ }
1803
+ .wp-block-navigation .wp-block-navigation-link__label {
1804
+ word-break: normal;
1805
+ overflow-wrap: break-word;
1806
+ }
1807
+ .wp-block-navigation .wp-block-page-list__submenu-icon,
1808
+ .wp-block-navigation .wp-block-navigation-link__submenu-icon {
1809
+ height: inherit;
1810
+ padding: 0.375em 1em 0.375em 0;
1811
+ }
1812
+ .wp-block-navigation .wp-block-page-list__submenu-icon svg,
1813
+ .wp-block-navigation .wp-block-navigation-link__submenu-icon svg {
1814
+ stroke: currentColor;
1815
+ }
1816
+ .wp-block-navigation .has-child > .wp-block-pages-list__item__link,
1817
+ .wp-block-navigation .has-child > .wp-block-navigation-link__content {
1818
+ padding-right: 0.5em;
1819
+ }
1820
+ .wp-block-navigation .has-child .submenu-container,
1821
+ .wp-block-navigation .has-child .wp-block-navigation-link__container {
1822
+ background-color: inherit;
1823
+ color: inherit;
1824
+ position: absolute;
1825
+ left: 0;
1826
+ top: 100%;
1827
+ z-index: 2;
1828
+ display: flex;
1829
+ flex-direction: column;
1830
+ align-items: normal;
1831
+ min-width: 200px;
1832
+ opacity: 0;
1833
+ transition: opacity 0.1s linear;
1834
+ visibility: hidden;
1835
+ }
1836
+ .wp-block-navigation .has-child .submenu-container > .wp-block-pages-list__item,
1837
+ .wp-block-navigation .has-child .submenu-container > .wp-block-navigation-link,
1838
+ .wp-block-navigation
1839
+ .has-child
1840
+ .wp-block-navigation-link__container
1841
+ > .wp-block-pages-list__item,
1842
+ .wp-block-navigation
1843
+ .has-child
1844
+ .wp-block-navigation-link__container
1845
+ > .wp-block-navigation-link {
1846
+ margin: 0;
1847
+ }
1848
+ .wp-block-navigation
1849
+ .has-child
1850
+ .submenu-container
1851
+ > .wp-block-pages-list__item
1852
+ > .wp-block-pages-list__item__link,
1853
+ .wp-block-navigation
1854
+ .has-child
1855
+ .submenu-container
1856
+ > .wp-block-pages-list__item
1857
+ > .wp-block-navigation-link__content,
1858
+ .wp-block-navigation
1859
+ .has-child
1860
+ .submenu-container
1861
+ > .wp-block-navigation-link
1862
+ > .wp-block-pages-list__item__link,
1863
+ .wp-block-navigation
1864
+ .has-child
1865
+ .submenu-container
1866
+ > .wp-block-navigation-link
1867
+ > .wp-block-navigation-link__content,
1868
+ .wp-block-navigation
1869
+ .has-child
1870
+ .wp-block-navigation-link__container
1871
+ > .wp-block-pages-list__item
1872
+ > .wp-block-pages-list__item__link,
1873
+ .wp-block-navigation
1874
+ .has-child
1875
+ .wp-block-navigation-link__container
1876
+ > .wp-block-pages-list__item
1877
+ > .wp-block-navigation-link__content,
1878
+ .wp-block-navigation
1879
+ .has-child
1880
+ .wp-block-navigation-link__container
1881
+ > .wp-block-navigation-link
1882
+ > .wp-block-pages-list__item__link,
1883
+ .wp-block-navigation
1884
+ .has-child
1885
+ .wp-block-navigation-link__container
1886
+ > .wp-block-navigation-link
1887
+ > .wp-block-navigation-link__content {
1888
+ flex-grow: 1;
1889
+ }
1890
+ .wp-block-navigation
1891
+ .has-child
1892
+ .submenu-container
1893
+ > .wp-block-pages-list__item
1894
+ > .wp-block-page-list__submenu-icon,
1895
+ .wp-block-navigation
1896
+ .has-child
1897
+ .submenu-container
1898
+ > .wp-block-pages-list__item
1899
+ > .wp-block-navigation-link__submenu-icon,
1900
+ .wp-block-navigation
1901
+ .has-child
1902
+ .submenu-container
1903
+ > .wp-block-navigation-link
1904
+ > .wp-block-page-list__submenu-icon,
1905
+ .wp-block-navigation
1906
+ .has-child
1907
+ .submenu-container
1908
+ > .wp-block-navigation-link
1909
+ > .wp-block-navigation-link__submenu-icon,
1910
+ .wp-block-navigation
1911
+ .has-child
1912
+ .wp-block-navigation-link__container
1913
+ > .wp-block-pages-list__item
1914
+ > .wp-block-page-list__submenu-icon,
1915
+ .wp-block-navigation
1916
+ .has-child
1917
+ .wp-block-navigation-link__container
1918
+ > .wp-block-pages-list__item
1919
+ > .wp-block-navigation-link__submenu-icon,
1920
+ .wp-block-navigation
1921
+ .has-child
1922
+ .wp-block-navigation-link__container
1923
+ > .wp-block-navigation-link
1924
+ > .wp-block-page-list__submenu-icon,
1925
+ .wp-block-navigation
1926
+ .has-child
1927
+ .wp-block-navigation-link__container
1928
+ > .wp-block-navigation-link
1929
+ > .wp-block-navigation-link__submenu-icon {
1930
+ padding-right: 0.5em;
1931
+ }
1932
+ @media (min-width: 782px) {
1933
+ .wp-block-navigation .has-child .submenu-container .submenu-container,
1934
+ .wp-block-navigation
1935
+ .has-child
1936
+ .submenu-container
1937
+ .wp-block-navigation-link__container,
1938
+ .wp-block-navigation
1939
+ .has-child
1940
+ .wp-block-navigation-link__container
1941
+ .submenu-container,
1942
+ .wp-block-navigation
1943
+ .has-child
1944
+ .wp-block-navigation-link__container
1945
+ .wp-block-navigation-link__container {
1946
+ left: 100%;
1947
+ top: 0;
1948
+ }
1949
+ .wp-block-navigation .has-child .submenu-container .submenu-container::before,
1950
+ .wp-block-navigation
1951
+ .has-child
1952
+ .submenu-container
1953
+ .wp-block-navigation-link__container::before,
1954
+ .wp-block-navigation
1955
+ .has-child
1956
+ .wp-block-navigation-link__container
1957
+ .submenu-container::before,
1958
+ .wp-block-navigation
1959
+ .has-child
1960
+ .wp-block-navigation-link__container
1961
+ .wp-block-navigation-link__container::before {
1962
+ content: "";
1963
+ position: absolute;
1964
+ right: 100%;
1965
+ height: 100%;
1966
+ display: block;
1967
+ width: 0.5em;
1968
+ background: transparent;
1969
+ }
1970
+ .wp-block-navigation
1971
+ .has-child
1972
+ .submenu-container
1973
+ .wp-block-page-list__submenu-icon
1974
+ svg,
1975
+ .wp-block-navigation
1976
+ .has-child
1977
+ .submenu-container
1978
+ .wp-block-navigation-link__submenu-icon
1979
+ svg,
1980
+ .wp-block-navigation
1981
+ .has-child
1982
+ .wp-block-navigation-link__container
1983
+ .wp-block-page-list__submenu-icon
1984
+ svg,
1985
+ .wp-block-navigation
1986
+ .has-child
1987
+ .wp-block-navigation-link__container
1988
+ .wp-block-navigation-link__submenu-icon
1989
+ svg {
1990
+ transform: rotate(-90deg);
1991
+ }
1992
+ }
1993
+ .wp-block-navigation .has-child:hover > .wp-block-navigation-link__container {
1994
+ visibility: visible;
1995
+ opacity: 1;
1996
+ }
1997
+ .wp-block-navigation
1998
+ .has-child:focus-within
1999
+ > .wp-block-navigation-link__container {
2000
+ visibility: visible;
2001
+ opacity: 1;
2002
+ }
2003
+ .wp-block-navigation .has-child:hover {
2004
+ cursor: pointer;
2005
+ }
2006
+ .wp-block-navigation .has-child:hover > .submenu-container {
2007
+ visibility: visible;
2008
+ opacity: 1;
2009
+ }
2010
+ .wp-block-navigation .has-child:focus-within {
2011
+ cursor: pointer;
2012
+ }
2013
+ .wp-block-navigation .has-child:focus-within > .submenu-container {
2014
+ visibility: visible;
2015
+ opacity: 1;
2016
+ }
2017
+ .wp-block-navigation.items-justified-space-between
2018
+ > .submenu-container
2019
+ > .has-child:last-child
2020
+ .submenu-container,
2021
+ .wp-block-navigation.items-justified-space-between
2022
+ > .submenu-container
2023
+ > .has-child:last-child
2024
+ .wp-block-navigation-link__container,
2025
+ .wp-block-navigation.items-justified-space-between
2026
+ > .wp-block-navigation__container
2027
+ > .has-child:last-child
2028
+ .submenu-container,
2029
+ .wp-block-navigation.items-justified-space-between
2030
+ > .wp-block-navigation__container
2031
+ > .has-child:last-child
2032
+ .wp-block-navigation-link__container,
2033
+ .wp-block-navigation.items-justified-right .has-child .submenu-container,
2034
+ .wp-block-navigation.items-justified-right
2035
+ .has-child
2036
+ .wp-block-navigation-link__container {
2037
+ left: auto;
2038
+ right: 0;
2039
+ }
2040
+ .wp-block-navigation.items-justified-space-between
2041
+ > .submenu-container
2042
+ > .has-child:last-child
2043
+ .submenu-container
2044
+ .submenu-container,
2045
+ .wp-block-navigation.items-justified-space-between
2046
+ > .submenu-container
2047
+ > .has-child:last-child
2048
+ .submenu-container
2049
+ .wp-block-navigation-link__container,
2050
+ .wp-block-navigation.items-justified-space-between
2051
+ > .submenu-container
2052
+ > .has-child:last-child
2053
+ .wp-block-navigation-link__container
2054
+ .submenu-container,
2055
+ .wp-block-navigation.items-justified-space-between
2056
+ > .submenu-container
2057
+ > .has-child:last-child
2058
+ .wp-block-navigation-link__container
2059
+ .wp-block-navigation-link__container,
2060
+ .wp-block-navigation.items-justified-space-between
2061
+ > .wp-block-navigation__container
2062
+ > .has-child:last-child
2063
+ .submenu-container
2064
+ .submenu-container,
2065
+ .wp-block-navigation.items-justified-space-between
2066
+ > .wp-block-navigation__container
2067
+ > .has-child:last-child
2068
+ .submenu-container
2069
+ .wp-block-navigation-link__container,
2070
+ .wp-block-navigation.items-justified-space-between
2071
+ > .wp-block-navigation__container
2072
+ > .has-child:last-child
2073
+ .wp-block-navigation-link__container
2074
+ .submenu-container,
2075
+ .wp-block-navigation.items-justified-space-between
2076
+ > .wp-block-navigation__container
2077
+ > .has-child:last-child
2078
+ .wp-block-navigation-link__container
2079
+ .wp-block-navigation-link__container,
2080
+ .wp-block-navigation.items-justified-right
2081
+ .has-child
2082
+ .submenu-container
2083
+ .submenu-container,
2084
+ .wp-block-navigation.items-justified-right
2085
+ .has-child
2086
+ .submenu-container
2087
+ .wp-block-navigation-link__container,
2088
+ .wp-block-navigation.items-justified-right
2089
+ .has-child
2090
+ .wp-block-navigation-link__container
2091
+ .submenu-container,
2092
+ .wp-block-navigation.items-justified-right
2093
+ .has-child
2094
+ .wp-block-navigation-link__container
2095
+ .wp-block-navigation-link__container {
2096
+ left: auto;
2097
+ right: 100%;
2098
+ }
2099
+
2100
+ .wp-block-navigation:not(.has-background) .submenu-container,
2101
+ .wp-block-navigation:not(.has-background)
2102
+ .wp-block-navigation__container
2103
+ .wp-block-navigation-link__container {
2104
+ background-color: #fff;
2105
+ color: #000;
2106
+ border: 1px solid rgba(0, 0, 0, 0.15);
2107
+ }
2108
+ .wp-block-navigation:not(.has-background) .submenu-container .submenu-container,
2109
+ .wp-block-navigation:not(.has-background)
2110
+ .submenu-container
2111
+ .wp-block-navigation-link__container,
2112
+ .wp-block-navigation:not(.has-background)
2113
+ .wp-block-navigation__container
2114
+ .wp-block-navigation-link__container
2115
+ .submenu-container,
2116
+ .wp-block-navigation:not(.has-background)
2117
+ .wp-block-navigation__container
2118
+ .wp-block-navigation-link__container
2119
+ .wp-block-navigation-link__container {
2120
+ top: -1px;
2121
+ }
2122
+
2123
+ .wp-block-navigation .wp-block-page-list {
2124
+ display: flex;
2125
+ flex-wrap: wrap;
2126
+ background-color: inherit;
2127
+ }
2128
+ .wp-block-navigation .wp-block-pages-list__item {
2129
+ background-color: inherit;
2130
+ }
2131
+ .wp-block-navigation .wp-block-page-list__submenu-icon {
2132
+ display: none;
2133
+ }
2134
+ .wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon {
2135
+ display: block;
2136
+ }
2137
+
2138
+ .is-vertical .wp-block-navigation__container .wp-block-page-list {
2139
+ display: block;
2140
+ }
2141
+
2142
+ .is-small-text {
2143
+ font-size: 0.875em;
2144
+ }
2145
+
2146
+ .is-regular-text {
2147
+ font-size: 1em;
2148
+ }
2149
+
2150
+ .is-large-text {
2151
+ font-size: 2.25em;
2152
+ }
2153
+
2154
+ .is-larger-text {
2155
+ font-size: 3em;
2156
+ }
2157
+
2158
+ .has-drop-cap:not(:focus)::first-letter {
2159
+ float: left;
2160
+ font-size: 8.4em;
2161
+ line-height: 0.68;
2162
+ font-weight: 100;
2163
+ margin: 0.05em 0.1em 0 0;
2164
+ text-transform: uppercase;
2165
+ font-style: normal;
2166
+ }
2167
+
2168
+ p.has-drop-cap.has-background {
2169
+ overflow: hidden;
2170
+ }
2171
+
2172
+ p.has-background {
2173
+ padding: 1.25em 2.375em;
2174
+ }
2175
+
2176
+ p.has-text-color a {
2177
+ color: inherit;
2178
+ }
2179
+
2180
+ .wp-block-post-author {
2181
+ display: flex;
2182
+ flex-wrap: wrap;
2183
+ }
2184
+ .wp-block-post-author__byline {
2185
+ width: 100%;
2186
+ margin-top: 0;
2187
+ margin-bottom: 0;
2188
+ font-size: 0.5em;
2189
+ }
2190
+ .wp-block-post-author__avatar {
2191
+ margin-right: 1em;
2192
+ }
2193
+ .wp-block-post-author__bio {
2194
+ margin-bottom: 0.7em;
2195
+ font-size: 0.7em;
2196
+ }
2197
+ .wp-block-post-author__content {
2198
+ flex-grow: 1;
2199
+ flex-basis: 0;
2200
+ }
2201
+ .wp-block-post-author__name {
2202
+ font-weight: bold;
2203
+ margin: 0;
2204
+ }
2205
+
2206
+ .wp-block-post-comments-form input[type="submit"] {
2207
+ color: #fff;
2208
+ background-color: #32373c;
2209
+ border: none;
2210
+ border-radius: 9999px;
2211
+ box-shadow: none;
2212
+ cursor: pointer;
2213
+ display: inline-block;
2214
+ font-size: 1.125em;
2215
+ padding: 0.667em 1.333em;
2216
+ text-align: center;
2217
+ text-decoration: none;
2218
+ overflow-wrap: break-word;
2219
+ }
2220
+ .wp-block-post-comments-form input[type="submit"]:hover,
2221
+ .wp-block-post-comments-form input[type="submit"]:focus,
2222
+ .wp-block-post-comments-form input[type="submit"]:active,
2223
+ .wp-block-post-comments-form input[type="submit"]:visited {
2224
+ color: #fff;
2225
+ }
2226
+
2227
+ .wp-block-post-excerpt__more-link {
2228
+ display: inline-block;
2229
+ }
2230
+
2231
+ .wp-block-preformatted {
2232
+ white-space: pre-wrap;
2233
+ }
2234
+
2235
+ .wp-block-preformatted.has-background {
2236
+ padding: 1.25em 2.375em;
2237
+ }
2238
+
2239
+ .wp-block-pullquote {
2240
+ margin: 0 0 1em 0;
2241
+ padding: 3em 0;
2242
+ text-align: center;
2243
+ }
2244
+ .wp-block-pullquote.alignleft,
2245
+ .wp-block-pullquote.alignright {
2246
+ max-width: 420px;
2247
+ }
2248
+ .wp-block-pullquote.alignleft p,
2249
+ .wp-block-pullquote.alignright p {
2250
+ font-size: 1.25em;
2251
+ }
2252
+ .wp-block-pullquote p {
2253
+ font-size: 1.75em;
2254
+ line-height: 1.6;
2255
+ }
2256
+ .wp-block-pullquote cite,
2257
+ .wp-block-pullquote footer {
2258
+ position: relative;
2259
+ }
2260
+ .wp-block-pullquote .has-text-color a {
2261
+ color: inherit;
2262
+ }
2263
+
2264
+ .wp-block-pullquote:not(.is-style-solid-color) {
2265
+ background: none;
2266
+ }
2267
+
2268
+ .wp-block-pullquote.is-style-solid-color {
2269
+ border: none;
2270
+ }
2271
+ .wp-block-pullquote.is-style-solid-color blockquote {
2272
+ margin-left: auto;
2273
+ margin-right: auto;
2274
+ text-align: left;
2275
+ max-width: 60%;
2276
+ }
2277
+ .wp-block-pullquote.is-style-solid-color blockquote p {
2278
+ margin-top: 0;
2279
+ margin-bottom: 0;
2280
+ font-size: 2em;
2281
+ }
2282
+ .wp-block-pullquote.is-style-solid-color blockquote cite {
2283
+ text-transform: none;
2284
+ font-style: normal;
2285
+ }
2286
+
2287
+ .wp-block-pullquote cite {
2288
+ color: inherit;
2289
+ }
2290
+
2291
+ .wp-block-query-loop {
2292
+ max-width: 100%;
2293
+ list-style: none;
2294
+ padding: 0;
2295
+ }
2296
+ .wp-block-query-loop li {
2297
+ clear: both;
2298
+ }
2299
+ .wp-block-query-loop.is-flex-container {
2300
+ flex-direction: row;
2301
+ display: flex;
2302
+ flex-wrap: wrap;
2303
+ }
2304
+ .wp-block-query-loop.is-flex-container li {
2305
+ margin: 0 0 1.25em 0;
2306
+ width: 100%;
2307
+ }
2308
+ @media (min-width: 600px) {
2309
+ .wp-block-query-loop.is-flex-container li {
2310
+ margin-right: 1.25em;
2311
+ }
2312
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li {
2313
+ width: calc((100% / 2) - 1.25em + (1.25em / 2));
2314
+ }
2315
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-2
2316
+ > li:nth-child(2n) {
2317
+ margin-right: 0;
2318
+ }
2319
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
2320
+ width: calc((100% / 3) - 1.25em + (1.25em / 3));
2321
+ }
2322
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-3
2323
+ > li:nth-child(3n) {
2324
+ margin-right: 0;
2325
+ }
2326
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
2327
+ width: calc((100% / 4) - 1.25em + (1.25em / 4));
2328
+ }
2329
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-4
2330
+ > li:nth-child(4n) {
2331
+ margin-right: 0;
2332
+ }
2333
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li {
2334
+ width: calc((100% / 5) - 1.25em + (1.25em / 5));
2335
+ }
2336
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-5
2337
+ > li:nth-child(5n) {
2338
+ margin-right: 0;
2339
+ }
2340
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li {
2341
+ width: calc((100% / 6) - 1.25em + (1.25em / 6));
2342
+ }
2343
+ .wp-block-query-loop.is-flex-container.is-flex-container.columns-6
2344
+ > li:nth-child(6n) {
2345
+ margin-right: 0;
2346
+ }
2347
+ }
2348
+
2349
+ .wp-block-query-pagination {
2350
+ display: flex;
2351
+ flex-direction: row;
2352
+ flex-wrap: wrap;
2353
+ }
2354
+ .wp-block-query-pagination > .wp-block-query-pagination-next,
2355
+ .wp-block-query-pagination > .wp-block-query-pagination-previous,
2356
+ .wp-block-query-pagination > .wp-block-query-pagination-numbers {
2357
+ display: inline-block;
2358
+ /*rtl:ignore*/
2359
+ margin-right: 0.5em;
2360
+ margin-bottom: 0.5em;
2361
+ }
2362
+ .wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
2363
+ .wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
2364
+ .wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
2365
+ /*rtl:ignore*/
2366
+ margin-right: 0;
2367
+ }
2368
+
2369
+ .wp-block-quote.is-style-large,
2370
+ .wp-block-quote.is-large {
2371
+ margin-bottom: 1em;
2372
+ padding: 0 1em;
2373
+ }
2374
+ .wp-block-quote.is-style-large p,
2375
+ .wp-block-quote.is-large p {
2376
+ font-size: 1.5em;
2377
+ font-style: italic;
2378
+ line-height: 1.6;
2379
+ }
2380
+ .wp-block-quote.is-style-large cite,
2381
+ .wp-block-quote.is-style-large footer,
2382
+ .wp-block-quote.is-large cite,
2383
+ .wp-block-quote.is-large footer {
2384
+ font-size: 1.125em;
2385
+ text-align: right;
2386
+ }
2387
+
2388
+ .wp-block-rss.wp-block-rss {
2389
+ box-sizing: border-box;
2390
+ }
2391
+ .wp-block-rss.alignleft {
2392
+ /*rtl:ignore*/
2393
+ margin-right: 2em;
2394
+ }
2395
+ .wp-block-rss.alignright {
2396
+ /*rtl:ignore*/
2397
+ margin-left: 2em;
2398
+ }
2399
+ .wp-block-rss.is-grid {
2400
+ display: flex;
2401
+ flex-wrap: wrap;
2402
+ padding: 0;
2403
+ list-style: none;
2404
+ }
2405
+ .wp-block-rss.is-grid li {
2406
+ margin: 0 1em 1em 0;
2407
+ width: 100%;
2408
+ }
2409
+ @media (min-width: 600px) {
2410
+ .wp-block-rss.columns-2 li {
2411
+ width: calc((100% / 2) - 1em);
2412
+ }
2413
+ .wp-block-rss.columns-3 li {
2414
+ width: calc((100% / 3) - 1em);
2415
+ }
2416
+ .wp-block-rss.columns-4 li {
2417
+ width: calc((100% / 4) - 1em);
2418
+ }
2419
+ .wp-block-rss.columns-5 li {
2420
+ width: calc((100% / 5) - 1em);
2421
+ }
2422
+ .wp-block-rss.columns-6 li {
2423
+ width: calc((100% / 6) - 1em);
2424
+ }
2425
+ }
2426
+
2427
+ .wp-block-rss__item-publish-date,
2428
+ .wp-block-rss__item-author {
2429
+ display: block;
2430
+ color: #555;
2431
+ font-size: 0.8125em;
2432
+ }
2433
+
2434
+ .wp-block-search .wp-block-search__button {
2435
+ background: #f7f7f7;
2436
+ border: 1px solid #ccc;
2437
+ padding: 0.375em 0.625em;
2438
+ color: #32373c;
2439
+ margin-left: 0.625em;
2440
+ word-break: normal;
2441
+ }
2442
+ .wp-block-search .wp-block-search__button.has-icon {
2443
+ line-height: 0;
2444
+ }
2445
+ .wp-block-search .wp-block-search__button svg {
2446
+ min-width: 1.5em;
2447
+ min-height: 1.5em;
2448
+ }
2449
+ .wp-block-search .wp-block-search__inside-wrapper {
2450
+ display: flex;
2451
+ flex: auto;
2452
+ flex-wrap: nowrap;
2453
+ max-width: 100%;
2454
+ }
2455
+ .wp-block-search .wp-block-search__label {
2456
+ width: 100%;
2457
+ }
2458
+ .wp-block-search .wp-block-search__input {
2459
+ flex-grow: 1;
2460
+ min-width: 3em;
2461
+ border: 1px solid #949494;
2462
+ }
2463
+ .wp-block-search.wp-block-search__button-only .wp-block-search__button {
2464
+ margin-left: 0;
2465
+ }
2466
+ .wp-block-search.wp-block-search__button-inside
2467
+ .wp-block-search__inside-wrapper {
2468
+ padding: 4px;
2469
+ border: 1px solid #949494;
2470
+ }
2471
+ .wp-block-search.wp-block-search__button-inside
2472
+ .wp-block-search__inside-wrapper
2473
+ .wp-block-search__input {
2474
+ border-radius: 0;
2475
+ border: none;
2476
+ padding: 0 0 0 0.25em;
2477
+ }
2478
+ .wp-block-search.wp-block-search__button-inside
2479
+ .wp-block-search__inside-wrapper
2480
+ .wp-block-search__input:focus {
2481
+ outline: none;
2482
+ }
2483
+ .wp-block-search.wp-block-search__button-inside
2484
+ .wp-block-search__inside-wrapper
2485
+ .wp-block-search__button {
2486
+ padding: 0.125em 0.5em;
2487
+ }
2488
+ .wp-block-search.aligncenter .wp-block-search__inside-wrapper {
2489
+ margin: auto;
2490
+ }
2491
+
2492
+ .wp-block-separator {
2493
+ border-top: 1px solid currentColor;
2494
+ border-bottom: 1px solid currentColor;
2495
+ }
2496
+ .wp-block-separator.is-style-wide {
2497
+ border-bottom-width: 1px;
2498
+ }
2499
+ .wp-block-separator.is-style-dots {
2500
+ background: none !important;
2501
+ border: none;
2502
+ text-align: center;
2503
+ width: none;
2504
+ line-height: 1;
2505
+ height: auto;
2506
+ }
2507
+ .wp-block-separator.is-style-dots::before {
2508
+ content: "···";
2509
+ color: currentColor;
2510
+ font-size: 1.5em;
2511
+ letter-spacing: 2em;
2512
+ /*rtl:ignore*/
2513
+ padding-left: 2em;
2514
+ font-family: serif;
2515
+ }
2516
+
2517
+ .wp-block-site-logo {
2518
+ line-height: 0;
2519
+ }
2520
+ .wp-block-site-logo a {
2521
+ display: inline-block;
2522
+ }
2523
+ .wp-block-site-logo:not(.is-resized) img {
2524
+ width: 120px;
2525
+ }
2526
+ .wp-block-site-logo .aligncenter {
2527
+ display: table;
2528
+ }
2529
+ .wp-block-site-logo.is-style-rounded img {
2530
+ border-radius: 9999px;
2531
+ }
2532
+
2533
+ .wp-block-social-links {
2534
+ display: flex;
2535
+ flex-wrap: wrap;
2536
+ padding-left: 0;
2537
+ padding-right: 0;
2538
+ text-indent: 0;
2539
+ margin-left: 0;
2540
+ }
2541
+ .wp-block-social-links .wp-social-link a,
2542
+ .wp-block-social-links .wp-social-link a:hover {
2543
+ text-decoration: none;
2544
+ border-bottom: 0;
2545
+ box-shadow: none;
2546
+ }
2547
+ .wp-block-social-links .wp-social-link.wp-social-link.wp-social-link {
2548
+ margin: 4px 8px 4px 0;
2549
+ }
2550
+ .wp-block-social-links .wp-social-link a {
2551
+ padding: 0.25em;
2552
+ }
2553
+ .wp-block-social-links .wp-social-link svg {
2554
+ width: 1em;
2555
+ height: 1em;
2556
+ }
2557
+ .wp-block-social-links.has-small-icon-size {
2558
+ font-size: 16px;
2559
+ }
2560
+ .wp-block-social-links,
2561
+ .wp-block-social-links.has-normal-icon-size {
2562
+ font-size: 24px;
2563
+ }
2564
+ .wp-block-social-links.has-large-icon-size {
2565
+ font-size: 36px;
2566
+ }
2567
+ .wp-block-social-links.has-huge-icon-size {
2568
+ font-size: 48px;
2569
+ }
2570
+ .wp-block-social-links.aligncenter {
2571
+ justify-content: center;
2572
+ display: flex;
2573
+ }
2574
+ .wp-block-social-links.alignright {
2575
+ justify-content: flex-end;
2576
+ }
2577
+
2578
+ .wp-social-link {
2579
+ display: block;
2580
+ border-radius: 9999px;
2581
+ transition: transform 0.1s ease;
2582
+ height: auto;
2583
+ }
2584
+ @media (prefers-reduced-motion: reduce) {
2585
+ .wp-social-link {
2586
+ transition-duration: 0s;
2587
+ transition-delay: 0s;
2588
+ }
2589
+ }
2590
+ .wp-social-link a {
2591
+ display: block;
2592
+ line-height: 0;
2593
+ transition: transform 0.1s ease;
2594
+ }
2595
+ .wp-social-link a,
2596
+ .wp-social-link a:hover,
2597
+ .wp-social-link a:active,
2598
+ .wp-social-link a:visited,
2599
+ .wp-social-link svg {
2600
+ color: currentColor;
2601
+ fill: currentColor;
2602
+ }
2603
+ .wp-social-link:hover {
2604
+ transform: scale(1.1);
2605
+ }
2606
+
2607
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
2608
+ background-color: #f0f0f0;
2609
+ color: #444;
2610
+ }
2611
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
2612
+ background-color: #f90;
2613
+ color: #fff;
2614
+ }
2615
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
2616
+ background-color: #1ea0c3;
2617
+ color: #fff;
2618
+ }
2619
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
2620
+ background-color: #0757fe;
2621
+ color: #fff;
2622
+ }
2623
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
2624
+ background-color: #1e1f26;
2625
+ color: #fff;
2626
+ }
2627
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
2628
+ background-color: #02e49b;
2629
+ color: #fff;
2630
+ }
2631
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
2632
+ background-color: #e94c89;
2633
+ color: #fff;
2634
+ }
2635
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
2636
+ background-color: #4280ff;
2637
+ color: #fff;
2638
+ }
2639
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
2640
+ background-color: #f45800;
2641
+ color: #fff;
2642
+ }
2643
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
2644
+ background-color: #1778f2;
2645
+ color: #fff;
2646
+ }
2647
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
2648
+ background-color: #000;
2649
+ color: #fff;
2650
+ }
2651
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
2652
+ background-color: #0461dd;
2653
+ color: #fff;
2654
+ }
2655
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
2656
+ background-color: #e65678;
2657
+ color: #fff;
2658
+ }
2659
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
2660
+ background-color: #24292d;
2661
+ color: #fff;
2662
+ }
2663
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
2664
+ background-color: #eceadd;
2665
+ color: #382110;
2666
+ }
2667
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
2668
+ background-color: #ea4434;
2669
+ color: #fff;
2670
+ }
2671
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
2672
+ background-color: #f00075;
2673
+ color: #fff;
2674
+ }
2675
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
2676
+ background-color: #e21b24;
2677
+ color: #fff;
2678
+ }
2679
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
2680
+ background-color: #0d66c2;
2681
+ color: #fff;
2682
+ }
2683
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
2684
+ background-color: #3288d4;
2685
+ color: #fff;
2686
+ }
2687
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
2688
+ background-color: #02ab6c;
2689
+ color: #fff;
2690
+ }
2691
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
2692
+ background-color: #f6405f;
2693
+ color: #fff;
2694
+ }
2695
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
2696
+ background-color: #ff424d;
2697
+ color: #fff;
2698
+ }
2699
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
2700
+ background-color: #e60122;
2701
+ color: #fff;
2702
+ }
2703
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
2704
+ background-color: #ef4155;
2705
+ color: #fff;
2706
+ }
2707
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
2708
+ background-color: #fe4500;
2709
+ color: #fff;
2710
+ }
2711
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
2712
+ background-color: #0478d7;
2713
+ color: #fff;
2714
+ }
2715
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
2716
+ background-color: #fefc00;
2717
+ color: #fff;
2718
+ stroke: #000;
2719
+ }
2720
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
2721
+ background-color: #ff5600;
2722
+ color: #fff;
2723
+ }
2724
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
2725
+ background-color: #1bd760;
2726
+ color: #fff;
2727
+ }
2728
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
2729
+ background-color: #2aabee;
2730
+ color: #fff;
2731
+ }
2732
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
2733
+ background-color: #000;
2734
+ color: #fff;
2735
+ }
2736
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
2737
+ background-color: #011835;
2738
+ color: #fff;
2739
+ }
2740
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
2741
+ background-color: #6440a4;
2742
+ color: #fff;
2743
+ }
2744
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
2745
+ background-color: #1da1f2;
2746
+ color: #fff;
2747
+ }
2748
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
2749
+ background-color: #1eb7ea;
2750
+ color: #fff;
2751
+ }
2752
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
2753
+ background-color: #4680c2;
2754
+ color: #fff;
2755
+ }
2756
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
2757
+ background-color: #3499cd;
2758
+ color: #fff;
2759
+ }
2760
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
2761
+ background-color: #d32422;
2762
+ color: #fff;
2763
+ }
2764
+ .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
2765
+ background-color: #f00;
2766
+ color: #fff;
2767
+ }
2768
+
2769
+ .wp-block-social-links.is-style-logos-only .wp-social-link {
2770
+ background: none;
2771
+ padding: 4px;
2772
+ }
2773
+ .wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
2774
+ color: #f90;
2775
+ }
2776
+ .wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
2777
+ color: #1ea0c3;
2778
+ }
2779
+ .wp-block-social-links.is-style-logos-only .wp-social-link-behance {
2780
+ color: #0757fe;
2781
+ }
2782
+ .wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
2783
+ color: #1e1f26;
2784
+ }
2785
+ .wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
2786
+ color: #02e49b;
2787
+ }
2788
+ .wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
2789
+ color: #e94c89;
2790
+ }
2791
+ .wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
2792
+ color: #4280ff;
2793
+ }
2794
+ .wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
2795
+ color: #f45800;
2796
+ }
2797
+ .wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
2798
+ color: #1778f2;
2799
+ }
2800
+ .wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
2801
+ color: #000;
2802
+ }
2803
+ .wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
2804
+ color: #0461dd;
2805
+ }
2806
+ .wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
2807
+ color: #e65678;
2808
+ }
2809
+ .wp-block-social-links.is-style-logos-only .wp-social-link-github {
2810
+ color: #24292d;
2811
+ }
2812
+ .wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
2813
+ color: #382110;
2814
+ }
2815
+ .wp-block-social-links.is-style-logos-only .wp-social-link-google {
2816
+ color: #ea4434;
2817
+ }
2818
+ .wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
2819
+ color: #f00075;
2820
+ }
2821
+ .wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
2822
+ color: #e21b24;
2823
+ }
2824
+ .wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
2825
+ color: #0d66c2;
2826
+ }
2827
+ .wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
2828
+ color: #3288d4;
2829
+ }
2830
+ .wp-block-social-links.is-style-logos-only .wp-social-link-medium {
2831
+ color: #02ab6c;
2832
+ }
2833
+ .wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
2834
+ color: #f6405f;
2835
+ }
2836
+ .wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
2837
+ color: #ff424d;
2838
+ }
2839
+ .wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
2840
+ color: #e60122;
2841
+ }
2842
+ .wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
2843
+ color: #ef4155;
2844
+ }
2845
+ .wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
2846
+ color: #fe4500;
2847
+ }
2848
+ .wp-block-social-links.is-style-logos-only .wp-social-link-skype {
2849
+ color: #0478d7;
2850
+ }
2851
+ .wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
2852
+ color: #fff;
2853
+ stroke: #000;
2854
+ }
2855
+ .wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
2856
+ color: #ff5600;
2857
+ }
2858
+ .wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
2859
+ color: #1bd760;
2860
+ }
2861
+ .wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
2862
+ color: #2aabee;
2863
+ }
2864
+ .wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
2865
+ color: #000;
2866
+ }
2867
+ .wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
2868
+ color: #011835;
2869
+ }
2870
+ .wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
2871
+ color: #6440a4;
2872
+ }
2873
+ .wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
2874
+ color: #1da1f2;
2875
+ }
2876
+ .wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
2877
+ color: #1eb7ea;
2878
+ }
2879
+ .wp-block-social-links.is-style-logos-only .wp-social-link-vk {
2880
+ color: #4680c2;
2881
+ }
2882
+ .wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
2883
+ color: #3499cd;
2884
+ }
2885
+ .wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
2886
+ color: #d32422;
2887
+ }
2888
+ .wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
2889
+ color: #f00;
2890
+ }
2891
+
2892
+ .wp-block-social-links.is-style-pill-shape .wp-social-link {
2893
+ width: auto;
2894
+ }
2895
+ .wp-block-social-links.is-style-pill-shape .wp-social-link a {
2896
+ padding-left: calc((2 / 3) * 1em);
2897
+ padding-right: calc((2 / 3) * 1em);
2898
+ }
2899
+
2900
+ .wp-block-spacer {
2901
+ clear: both;
2902
+ }
2903
+
2904
+ .wp-block-tag-cloud.aligncenter {
2905
+ text-align: center;
2906
+ }
2907
+ .wp-block-tag-cloud.alignfull {
2908
+ padding-left: 1em;
2909
+ padding-right: 1em;
2910
+ }
2911
+
2912
+ .wp-block-table {
2913
+ margin: 0 0 1em 0;
2914
+ overflow-x: auto;
2915
+ }
2916
+ .wp-block-table table {
2917
+ border-collapse: collapse;
2918
+ width: 100%;
2919
+ }
2920
+ .wp-block-table .has-fixed-layout {
2921
+ table-layout: fixed;
2922
+ width: 100%;
2923
+ }
2924
+ .wp-block-table .has-fixed-layout td,
2925
+ .wp-block-table .has-fixed-layout th {
2926
+ word-break: break-word;
2927
+ }
2928
+ .wp-block-table.alignleft,
2929
+ .wp-block-table.aligncenter,
2930
+ .wp-block-table.alignright {
2931
+ display: table;
2932
+ width: auto;
2933
+ }
2934
+ .wp-block-table.alignleft td,
2935
+ .wp-block-table.alignleft th,
2936
+ .wp-block-table.aligncenter td,
2937
+ .wp-block-table.aligncenter th,
2938
+ .wp-block-table.alignright td,
2939
+ .wp-block-table.alignright th {
2940
+ word-break: break-word;
2941
+ }
2942
+ .wp-block-table .has-subtle-light-gray-background-color {
2943
+ background-color: #f3f4f5;
2944
+ }
2945
+ .wp-block-table .has-subtle-pale-green-background-color {
2946
+ background-color: #e9fbe5;
2947
+ }
2948
+ .wp-block-table .has-subtle-pale-blue-background-color {
2949
+ background-color: #e7f5fe;
2950
+ }
2951
+ .wp-block-table .has-subtle-pale-pink-background-color {
2952
+ background-color: #fcf0ef;
2953
+ }
2954
+ .wp-block-table.is-style-stripes {
2955
+ border-spacing: 0;
2956
+ border-collapse: inherit;
2957
+ background-color: transparent;
2958
+ border-bottom: 1px solid #f0f0f0;
2959
+ }
2960
+ .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
2961
+ background-color: #f0f0f0;
2962
+ }
2963
+ .wp-block-table.is-style-stripes.has-subtle-light-gray-background-color
2964
+ tbody
2965
+ tr:nth-child(odd) {
2966
+ background-color: #f3f4f5;
2967
+ }
2968
+ .wp-block-table.is-style-stripes.has-subtle-pale-green-background-color
2969
+ tbody
2970
+ tr:nth-child(odd) {
2971
+ background-color: #e9fbe5;
2972
+ }
2973
+ .wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color
2974
+ tbody
2975
+ tr:nth-child(odd) {
2976
+ background-color: #e7f5fe;
2977
+ }
2978
+ .wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color
2979
+ tbody
2980
+ tr:nth-child(odd) {
2981
+ background-color: #fcf0ef;
2982
+ }
2983
+ .wp-block-table.is-style-stripes th,
2984
+ .wp-block-table.is-style-stripes td {
2985
+ border-color: transparent;
2986
+ }
2987
+
2988
+ .wp-block-text-columns {
2989
+ display: flex;
2990
+ }
2991
+ .wp-block-text-columns.aligncenter {
2992
+ display: flex;
2993
+ }
2994
+ .wp-block-text-columns .wp-block-column {
2995
+ margin: 0 1em;
2996
+ padding: 0;
2997
+ }
2998
+ .wp-block-text-columns .wp-block-column:first-child {
2999
+ margin-left: 0;
3000
+ }
3001
+ .wp-block-text-columns .wp-block-column:last-child {
3002
+ margin-right: 0;
3003
+ }
3004
+ .wp-block-text-columns.columns-2 .wp-block-column {
3005
+ width: calc(100% / 2);
3006
+ }
3007
+ .wp-block-text-columns.columns-3 .wp-block-column {
3008
+ width: calc(100% / 3);
3009
+ }
3010
+ .wp-block-text-columns.columns-4 .wp-block-column {
3011
+ width: calc(100% / 4);
3012
+ }
3013
+
3014
+ pre.wp-block-verse {
3015
+ font-family: inherit;
3016
+ overflow: auto;
3017
+ white-space: pre-wrap;
3018
+ }
3019
+
3020
+ .wp-block-video {
3021
+ margin: 0 0 1em 0;
3022
+ }
3023
+ .wp-block-video video {
3024
+ width: 100%;
3025
+ }
3026
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
3027
+ .wp-block-video [poster] {
3028
+ -o-object-fit: cover;
3029
+ object-fit: cover;
3030
+ }
3031
+ }
3032
+ .wp-block-video.aligncenter {
3033
+ text-align: center;
3034
+ }
3035
+ .wp-block-video figcaption {
3036
+ margin-top: 0.5em;
3037
+ margin-bottom: 1em;
3038
+ }
3039
+
3040
+ .wp-block-post-featured-image a {
3041
+ display: inline-block;
3042
+ }
3043
+ .wp-block-post-featured-image img {
3044
+ max-width: 100%;
3045
+ height: auto;
3046
+ }
3047
+
3048
+ :root {
3049
+ /* stylelint-disable function-comma-space-after */
3050
+ /* stylelint-enable function-comma-space-after */
3051
+ }
3052
+ :root .has-pale-pink-background-color {
3053
+ background-color: #f78da7;
3054
+ }
3055
+ :root .has-vivid-red-background-color {
3056
+ background-color: #cf2e2e;
3057
+ }
3058
+ :root .has-luminous-vivid-orange-background-color {
3059
+ background-color: #ff6900;
3060
+ }
3061
+ :root .has-luminous-vivid-amber-background-color {
3062
+ background-color: #fcb900;
3063
+ }
3064
+ :root .has-light-green-cyan-background-color {
3065
+ background-color: #7bdcb5;
3066
+ }
3067
+ :root .has-vivid-green-cyan-background-color {
3068
+ background-color: #00d084;
3069
+ }
3070
+ :root .has-pale-cyan-blue-background-color {
3071
+ background-color: #8ed1fc;
3072
+ }
3073
+ :root .has-vivid-cyan-blue-background-color {
3074
+ background-color: #0693e3;
3075
+ }
3076
+ :root .has-vivid-purple-background-color {
3077
+ background-color: #9b51e0;
3078
+ }
3079
+ :root .has-white-background-color {
3080
+ background-color: #fff;
3081
+ }
3082
+ :root .has-very-light-gray-background-color {
3083
+ background-color: #eee;
3084
+ }
3085
+ :root .has-cyan-bluish-gray-background-color {
3086
+ background-color: #abb8c3;
3087
+ }
3088
+ :root .has-very-dark-gray-background-color {
3089
+ background-color: #313131;
3090
+ }
3091
+ :root .has-black-background-color {
3092
+ background-color: #000;
3093
+ }
3094
+ :root .has-pale-pink-color {
3095
+ color: #f78da7;
3096
+ }
3097
+ :root .has-vivid-red-color {
3098
+ color: #cf2e2e;
3099
+ }
3100
+ :root .has-luminous-vivid-orange-color {
3101
+ color: #ff6900;
3102
+ }
3103
+ :root .has-luminous-vivid-amber-color {
3104
+ color: #fcb900;
3105
+ }
3106
+ :root .has-light-green-cyan-color {
3107
+ color: #7bdcb5;
3108
+ }
3109
+ :root .has-vivid-green-cyan-color {
3110
+ color: #00d084;
3111
+ }
3112
+ :root .has-pale-cyan-blue-color {
3113
+ color: #8ed1fc;
3114
+ }
3115
+ :root .has-vivid-cyan-blue-color {
3116
+ color: #0693e3;
3117
+ }
3118
+ :root .has-vivid-purple-color {
3119
+ color: #9b51e0;
3120
+ }
3121
+ :root .has-white-color {
3122
+ color: #fff;
3123
+ }
3124
+ :root .has-very-light-gray-color {
3125
+ color: #eee;
3126
+ }
3127
+ :root .has-cyan-bluish-gray-color {
3128
+ color: #abb8c3;
3129
+ }
3130
+ :root .has-very-dark-gray-color {
3131
+ color: #313131;
3132
+ }
3133
+ :root .has-black-color {
3134
+ color: #000;
3135
+ }
3136
+ :root .has-vivid-cyan-blue-to-vivid-purple-gradient-background {
3137
+ background: linear-gradient(135deg, #0693e3 0%, #9b51e0 100%);
3138
+ }
3139
+ :root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
3140
+ background: linear-gradient(135deg, #00d084 0%, #0693e3 100%);
3141
+ }
3142
+ :root .has-light-green-cyan-to-vivid-green-cyan-gradient-background {
3143
+ background: linear-gradient(135deg, #7adcb4 0%, #00d082 100%);
3144
+ }
3145
+ :root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
3146
+ background: linear-gradient(135deg, #fcb900 0%, #ff6900 100%);
3147
+ }
3148
+ :root .has-luminous-vivid-orange-to-vivid-red-gradient-background {
3149
+ background: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%);
3150
+ }
3151
+ :root .has-very-light-gray-to-cyan-bluish-gray-gradient-background {
3152
+ background: linear-gradient(135deg, #eeeeee 0%, #a9b8c3 100%);
3153
+ }
3154
+ :root .has-cool-to-warm-spectrum-gradient-background {
3155
+ background: linear-gradient(
3156
+ 135deg,
3157
+ #4aeadc 0%,
3158
+ #9778d1 20%,
3159
+ #cf2aba 40%,
3160
+ #ee2c82 60%,
3161
+ #fb6962 80%,
3162
+ #fef84c 100%
3163
+ );
3164
+ }
3165
+ :root .has-blush-light-purple-gradient-background {
3166
+ background: linear-gradient(135deg, #ffceec 0%, #9896f0 100%);
3167
+ }
3168
+ :root .has-blush-bordeaux-gradient-background {
3169
+ background: linear-gradient(135deg, #fecda5 0%, #fe2d2d 50%, #6b003e 100%);
3170
+ }
3171
+ :root .has-purple-crush-gradient-background {
3172
+ background: linear-gradient(135deg, #34e2e4 0%, #4721fb 50%, #ab1dfe 100%);
3173
+ }
3174
+ :root .has-luminous-dusk-gradient-background {
3175
+ background: linear-gradient(135deg, #ffcb70 0%, #c751c0 50%, #4158d0 100%);
3176
+ }
3177
+ :root .has-hazy-dawn-gradient-background {
3178
+ background: linear-gradient(135deg, #faaca8 0%, #dad0ec 100%);
3179
+ }
3180
+ :root .has-pale-ocean-gradient-background {
3181
+ background: linear-gradient(135deg, #fff5cb 0%, #b6e3d4 50%, #33a7b5 100%);
3182
+ }
3183
+ :root .has-electric-grass-gradient-background {
3184
+ background: linear-gradient(135deg, #caf880 0%, #71ce7e 100%);
3185
+ }
3186
+ :root .has-subdued-olive-gradient-background {
3187
+ background: linear-gradient(135deg, #fafae1 0%, #67a671 100%);
3188
+ }
3189
+ :root .has-atomic-cream-gradient-background {
3190
+ background: linear-gradient(135deg, #fdd79a 0%, #004a59 100%);
3191
+ }
3192
+ :root .has-nightshade-gradient-background {
3193
+ background: linear-gradient(135deg, #330968 0%, #31cdcf 100%);
3194
+ }
3195
+ :root .has-midnight-gradient-background {
3196
+ background: linear-gradient(135deg, #020381 0%, #2874fc 100%);
3197
+ }
3198
+ :root .has-link-color a:not(.wp-block-button__link) {
3199
+ color: #00e;
3200
+ color: var(--wp--style--color--link, #00e);
3201
+ }
3202
+
3203
+ .has-small-font-size {
3204
+ font-size: 0.8125em;
3205
+ }
3206
+
3207
+ .has-regular-font-size,
3208
+ .has-normal-font-size {
3209
+ font-size: 1em;
3210
+ }
3211
+
3212
+ .has-medium-font-size {
3213
+ font-size: 1.25em;
3214
+ }
3215
+
3216
+ .has-large-font-size {
3217
+ font-size: 2.25em;
3218
+ }
3219
+
3220
+ .has-larger-font-size,
3221
+ .has-huge-font-size {
3222
+ font-size: 2.625em;
3223
+ }
3224
+
3225
+ .has-text-align-center {
3226
+ text-align: center;
3227
+ }
3228
+
3229
+ .has-text-align-left {
3230
+ /*rtl:ignore*/
3231
+ text-align: left;
3232
+ }
3233
+
3234
+ .has-text-align-right {
3235
+ /*rtl:ignore*/
3236
+ text-align: right;
3237
+ }
3238
+
3239
+ #end-resizable-editor-section {
3240
+ display: none;
3241
+ }
3242
+
3243
+ .aligncenter {
3244
+ clear: both;
3245
+ }
3246
+
3247
+ .items-justified-left {
3248
+ justify-content: flex-start;
3249
+ }
3250
+
3251
+ .items-justified-center {
3252
+ justify-content: center;
3253
+ }
3254
+
3255
+ .items-justified-right {
3256
+ justify-content: flex-end;
3257
+ }
3258
+
3259
+ .items-justified-space-between {
3260
+ justify-content: space-between;
3261
+ }
3262
+
3263
+ .screen-reader-text {
3264
+ border: 0;
3265
+ clip: rect(1px, 1px, 1px, 1px);
3266
+ -webkit-clip-path: inset(50%);
3267
+ clip-path: inset(50%);
3268
+ height: 1px;
3269
+ margin: -1px;
3270
+ overflow: hidden;
3271
+ padding: 0;
3272
+ position: absolute;
3273
+ width: 1px;
3274
+ word-wrap: normal !important;
3275
+ }
3276
+
3277
+ .screen-reader-text:focus {
3278
+ background-color: #ddd;
3279
+ clip: auto !important;
3280
+ -webkit-clip-path: none;
3281
+ clip-path: none;
3282
+ color: #444;
3283
+ display: block;
3284
+ font-size: 1em;
3285
+ height: auto;
3286
+ left: 5px;
3287
+ line-height: normal;
3288
+ padding: 15px 23px 14px;
3289
+ text-decoration: none;
3290
+ top: 5px;
3291
+ width: auto;
3292
+ z-index: 100000;
3293
+ }
3294
+
3295
+ #start-resizable-editor-section {
3296
+ display: none;
3297
+ }
3298
+
3299
+ .wp-block-audio figcaption {
3300
+ color: #555;
3301
+ font-size: 13px;
3302
+ text-align: center;
3303
+ }
3304
+ .is-dark-theme .wp-block-audio figcaption {
3305
+ color: rgba(255, 255, 255, 0.65);
3306
+ }
3307
+
3308
+ .wp-block-code {
3309
+ font-family: Menlo, Consolas, monaco, monospace;
3310
+ color: #1e1e1e;
3311
+ padding: 0.8em 1em;
3312
+ border: 1px solid #ddd;
3313
+ border-radius: 4px;
3314
+ }
3315
+
3316
+ .wp-block-embed figcaption {
3317
+ color: #555;
3318
+ font-size: 13px;
3319
+ text-align: center;
3320
+ }
3321
+ .is-dark-theme .wp-block-embed figcaption {
3322
+ color: rgba(255, 255, 255, 0.65);
3323
+ }
3324
+
3325
+ .blocks-gallery-caption {
3326
+ color: #555;
3327
+ font-size: 13px;
3328
+ text-align: center;
3329
+ }
3330
+ .is-dark-theme .blocks-gallery-caption {
3331
+ color: rgba(255, 255, 255, 0.65);
3332
+ }
3333
+
3334
+ .wp-block-image figcaption {
3335
+ color: #555;
3336
+ font-size: 13px;
3337
+ text-align: center;
3338
+ }
3339
+ .is-dark-theme .wp-block-image figcaption {
3340
+ color: rgba(255, 255, 255, 0.65);
3341
+ }
3342
+
3343
+ .wp-block-pullquote {
3344
+ border-top: 4px solid currentColor;
3345
+ border-bottom: 4px solid currentColor;
3346
+ margin-bottom: 1.75em;
3347
+ color: currentColor;
3348
+ }
3349
+ .wp-block-pullquote cite,
3350
+ .wp-block-pullquote footer,
3351
+ .wp-block-pullquote__citation {
3352
+ color: currentColor;
3353
+ text-transform: uppercase;
3354
+ font-size: 0.8125em;
3355
+ font-style: normal;
3356
+ }
3357
+
3358
+ .wp-block-quote {
3359
+ border-left: 0.25em solid currentColor;
3360
+ margin: 0 0 1.75em 0;
3361
+ padding-left: 1em;
3362
+ }
3363
+ .wp-block-quote cite,
3364
+ .wp-block-quote footer {
3365
+ color: currentColor;
3366
+ font-size: 0.8125em;
3367
+ position: relative;
3368
+ font-style: normal;
3369
+ }
3370
+ .wp-block-quote.has-text-align-right {
3371
+ border-left: none;
3372
+ border-right: 0.25em solid currentColor;
3373
+ padding-left: 0;
3374
+ padding-right: 1em;
3375
+ }
3376
+ .wp-block-quote.has-text-align-center {
3377
+ border: none;
3378
+ padding-left: 0;
3379
+ }
3380
+ .wp-block-quote.is-style-large,
3381
+ .wp-block-quote.is-large {
3382
+ border: none;
3383
+ }
3384
+
3385
+ .wp-block-search .wp-block-search__label {
3386
+ font-weight: bold;
3387
+ }
3388
+
3389
+ .wp-block-group.has-background {
3390
+ padding: 1.25em 2.375em;
3391
+ margin-top: 0;
3392
+ margin-bottom: 0;
3393
+ }
3394
+
3395
+ .wp-block-separator {
3396
+ border: none;
3397
+ border-bottom: 2px solid currentColor;
3398
+ margin-left: auto;
3399
+ margin-right: auto;
3400
+ opacity: 0.4;
3401
+ }
3402
+ .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
3403
+ width: 100px;
3404
+ }
3405
+ .wp-block-separator.has-background:not(.is-style-dots) {
3406
+ border-bottom: none;
3407
+ height: 1px;
3408
+ }
3409
+ .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
3410
+ height: 2px;
3411
+ }
3412
+
3413
+ .wp-block-table thead {
3414
+ border-bottom: 3px solid;
3415
+ }
3416
+ .wp-block-table tfoot {
3417
+ border-top: 3px solid;
3418
+ }
3419
+ .wp-block-table td,
3420
+ .wp-block-table th {
3421
+ padding: 0.5em;
3422
+ border: 1px solid;
3423
+ word-break: normal;
3424
+ }
3425
+ .wp-block-table figcaption {
3426
+ color: #555;
3427
+ font-size: 13px;
3428
+ text-align: center;
3429
+ }
3430
+ .is-dark-theme .wp-block-table figcaption {
3431
+ color: rgba(255, 255, 255, 0.65);
3432
+ }
3433
+
3434
+ .wp-block-video figcaption {
3435
+ color: #555;
3436
+ font-size: 13px;
3437
+ text-align: center;
3438
+ }
3439
+ .is-dark-theme .wp-block-video figcaption {
3440
+ color: rgba(255, 255, 255, 0.65);
3441
+ }
3442
+
3443
+ .wp-block-template-part.has-background {
3444
+ padding: 1.25em 2.375em;
3445
+ margin-top: 0;
3446
+ margin-bottom: 0;
3447
+ }
3448
+
3449
+ #end-resizable-editor-section {
3450
+ display: none;
3451
+ }