style-editor.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. @charset "UTF-8";
  2. /**
  3. * These styles should be loaded by the Block Editor only
  4. */
  5. /**
  6. * Abstracts
  7. * - Mixins, variables and functions
  8. */
  9. /**
  10. * Abstracts
  11. * - Mixins, variables and functions
  12. */
  13. /* Sass Functions go here */
  14. /**
  15. * Map deep get
  16. * @author Hugo Giraudel
  17. * @access public
  18. * @param {Map} $map - Map
  19. * @param {Arglist} $keys - Key chain
  20. * @return {*} - Desired value
  21. *
  22. * Example:
  23. * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
  24. */
  25. /**
  26. * Deep set function to set a value in nested maps
  27. * @author Hugo Giraudel
  28. * @access public
  29. * @param {Map} $map - Map
  30. * @param {List} $keys - Key chaine
  31. * @param {*} $value - Value to assign
  32. * @return {Map}
  33. *
  34. * Example:
  35. * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
  36. */
  37. /**
  38. * jQuery-style extend function
  39. * - Child themes can use this function to `reset` the values in
  40. * config maps without editing the `master` Sass files.
  41. * - src: https://www.sitepoint.com/extra-map-functions-sass/
  42. * - About `map-merge()`:
  43. * - - only takes 2 arguments
  44. * - - is not recursive
  45. * @param {Map} $map - first map
  46. * @param {ArgList} $maps - other maps
  47. * @param {Bool} $deep - recursive mode
  48. * @return {Map}
  49. *
  50. * Examples:
  51. $grid-configuration-default: (
  52. 'columns': 12,
  53. 'layouts': (
  54. 'small': 800px,
  55. 'medium': 1000px,
  56. 'large': 1200px,
  57. ),
  58. );
  59. $grid-configuration-custom: (
  60. 'layouts': (
  61. 'large': 1300px,
  62. 'huge': 1500px
  63. ),
  64. );
  65. $grid-configuration-user: (
  66. 'direction': 'ltr',
  67. 'columns': 16,
  68. 'layouts': (
  69. 'large': 1300px,
  70. 'huge': 1500px
  71. ),
  72. );
  73. // $deep: false
  74. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
  75. // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
  76. // $deep: true
  77. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
  78. // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
  79. */
  80. /**
  81. * Button
  82. */
  83. /**
  84. * Cover
  85. */
  86. /**
  87. * Heading
  88. */
  89. /**
  90. * List
  91. */
  92. /**
  93. * Pullquote
  94. */
  95. /**
  96. * Quote
  97. */
  98. /**
  99. * Separator
  100. */
  101. /**
  102. * Responsive breakpoints
  103. * - breakpoints values are defined in _config-global.scss
  104. */
  105. /**
  106. * Align wide widths
  107. * - Sets .alignwide widths
  108. */
  109. /**
  110. * Crop Text Boundry
  111. * - Sets a fixed-width on content within alignwide and alignfull blocks
  112. */
  113. /**
  114. * Add font-family using CSS variables.
  115. * It also adds the proper fallback for browsers without support.
  116. */
  117. /**
  118. * Child Theme Name
  119. */
  120. /**
  121. * Redefine Sass map values for child theme output.
  122. * - See: style-child-theme.scss
  123. */
  124. /**
  125. * Global
  126. */
  127. /**
  128. * Elements
  129. */
  130. /**
  131. * Button
  132. */
  133. /**
  134. * Cover
  135. */
  136. /**
  137. * Heading
  138. */
  139. /**
  140. * List
  141. */
  142. /**
  143. * Pullquote
  144. */
  145. /**
  146. * Quote
  147. */
  148. /**
  149. * Separator
  150. */
  151. /**
  152. * Header
  153. */
  154. /**
  155. * Footer
  156. */
  157. /**
  158. * Base
  159. * - Reset the browser
  160. */
  161. body {
  162. color: #111111;
  163. background-color: #FFFFFF;
  164. font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  165. font-family: var(--font-base, "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif);
  166. font-size: 20px;
  167. font-weight: normal;
  168. line-height: 1.6;
  169. -moz-osx-font-smoothing: grayscale;
  170. -webkit-font-smoothing: antialiased;
  171. }
  172. .editor-post-title__block {
  173. font-size: 20px;
  174. }
  175. p {
  176. font-size: 1em;
  177. line-height: 1.6;
  178. }
  179. a {
  180. color: #23883D;
  181. }
  182. a:hover {
  183. color: #195f2b;
  184. }
  185. .has-primary-background-color a:not(.has-text-color) {
  186. color: #FFFFFF;
  187. }
  188. button,
  189. a {
  190. cursor: pointer;
  191. }
  192. button,
  193. input,
  194. optgroup,
  195. select,
  196. textarea {
  197. font-family: inherit;
  198. font-size: 100%;
  199. line-height: 1.15;
  200. margin: 0;
  201. }
  202. /**
  203. * Elements
  204. * - Styles for basic HTML elemants
  205. */
  206. /**
  207. * Elements
  208. * - Styles for basic HTML elemants
  209. */
  210. blockquote {
  211. padding-left: 16px;
  212. }
  213. blockquote p {
  214. font-size: 1.2rem;
  215. letter-spacing: normal;
  216. line-height: 1.125;
  217. }
  218. blockquote cite,
  219. blockquote footer {
  220. font-size: 0.83333rem;
  221. letter-spacing: normal;
  222. }
  223. blockquote > * {
  224. margin-top: 16px;
  225. margin-bottom: 16px;
  226. }
  227. blockquote > *:first-child {
  228. margin-top: 0;
  229. }
  230. blockquote > *:last-child {
  231. margin-bottom: 0;
  232. }
  233. blockquote.alignleft, blockquote.alignright {
  234. padding-left: inherit;
  235. }
  236. blockquote.alignleft p, blockquote.alignright p {
  237. font-size: 1rem;
  238. max-width: inherit;
  239. width: inherit;
  240. }
  241. blockquote.alignleft cite,
  242. blockquote.alignleft footer, blockquote.alignright cite,
  243. blockquote.alignright footer {
  244. font-size: 0.69444rem;
  245. letter-spacing: normal;
  246. }
  247. figcaption {
  248. color: #6E6E6E;
  249. font-size: 0.69444rem;
  250. margin-top: calc(0.5 * 16px);
  251. margin-bottom: 16px;
  252. text-align: center;
  253. }
  254. .alignleft figcaption,
  255. .alignright figcaption {
  256. margin-bottom: 0;
  257. }
  258. /* WP Smiley */
  259. .page-content .wp-smiley,
  260. .entry-content .wp-smiley,
  261. .comment-content .wp-smiley {
  262. border: none;
  263. margin-bottom: 0;
  264. margin-top: 0;
  265. padding: 0;
  266. }
  267. /* Make sure embeds and iframes fit their containers. */
  268. embed,
  269. iframe,
  270. object {
  271. max-width: 100%;
  272. }
  273. /* Center-align getty image embeds */
  274. .getty.embed.image {
  275. display: block !important;
  276. }
  277. /**
  278. * Blocks
  279. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  280. * spacing with CSS-variables overrides
  281. */
  282. /**
  283. * Block Styles for the Editor
  284. *
  285. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  286. * spacing with CSS-variables overrides in the Block Editor
  287. * - In the future the Block styles may get compiled to individual .css
  288. * files and conditionally loaded
  289. */
  290. .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
  291. margin-bottom: 16px;
  292. }
  293. .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
  294. margin-right: 32px;
  295. }
  296. .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
  297. margin-left: 32px;
  298. }
  299. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
  300. padding: 32px;
  301. }
  302. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
  303. color: #fff;
  304. }
  305. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
  306. color: currentColor;
  307. }
  308. .wp-block-a8c-blog-posts .article-section-title {
  309. font-size: 1em;
  310. margin-top: 0;
  311. margin-bottom: 16px;
  312. }
  313. .wp-block-a8c-blog-posts article {
  314. margin-bottom: 64px;
  315. }
  316. @media only screen and (min-width: 560px) {
  317. .wp-block-a8c-blog-posts article {
  318. margin-bottom: 96px;
  319. }
  320. }
  321. .wp-block-a8c-blog-posts .post-thumbnail img {
  322. vertical-align: middle;
  323. width: auto;
  324. }
  325. .wp-block-a8c-blog-posts .entry-wrapper > * {
  326. /* Vertical margins logic between post details */
  327. margin-top: 16px;
  328. margin-bottom: 16px;
  329. }
  330. .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
  331. margin-top: 0;
  332. }
  333. .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
  334. margin-bottom: 0;
  335. }
  336. .wp-block-a8c-blog-posts .entry-title a {
  337. color: #23883D;
  338. }
  339. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  340. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  341. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  342. color: currentColor;
  343. }
  344. .wp-block-a8c-blog-posts .entry-title a:hover {
  345. color: #195f2b;
  346. text-decoration: underline;
  347. }
  348. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  349. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  350. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  351. color: currentColor;
  352. }
  353. .wp-block-a8c-blog-posts .more-link {
  354. display: block;
  355. color: inherit;
  356. margin-top: 16px;
  357. }
  358. .wp-block-a8c-blog-posts .more-link:after {
  359. content: "→" /*rtl:"←"*/;
  360. display: inline-block;
  361. margin-left: 0.5em;
  362. }
  363. .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
  364. color: #195f2b;
  365. text-decoration: none;
  366. }
  367. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  368. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  369. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  370. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  371. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
  372. color: currentColor;
  373. }
  374. .wp-block-a8c-blog-posts .entry-meta,
  375. .wp-block-a8c-blog-posts .cat-links {
  376. color: #6E6E6E;
  377. font-size: 0.83333em;
  378. }
  379. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  380. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  381. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
  382. .wp-block-a8c-blog-posts .cat-links,
  383. [class*="background-color"]:not(.has-background-background-color)
  384. .wp-block-a8c-blog-posts .cat-links,
  385. [style*="background-color"]
  386. .wp-block-a8c-blog-posts .cat-links {
  387. color: currentColor;
  388. }
  389. .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
  390. .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
  391. margin-right: 16px;
  392. }
  393. .wp-block-a8c-blog-posts .entry-meta .published + .updated,
  394. .wp-block-a8c-blog-posts .cat-links .published + .updated {
  395. display: none;
  396. }
  397. .wp-block-a8c-blog-posts .entry-meta a,
  398. .wp-block-a8c-blog-posts .cat-links a {
  399. color: currentColor;
  400. text-decoration: underline;
  401. }
  402. .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
  403. .wp-block-a8c-blog-posts .cat-links a:hover,
  404. .wp-block-a8c-blog-posts .cat-links a:active {
  405. color: #195f2b;
  406. text-decoration: none;
  407. }
  408. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  409. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  410. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  411. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  412. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
  413. .wp-block-a8c-blog-posts .cat-links a:hover,
  414. [class*="background-color"]:not(.has-background-background-color)
  415. .wp-block-a8c-blog-posts .cat-links a:hover,
  416. [style*="background-color"]
  417. .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
  418. .wp-block-a8c-blog-posts .cat-links a:active,
  419. [class*="background-color"]:not(.has-background-background-color)
  420. .wp-block-a8c-blog-posts .cat-links a:active,
  421. [style*="background-color"]
  422. .wp-block-a8c-blog-posts .cat-links a:active {
  423. color: currentColor;
  424. }
  425. /**
  426. * Button Placeholder style
  427. * - Since buttons appear in various blocks,
  428. * let’s use a placeholder to keep them all
  429. * in-sync
  430. */
  431. .wp-block-a8c-blog-posts + .button, .wp-block-button__link,
  432. .wp-block-file__button, .wp-block-search .wp-block-search__button, .fse-template-part .main-navigation .button {
  433. line-height: 1;
  434. color: white;
  435. cursor: pointer;
  436. font-weight: 700;
  437. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  438. font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  439. font-size: 0.83333rem;
  440. background-color: #23883D;
  441. border-radius: 5px;
  442. border-width: 0;
  443. text-decoration: none;
  444. padding: 16px 16px;
  445. }
  446. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  447. .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .fse-template-part .main-navigation .button:before, .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  448. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  449. content: '';
  450. display: block;
  451. height: 0;
  452. width: 0;
  453. }
  454. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  455. .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
  456. margin-bottom: -0.12em;
  457. }
  458. .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  459. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  460. margin-top: -0.11em;
  461. }
  462. .wp-block-a8c-blog-posts + .button:not(.has-background):hover, .wp-block-button__link:not(.has-background):hover,
  463. .wp-block-file__button:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, .fse-template-part .main-navigation .button:not(.has-background):hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-button__link:focus,
  464. .wp-block-file__button:focus, .wp-block-search .wp-block-search__button:focus, .fse-template-part .main-navigation .button:focus, .wp-block-a8c-blog-posts + .has-focus.button, .has-focus.wp-block-button__link,
  465. .has-focus.wp-block-file__button, .wp-block-search .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
  466. color: white;
  467. background-color: #195f2b;
  468. }
  469. /**
  470. * Onsale Placeholder style
  471. * - Since buttons appear in various blocks,
  472. * let’s use a placeholder to keep them all
  473. * in-sync
  474. */
  475. .wp-block-a8c-blog-posts + .button {
  476. display: inline-block;
  477. font-size: 1.2em;
  478. }
  479. .wp-block-a8c-blog-posts + .button:hover {
  480. cursor: default;
  481. }
  482. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  483. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  484. [style*="background-color"] .wp-block-a8c-blog-posts + .button {
  485. background-color: transparent;
  486. border: 2px solid currentColor;
  487. color: currentColor;
  488. }
  489. /**
  490. * Button
  491. */
  492. /* Default Style */
  493. .wp-block-button__link {
  494. color: white;
  495. font-weight: 700;
  496. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  497. font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  498. font-size: 0.83333em;
  499. line-height: 1;
  500. background-color: #23883D;
  501. border-radius: 5px;
  502. padding: 16px 16px;
  503. /* Outline Style */
  504. /* Squared Style */
  505. }
  506. .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
  507. color: white;
  508. background-color: #195f2b;
  509. }
  510. .wp-block-button__link.is-style-outline,
  511. .is-style-outline .wp-block-button__link {
  512. border: 2px solid currentcolor;
  513. }
  514. .wp-block-button__link.is-style-outline:not(.has-text-color),
  515. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  516. color: #23883D;
  517. }
  518. .wp-block-button__link.is-style-outline:hover, .wp-block-button__link.is-style-outline:focus, .wp-block-button__link.is-style-outline.has-focus,
  519. .is-style-outline .wp-block-button__link:hover,
  520. .is-style-outline .wp-block-button__link:focus,
  521. .is-style-outline .wp-block-button__link.has-focus {
  522. color: #195f2b;
  523. background: transparent;
  524. }
  525. .has-primary-background-color .wp-block-button__link.is-style-outline:not(.has-text-color), .has-primary-background-color
  526. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  527. color: white;
  528. }
  529. .wp-block-button__link.is-style-squared,
  530. .is-style-squared .wp-block-button__link {
  531. border-radius: 0;
  532. }
  533. /* Default Style */
  534. .button {
  535. color: white;
  536. font-weight: 700;
  537. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  538. font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  539. font-size: 0.83333em;
  540. line-height: 1;
  541. background-color: #23883D;
  542. border-radius: 5px;
  543. padding: 16px 16px;
  544. }
  545. .button:hover, .button:focus, .button.has-focus {
  546. color: white;
  547. background-color: #195f2b;
  548. }
  549. .wp-block-columns .wp-block[data-align=full],
  550. .wp-block-columns .alignfull {
  551. margin-left: inherit;
  552. margin-right: inherit;
  553. }
  554. .wp-block-cover,
  555. .wp-block-cover-image {
  556. background-color: #111111;
  557. color: #FFFFFF;
  558. min-height: 480px;
  559. margin-top: inherit;
  560. margin-bottom: inherit;
  561. /* Treating H2 separately to account for legacy /core styles */
  562. }
  563. .wp-block-cover.has-background-dim,
  564. .wp-block-cover-image.has-background-dim {
  565. background-color: #111111;
  566. color: #FFFFFF;
  567. }
  568. .wp-block-cover .wp-block-cover-image-text,
  569. .wp-block-cover .wp-block-cover-text,
  570. .wp-block-cover .block-editor-block-list__block,
  571. .wp-block-cover-image .wp-block-cover-image-text,
  572. .wp-block-cover-image .wp-block-cover-text,
  573. .wp-block-cover-image .block-editor-block-list__block {
  574. color: currentColor;
  575. }
  576. .wp-block-cover h2,
  577. .wp-block-cover-image h2 {
  578. font-size: 1.728;
  579. letter-spacing: normal;
  580. line-height: 1.125;
  581. padding: 0;
  582. max-width: inherit;
  583. text-align: inherit;
  584. }
  585. .wp-block-cover h2.has-text-align-left,
  586. .wp-block-cover-image h2.has-text-align-left {
  587. text-align: left;
  588. }
  589. .wp-block-cover h2.has-text-align-center,
  590. .wp-block-cover-image h2.has-text-align-center {
  591. text-align: center;
  592. }
  593. .wp-block-cover h2.has-text-align-right,
  594. .wp-block-cover-image h2.has-text-align-right {
  595. text-align: right;
  596. }
  597. .wp-block-heading h1, h1, .h1,
  598. .wp-block-heading h2, h2, .h2,
  599. .wp-block-heading h3, h3, .h3,
  600. .wp-block-heading h4, h4, .h4,
  601. .wp-block-heading h5, h5, .h5,
  602. .wp-block-heading h6, h6, .h6 {
  603. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  604. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  605. font-weight: 700;
  606. clear: both;
  607. }
  608. .wp-block-heading h1, h1, .h1 {
  609. font-size: 2.0736em;
  610. letter-spacing: normal;
  611. line-height: 1.125;
  612. }
  613. .wp-block-heading h2, h2, .h2 {
  614. font-size: 1.728em;
  615. letter-spacing: normal;
  616. line-height: 1.125;
  617. }
  618. .wp-block-heading h3, h3, .h3 {
  619. font-size: 1.44em;
  620. letter-spacing: normal;
  621. line-height: 1.125;
  622. }
  623. .wp-block-heading h4, h4, .h4 {
  624. font-size: 1.2em;
  625. letter-spacing: normal;
  626. line-height: 1.125;
  627. }
  628. .wp-block-heading h5, h5, .h5 {
  629. font-size: 1em;
  630. letter-spacing: normal;
  631. line-height: 1.125;
  632. }
  633. .wp-block-heading h6, h6, .h6 {
  634. font-size: 0.83333em;
  635. letter-spacing: normal;
  636. line-height: 1.125;
  637. }
  638. /* Center image block by default in the editor */
  639. .wp-block-image > div {
  640. text-align: center;
  641. }
  642. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  643. margin: 0 auto;
  644. }
  645. .wp-block-gallery figcaption {
  646. margin-bottom: 0;
  647. }
  648. .wp-block-group.has-background {
  649. padding: 21.312px;
  650. }
  651. @media only screen and (min-width: 560px) {
  652. .wp-block-group.has-background {
  653. padding: 32px;
  654. }
  655. }
  656. .wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
  657. margin: 0;
  658. width: 100%;
  659. }
  660. .wp-block-latest-comments {
  661. margin-left: 0;
  662. }
  663. .wp-block-latest-posts {
  664. padding-left: 0;
  665. }
  666. .wp-block-latest-posts > li > a {
  667. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  668. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  669. font-size: 1.2rem;
  670. font-weight: 700;
  671. line-height: 1.125;
  672. }
  673. .wp-block-latest-posts:not(.is-grid) > li {
  674. /* Vertical margins logic */
  675. margin-top: 32px;
  676. margin-bottom: 32px;
  677. }
  678. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  679. margin-top: 0;
  680. }
  681. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  682. margin-bottom: 0;
  683. }
  684. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  685. color: #6E6E6E;
  686. font-size: 0.83333rem;
  687. line-height: 1.6;
  688. }
  689. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  690. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  691. color: currentColor;
  692. }
  693. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  694. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  695. font-size: 0.83333rem;
  696. line-height: 1.6;
  697. margin: 0;
  698. }
  699. ul,
  700. ol {
  701. margin: 32px 0;
  702. padding-left: 32px;
  703. }
  704. ul.aligncenter,
  705. ol.aligncenter {
  706. list-style-position: inside;
  707. padding: 0;
  708. }
  709. ul.alignright,
  710. ol.alignright {
  711. list-style-position: inside;
  712. text-align: right;
  713. padding: 0;
  714. }
  715. li > ul,
  716. li > ol {
  717. margin: 0;
  718. }
  719. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  720. color: currentColor;
  721. }
  722. .a8c-posts-list {
  723. padding-left: 0;
  724. }
  725. p.has-background {
  726. padding: 16px 16px;
  727. }
  728. p.has-background:not(.has-background-background-color) a {
  729. color: currentColor;
  730. }
  731. .wp-block-pullquote {
  732. border-top-color: #CCCCCC;
  733. border-top-width: 4px;
  734. border-bottom-color: #CCCCCC;
  735. border-bottom-width: 4px;
  736. color: #111111;
  737. }
  738. .wp-block-pullquote blockquote p {
  739. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  740. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  741. font-size: 1.2rem;
  742. letter-spacing: normal;
  743. line-height: 1.125;
  744. }
  745. .wp-block-pullquote.is-style-solid-color blockquote p {
  746. font-size: 1.2rem;
  747. }
  748. .wp-block-pullquote a {
  749. color: currentColor;
  750. }
  751. .wp-block-pullquote .wp-block-pullquote__citation,
  752. .wp-block-pullquote cite,
  753. .wp-block-pullquote footer {
  754. color: #6E6E6E;
  755. font-size: 0.83333rem;
  756. letter-spacing: normal;
  757. }
  758. .wp-block-pullquote blockquote {
  759. padding-left: 0;
  760. }
  761. .wp-block-pullquote.is-style-solid-color {
  762. color: #FFFFFF;
  763. }
  764. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  765. .wp-block-pullquote.is-style-solid-color cite,
  766. .wp-block-pullquote.is-style-solid-color footer {
  767. color: currentColor;
  768. }
  769. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  770. background-color: #23883D;
  771. }
  772. .wp-block-quote {
  773. border-left-color: #23883D;
  774. padding-left: 16px;
  775. }
  776. .wp-block-quote p {
  777. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  778. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  779. font-size: 1.2em;
  780. letter-spacing: normal;
  781. }
  782. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  783. border: none;
  784. padding: 0;
  785. }
  786. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  787. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  788. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  789. font-size: 1.44em;
  790. letter-spacing: normal;
  791. line-height: 1.125;
  792. }
  793. .has-background:not(.has-background-background-color) .wp-block-quote,
  794. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  795. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  796. .wp-block-cover[style*="background-image"] .wp-block-quote {
  797. border-color: currentColor;
  798. }
  799. .wp-block-quote .wp-block-quote__citation {
  800. color: #6E6E6E;
  801. font-size: 0.83333em;
  802. letter-spacing: normal;
  803. }
  804. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  805. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  806. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  807. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  808. color: currentColor;
  809. }
  810. .wp-block-search {
  811. flex-wrap: wrap;
  812. }
  813. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  814. background: white;
  815. color: black;
  816. border: 1px solid #CCCCCC;
  817. border-radius: 3px;
  818. }
  819. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  820. padding: 16px;
  821. }
  822. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  823. padding: 16px 16px;
  824. }
  825. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  826. padding: 0;
  827. }
  828. .wp-block-search .wp-block-search__label {
  829. font-weight: normal;
  830. }
  831. .wp-block-search .wp-block-search__input {
  832. color: black;
  833. border: 1px solid #CCCCCC;
  834. border-radius: 3px;
  835. padding: 16px;
  836. font-size: 1rem;
  837. line-height: 1rem;
  838. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  839. font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  840. max-width: inherit;
  841. margin-right: calc( .66 * 16px);
  842. background: white;
  843. }
  844. .wp-block-search .wp-block-search__input:focus {
  845. color: black;
  846. border-color: #CCCCCC;
  847. }
  848. .wp-block-search .wp-block-search__button {
  849. border: none;
  850. box-shadow: none;
  851. }
  852. .wp-block-search .wp-block-search__button.has-icon {
  853. transform: scaleX(-1);
  854. padding: 0;
  855. min-width: calc(2* 16px + 1rem + 4px);
  856. min-height: calc(2* 16px + 1rem + 4px);
  857. }
  858. .wp-block-search .wp-block-search__button.has-icon svg {
  859. fill: currentColor;
  860. width: 29px;
  861. height: 29px;
  862. }
  863. .wp-block-separator,
  864. hr {
  865. border-bottom: 2px solid #CCCCCC;
  866. clear: both;
  867. }
  868. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  869. hr[style*="text-align:right"],
  870. hr[style*="text-align: right"] {
  871. border-right-color: #CCCCCC;
  872. }
  873. .wp-block-separator.is-style-wide,
  874. hr.is-style-wide {
  875. border-bottom-width: 2px;
  876. }
  877. .wp-block-separator.is-style-dots,
  878. hr.is-style-dots {
  879. border-bottom: none;
  880. }
  881. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  882. hr.is-style-dots.has-background,
  883. hr.is-style-dots.has-text-color {
  884. background-color: transparent !important;
  885. }
  886. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  887. hr.is-style-dots.has-background:before,
  888. hr.is-style-dots.has-text-color:before {
  889. color: currentColor !important;
  890. }
  891. .wp-block-separator.is-style-dots:before,
  892. hr.is-style-dots:before {
  893. color: #CCCCCC;
  894. }
  895. .has-background:not(.has-background-background-color) .wp-block-separator,
  896. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  897. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  898. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  899. hr,
  900. [class*="background-color"]:not(.has-background-background-color)
  901. hr,
  902. [style*="background-color"]:not(.has-background-background-color)
  903. hr,
  904. .wp-block-cover[style*="background-image"]
  905. hr {
  906. border-color: currentColor;
  907. }
  908. table th,
  909. .wp-block-table th {
  910. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  911. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  912. }
  913. table td,
  914. table th,
  915. .wp-block-table td,
  916. .wp-block-table th {
  917. padding: calc( 0.5 * 16px);
  918. }
  919. table.is-style-stripes tbody tr:nth-child(odd),
  920. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  921. background-color: #F7F7F7;
  922. color: #111111;
  923. }
  924. pre.wp-block-verse {
  925. font-family: monospace, monospace;
  926. color: #111111;
  927. }
  928. /**
  929. * Editor Post Title
  930. * - Needs a special styles
  931. */
  932. .editor-post-title__block .editor-post-title__input {
  933. color: #111111;
  934. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  935. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  936. font-weight: 700;
  937. font-size: 1.728;
  938. letter-spacing: normal;
  939. line-height: 1.125;
  940. }
  941. .wp-block .has-primary-color,
  942. .has-primary-color {
  943. color: #23883D;
  944. }
  945. .wp-block .has-secondary-color,
  946. .has-secondary-color {
  947. color: #0963C4;
  948. }
  949. .wp-block .has-foreground-color,
  950. .has-foreground-color {
  951. color: #111111;
  952. }
  953. .wp-block .has-foreground-light-color,
  954. .has-foreground-light-color {
  955. color: #6E6E6E;
  956. }
  957. .wp-block .has-foreground-dark-color,
  958. .has-foreground-dark-color {
  959. color: #020202;
  960. }
  961. .wp-block .has-background-light-color,
  962. .has-background-light-color {
  963. color: #F7F7F7;
  964. }
  965. .wp-block .has-background-dark-color,
  966. .has-background-dark-color {
  967. color: #CCCCCC;
  968. }
  969. .wp-block .has-background-color,
  970. .has-background-color {
  971. color: #FFFFFF;
  972. }
  973. .has-background p:not(.has-text-color),
  974. .has-background h1:not(.has-text-color),
  975. .has-background h2:not(.has-text-color),
  976. .has-background h3:not(.has-text-color),
  977. .has-background h4:not(.has-text-color),
  978. .has-background h5:not(.has-text-color),
  979. .has-background h6:not(.has-text-color) {
  980. color: currentColor;
  981. }
  982. .has-primary-background-color,
  983. .has-primary-background-color.has-background-dim {
  984. background-color: #23883D;
  985. color: #FFFFFF;
  986. }
  987. .has-primary-background-color:not(.has-text-color),
  988. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  989. color: #FFFFFF;
  990. }
  991. .has-secondary-background-color,
  992. .has-secondary-background-color.has-background-dim {
  993. background-color: #0963C4;
  994. }
  995. .has-secondary-background-color:not(.has-text-color),
  996. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  997. color: #FFFFFF;
  998. }
  999. .has-background-dim,
  1000. .has-foreground-background-color,
  1001. .has-foreground-background-color.has-background-dim {
  1002. background-color: #111111;
  1003. }
  1004. .has-background-dim,
  1005. .has-foreground-background-color,
  1006. .has-foreground-background-color.has-background-dim {
  1007. color: #FFFFFF;
  1008. }
  1009. .has-foreground-light-background-color,
  1010. .has-foreground-light-background-color.has-background-dim {
  1011. background-color: #6E6E6E;
  1012. }
  1013. .has-foreground-light-background-color:not(.has-text-color),
  1014. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  1015. color: #FFFFFF;
  1016. }
  1017. .has-foreground-dark-background-color,
  1018. .has-foreground-dark-background-color.has-background-dim {
  1019. background-color: #020202;
  1020. }
  1021. .has-foreground-dark-background-color:not(.has-text-color),
  1022. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  1023. color: #FFFFFF;
  1024. }
  1025. .has-background-light-background-color,
  1026. .has-background-light-background-color.has-background-dim {
  1027. background-color: #F7F7F7;
  1028. }
  1029. .has-background-light-background-color:not(.has-text-color),
  1030. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  1031. color: #111111;
  1032. }
  1033. .has-background-dark-background-color,
  1034. .has-background-dark-background-color.has-background-dim {
  1035. background-color: #CCCCCC;
  1036. }
  1037. .has-background-dark-background-color:not(.has-text-color),
  1038. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  1039. color: #111111;
  1040. }
  1041. .has-background-background-color,
  1042. .has-background-background-color.has-background-dim {
  1043. background-color: #FFFFFF;
  1044. color: #111111;
  1045. }
  1046. .has-background-background-color:not(.has-text-color),
  1047. .has-background-background-color.has-background-dim:not(.has-text-color) {
  1048. color: #111111;
  1049. }
  1050. .is-small-text,
  1051. .has-small-font-size {
  1052. font-size: 0.83333;
  1053. }
  1054. .is-regular-text,
  1055. .has-regular-font-size,
  1056. .has-normal-font-size,
  1057. .has-medium-font-size {
  1058. font-size: 1.2;
  1059. }
  1060. .is-large-text,
  1061. .has-large-font-size {
  1062. font-size: 1.44;
  1063. line-height: 1.125;
  1064. }
  1065. .is-larger-text,
  1066. .has-larger-font-size,
  1067. .has-huge-font-size {
  1068. font-size: 1.728;
  1069. line-height: 1.125;
  1070. }
  1071. .has-drop-cap:not(:focus)::first-letter {
  1072. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1073. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1074. font-size: calc(2 * 2.0736em);
  1075. font-weight: 700;
  1076. }
  1077. /**
  1078. * Spacing Overrides
  1079. */
  1080. [data-block] {
  1081. margin-top: 21.312px;
  1082. margin-bottom: 21.312px;
  1083. }
  1084. @media only screen and (min-width: 560px) {
  1085. [data-block] {
  1086. margin-top: 32px;
  1087. margin-bottom: 32px;
  1088. }
  1089. }
  1090. /*
  1091. * Margins
  1092. */
  1093. .margin-top-none {
  1094. margin-top: 0 !important;
  1095. }
  1096. .margin-top-half {
  1097. margin-top: 16px !important;
  1098. }
  1099. .margin-top-default {
  1100. margin-top: 32px !important;
  1101. }
  1102. .margin-right-none {
  1103. /*rtl:ignore*/
  1104. margin-right: 0 !important;
  1105. }
  1106. .margin-right-half {
  1107. /*rtl:ignore*/
  1108. margin-right: 16px !important;
  1109. }
  1110. .margin-right-default {
  1111. /*rtl:ignore*/
  1112. margin-right: 32px !important;
  1113. }
  1114. .margin-bottom-none {
  1115. margin-bottom: 0 !important;
  1116. }
  1117. .margin-bottom-half {
  1118. margin-bottom: 16px !important;
  1119. }
  1120. .margin-bottom-default {
  1121. margin-bottom: 32px !important;
  1122. }
  1123. .margin-left-none {
  1124. /*rtl:ignore*/
  1125. margin-left: 0 !important;
  1126. }
  1127. .margin-left-half {
  1128. /*rtl:ignore*/
  1129. margin-left: 16px !important;
  1130. }
  1131. .margin-left-default {
  1132. /*rtl:ignore*/
  1133. margin-left: 32px !important;
  1134. }
  1135. /*
  1136. * Padding
  1137. */
  1138. .padding-top-none {
  1139. padding-top: 0 !important;
  1140. }
  1141. .padding-top-half {
  1142. padding-top: 16px !important;
  1143. }
  1144. .padding-top-default {
  1145. padding-top: 32px !important;
  1146. }
  1147. .padding-right-none {
  1148. /*rtl:ignore*/
  1149. padding-right: 0 !important;
  1150. }
  1151. .padding-right-half {
  1152. /*rtl:ignore*/
  1153. padding-right: 16px !important;
  1154. }
  1155. .padding-right-default {
  1156. /*rtl:ignore*/
  1157. padding-right: 32px !important;
  1158. }
  1159. .padding-bottom-none {
  1160. padding-bottom: 0 !important;
  1161. }
  1162. .padding-bottom-half {
  1163. padding-bottom: 16px !important;
  1164. }
  1165. .padding-bottom-default {
  1166. padding-bottom: 32px !important;
  1167. }
  1168. .padding-left-none {
  1169. /*rtl:ignore*/
  1170. padding-left: 0 !important;
  1171. }
  1172. .padding-left-half {
  1173. /*rtl:ignore*/
  1174. padding-left: 16px !important;
  1175. }
  1176. .padding-left-default {
  1177. /*rtl:ignore*/
  1178. padding-left: 32px !important;
  1179. }
  1180. /**
  1181. * Vendors
  1182. * - Styles for 3rd party plugins and WP extensions
  1183. */
  1184. /**
  1185. * Vendors
  1186. * - 3rd-party compatibility styles
  1187. */
  1188. /**
  1189. * Set Jetpack form text color
  1190. */
  1191. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1192. color: black;
  1193. }
  1194. /**
  1195. * Extras
  1196. */
  1197. .editor-post-title__input {
  1198. text-align: center;
  1199. }
  1200. .wp-block-cover h1,
  1201. .wp-block-cover-image h1 {
  1202. font-size: 2.98598em;
  1203. }
  1204. .wp-block-cover h2,
  1205. .wp-block-cover-image h2 {
  1206. font-size: 2.48832em;
  1207. }
  1208. .wp-block-cover h3,
  1209. .wp-block-cover-image h3 {
  1210. font-size: 2.0736em;
  1211. }
  1212. .wp-block-cover h4,
  1213. .wp-block-cover-image h4 {
  1214. font-size: 1.728em;
  1215. }
  1216. .wp-block-cover h5,
  1217. .wp-block-cover-image h5 {
  1218. font-size: 1.44em;
  1219. }
  1220. .wp-block-cover h6,
  1221. .wp-block-cover-image h6 {
  1222. font-size: 1.2em;
  1223. }
  1224. @media only screen and (min-width: 560px) {
  1225. .wp-block-cover,
  1226. .wp-block-cover-image {
  1227. min-height: 60vh;
  1228. }
  1229. }
  1230. @media only screen and (min-width: 782px) {
  1231. .wp-block-cover,
  1232. .wp-block-cover-image {
  1233. min-height: 80vh;
  1234. }
  1235. }
  1236. .wp-block-a8c-blog-posts .entry-title a {
  1237. color: inherit;
  1238. }
  1239. .wp-block-a8c-blog-posts .cat-links a,
  1240. .wp-block-a8c-blog-posts .entry-title a:hover,
  1241. .wp-block-a8c-blog-posts .entry-meta a {
  1242. text-decoration: none;
  1243. }
  1244. .wp-block-a8c-blog-posts.image-alignbehind .cat-links a:hover,
  1245. .wp-block-a8c-blog-posts.image-alignbehind .entry-title a:hover,
  1246. .wp-block-a8c-blog-posts.image-alignbehind .entry-meta a:hover {
  1247. text-decoration: underline;
  1248. }
  1249. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .cat-links a:hover,
  1250. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1251. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  1252. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .cat-links a:hover,
  1253. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1254. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  1255. [style*="background-color"] .wp-block-a8c-blog-posts .cat-links a:hover,
  1256. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover,
  1257. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:hover {
  1258. text-decoration: underline;
  1259. }
  1260. .wp-block-a8c-blog-posts + .button {
  1261. font-size: 0.83333em;
  1262. }
  1263. /**
  1264. * Full Site Editing
  1265. * - Full Site Editing overrides
  1266. */
  1267. @media (min-width: 600px) {
  1268. .a8c-template-editor .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] {
  1269. margin-left: 0;
  1270. margin-right: 0;
  1271. }
  1272. }
  1273. .a8c-template-editor .block-editor-block-list__block-edit [data-block] {
  1274. margin: 12px 0 0 0;
  1275. }
  1276. .template-block .fse-template-part {
  1277. padding: 16px;
  1278. }
  1279. @media only screen and (min-width: 560px) {
  1280. .template-block .fse-template-part {
  1281. padding: 32px 0;
  1282. }
  1283. }
  1284. .template-block .fse-template-part figure.fse-site-logo {
  1285. width: auto;
  1286. }
  1287. .template-block .fse-template-part .block-list-appender {
  1288. display: none;
  1289. }
  1290. .template-block .fse-template-part .wp-block-column .block-editor-block-list__layout [data-type='a8c/site-title']:first-child .site-title {
  1291. margin-top: 0;
  1292. }
  1293. .fse-template-part .wp-block-cover .site-title,
  1294. .fse-template-part .wp-block-cover .site-description,
  1295. .fse-template-part .wp-block-cover-image .site-title,
  1296. .fse-template-part .wp-block-cover-image .site-description {
  1297. background: transparent;
  1298. color: inherit;
  1299. }
  1300. .fse-template-part .block-editor-block-list__layout .block-editor-block-list__block[data-align='full'] > .block-editor-block-list__block-edit figure.fse-site-logo {
  1301. width: auto;
  1302. }
  1303. .fse-template-part .wp-block-column {
  1304. width: 100%;
  1305. }
  1306. .fse-template-part .wp-block-columns .wp-block-column > * {
  1307. margin: 0 0 5px 0;
  1308. }
  1309. .fse-template-part .main-navigation {
  1310. color: #111111;
  1311. }
  1312. .fse-template-part .main-navigation > div {
  1313. display: none;
  1314. }
  1315. .fse-template-part .main-navigation #toggle-menu {
  1316. display: inline-block;
  1317. margin: 0;
  1318. }
  1319. .fse-template-part .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  1320. display: block;
  1321. }
  1322. .fse-template-part .main-navigation #toggle:focus + #toggle-menu {
  1323. background-color: #195f2b;
  1324. outline: inherit;
  1325. text-decoration: underline;
  1326. }
  1327. .fse-template-part .main-navigation .dropdown-icon.close {
  1328. display: none;
  1329. }
  1330. .fse-template-part .main-navigation #toggle:checked + #toggle-menu .open {
  1331. display: none;
  1332. }
  1333. .fse-template-part .main-navigation #toggle:checked + #toggle-menu .close {
  1334. display: inline;
  1335. }
  1336. @media only screen and (min-width: 560px) {
  1337. .fse-template-part .main-navigation > div {
  1338. display: inline-block;
  1339. }
  1340. .fse-template-part .main-navigation #toggle-menu {
  1341. display: none;
  1342. }
  1343. .fse-template-part .main-navigation > div > ul > li > ul {
  1344. display: none;
  1345. }
  1346. }
  1347. .fse-template-part .main-navigation > div > ul {
  1348. display: flex;
  1349. flex-wrap: wrap;
  1350. list-style: none;
  1351. margin: 0;
  1352. max-width: none;
  1353. padding-left: 0;
  1354. position: relative;
  1355. /* Sub-menus Flyout */
  1356. }
  1357. .fse-template-part .main-navigation > div > ul ul {
  1358. padding-left: 0;
  1359. }
  1360. .fse-template-part .main-navigation > div > ul li {
  1361. display: block;
  1362. position: relative;
  1363. width: 100%;
  1364. z-index: 1;
  1365. }
  1366. .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li[focus-within] {
  1367. cursor: pointer;
  1368. z-index: 99999;
  1369. }
  1370. .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li:focus-within {
  1371. cursor: pointer;
  1372. z-index: 99999;
  1373. }
  1374. @media only screen and (min-width: 560px) {
  1375. .fse-template-part .main-navigation > div > ul li {
  1376. display: inherit;
  1377. width: inherit;
  1378. /* Submenu display */
  1379. }
  1380. .fse-template-part .main-navigation > div > ul li:hover > ul,
  1381. .fse-template-part .main-navigation > div > ul li[focus-within] > ul,
  1382. .fse-template-part .main-navigation > div > ul li ul:hover,
  1383. .fse-template-part .main-navigation > div > ul li ul:focus {
  1384. visibility: visible;
  1385. opacity: 1;
  1386. display: block;
  1387. }
  1388. .fse-template-part .main-navigation > div > ul li:hover > ul,
  1389. .fse-template-part .main-navigation > div > ul li:focus-within > ul,
  1390. .fse-template-part .main-navigation > div > ul li ul:hover,
  1391. .fse-template-part .main-navigation > div > ul li ul:focus {
  1392. visibility: visible;
  1393. opacity: 1;
  1394. display: block;
  1395. }
  1396. }
  1397. @media only screen and (min-width: 560px) {
  1398. .fse-template-part .main-navigation > div > ul > li > a {
  1399. line-height: 1;
  1400. }
  1401. .fse-template-part .main-navigation > div > ul > li > a:before, .fse-template-part .main-navigation > div > ul > li > a:after {
  1402. content: '';
  1403. display: block;
  1404. height: 0;
  1405. width: 0;
  1406. }
  1407. .fse-template-part .main-navigation > div > ul > li > a:before {
  1408. margin-bottom: -0.12em;
  1409. }
  1410. .fse-template-part .main-navigation > div > ul > li > a:after {
  1411. margin-top: -0.11em;
  1412. }
  1413. .fse-template-part .main-navigation > div > ul > li:first-of-type > a {
  1414. padding-left: 0;
  1415. }
  1416. .fse-template-part .main-navigation > div > ul > li:last-of-type > a {
  1417. padding-right: 0;
  1418. }
  1419. }
  1420. .fse-template-part .main-navigation > div > ul > li > .sub-menu {
  1421. margin: 0;
  1422. position: relative;
  1423. }
  1424. @media only screen and (min-width: 560px) {
  1425. .fse-template-part .main-navigation > div > ul > li > .sub-menu {
  1426. background: #FFFFFF;
  1427. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  1428. left: 0;
  1429. top: 100%;
  1430. min-width: max-content;
  1431. opacity: 0;
  1432. position: absolute;
  1433. transition: all 0.5s ease;
  1434. visibility: hidden;
  1435. }
  1436. }
  1437. .fse-template-part .main-navigation > div > ul > li > .sub-menu .sub-menu {
  1438. width: 100%;
  1439. }
  1440. .fse-template-part .main-navigation a {
  1441. color: #23883D;
  1442. display: block;
  1443. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1444. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1445. font-weight: 700;
  1446. padding: 8px 0;
  1447. }
  1448. @media only screen and (min-width: 560px) {
  1449. .fse-template-part .main-navigation a {
  1450. padding: 16px;
  1451. }
  1452. }
  1453. .fse-template-part .main-navigation a:link, .fse-template-part .main-navigation a:visited {
  1454. color: #23883D;
  1455. }
  1456. .fse-template-part .main-navigation a:hover {
  1457. color: #195f2b;
  1458. }
  1459. .fse-template-part .main-navigation .sub-menu {
  1460. list-style: none;
  1461. margin-left: 0;
  1462. /* Reset the counter for each UL */
  1463. counter-reset: nested-list;
  1464. }
  1465. .fse-template-part .main-navigation .sub-menu .menu-item a {
  1466. padding-top: 8px;
  1467. padding-bottom: 8px;
  1468. }
  1469. .fse-template-part .main-navigation .sub-menu .menu-item a::before {
  1470. /* Increment the dashes */
  1471. counter-increment: nested-list;
  1472. /* Insert dashes with spaces in between */
  1473. content: "– " counters(nested-list, "– ", none);
  1474. }
  1475. @media only screen and (min-width: 560px) {
  1476. .fse-template-part .main-navigation > div > ul > .menu-item-has-children > a::after {
  1477. content: "\00a0\25BC";
  1478. display: inline-block;
  1479. font-size: 0.69444rem;
  1480. height: inherit;
  1481. width: inherit;
  1482. }
  1483. }
  1484. .fse-template-part .main-navigation .hide-visually {
  1485. position: absolute !important;
  1486. clip: rect(1px, 1px, 1px, 1px);
  1487. padding: 0 !important;
  1488. border: 0 !important;
  1489. height: 1px !important;
  1490. width: 1px !important;
  1491. overflow: hidden;
  1492. }
  1493. .fse-template-part body:not(.fse-enabled) .main-navigation a {
  1494. font-size: 1rem;
  1495. }
  1496. .fse-template-part .main-navigation {
  1497. text-align: center;
  1498. /**
  1499. * Button Placeholder style
  1500. * - Since buttons appear in various blocks,
  1501. * let’s use a placeholder to keep them all
  1502. * in-sync
  1503. */
  1504. /**
  1505. * Onsale Placeholder style
  1506. * - Since buttons appear in various blocks,
  1507. * let’s use a placeholder to keep them all
  1508. * in-sync
  1509. */
  1510. }
  1511. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  1512. width: 100%;
  1513. }
  1514. .fse-template-part .main-navigation .wp-block-button__link,
  1515. .fse-template-part .main-navigation .wp-block-file__button, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button, .fse-template-part .main-navigation .button {
  1516. line-height: 1;
  1517. color: white;
  1518. cursor: pointer;
  1519. font-weight: 700;
  1520. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1521. font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1522. font-size: 0.83333rem;
  1523. background-color: #23883D;
  1524. border-radius: 5px;
  1525. border-width: 0;
  1526. text-decoration: none;
  1527. padding: 16px 16px;
  1528. }
  1529. .fse-template-part .main-navigation .wp-block-button__link:before,
  1530. .fse-template-part .main-navigation .wp-block-file__button:before, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:before, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:before, .fse-template-part .main-navigation .button:before, .fse-template-part .main-navigation .wp-block-button__link:after,
  1531. .fse-template-part .main-navigation .wp-block-file__button:after, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:after, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  1532. content: '';
  1533. display: block;
  1534. height: 0;
  1535. width: 0;
  1536. }
  1537. .fse-template-part .main-navigation .wp-block-button__link:before,
  1538. .fse-template-part .main-navigation .wp-block-file__button:before, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:before, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
  1539. margin-bottom: -0.12em;
  1540. }
  1541. .fse-template-part .main-navigation .wp-block-button__link:after,
  1542. .fse-template-part .main-navigation .wp-block-file__button:after, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:after, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  1543. margin-top: -0.11em;
  1544. }
  1545. .fse-template-part .main-navigation .wp-block-button__link:not(.has-background):hover,
  1546. .fse-template-part .main-navigation .wp-block-file__button:not(.has-background):hover, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:not(.has-background):hover, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:not(.has-background):hover, .fse-template-part .main-navigation .button:not(.has-background):hover, .fse-template-part .main-navigation .wp-block-button__link:focus,
  1547. .fse-template-part .main-navigation .wp-block-file__button:focus, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:focus, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:focus, .fse-template-part .main-navigation .button:focus, .fse-template-part .main-navigation .has-focus.wp-block-button__link,
  1548. .fse-template-part .main-navigation .has-focus.wp-block-file__button, .fse-template-part .main-navigation .wp-block-search .has-focus.wp-block-search__button, .wp-block-search .fse-template-part .main-navigation .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
  1549. color: white;
  1550. background-color: #195f2b;
  1551. }
  1552. .fse-template-part .main-navigation .main-menu.footer-menu li a {
  1553. font-size: inherit;
  1554. }
  1555. .fse-template-part .main-navigation .main-menu.footer-menu li.menu-item-has-children > a::after {
  1556. font-size: 0.6em;
  1557. vertical-align: middle;
  1558. }
  1559. .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  1560. color: inherit;
  1561. }
  1562. .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
  1563. justify-content: flex-start;
  1564. }
  1565. .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
  1566. justify-content: center;
  1567. }
  1568. .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
  1569. justify-content: flex-end;
  1570. }
  1571. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  1572. padding: 16px;
  1573. }
  1574. @media only screen and (min-width: 560px) {
  1575. .a8c-template-editor.fse-header .block-editor-block-list__layout > .block-editor-block-list__block.is-selected:first-child[data-align='full'] > .block-editor-block-list__block-edit > [data-block] {
  1576. margin-top: 14px;
  1577. }
  1578. .a8c-template-editor.fse-header .block-editor-block-list__layout > .block-editor-block-list__block:not(.is-selected):first-child[data-align='full'] > .block-editor-block-list__block-edit > [data-block] {
  1579. margin-top: 0;
  1580. }
  1581. }
  1582. .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
  1583. margin-top: -16px;
  1584. }
  1585. @media only screen and (min-width: 560px) {
  1586. .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
  1587. margin-top: -32px;
  1588. }
  1589. }
  1590. .post-content__block {
  1591. margin-bottom: 160px;
  1592. margin-top: 36px;
  1593. z-index: 20;
  1594. }
  1595. .fse-template-part .has-normal-font-size {
  1596. font-size: 1.2rem;
  1597. }
  1598. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  1599. width: 100%;
  1600. }
  1601. .fse-template-part .main-navigation a {
  1602. text-decoration: none;
  1603. }
  1604. .fse-template-part .wp-block-cover .site-title,
  1605. .fse-template-part .wp-block-cover-image .site-title {
  1606. font-weight: 700;
  1607. }
  1608. .fse-template-part .wp-block-cover .has-background,
  1609. .fse-template-part .wp-block-cover-image .has-background {
  1610. text-shadow: none;
  1611. }
  1612. .post-content__block {
  1613. margin-top: -36px;
  1614. }