style-editor.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368
  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 Deep
  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: #222222;
  163. background-color: white;
  164. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  165. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-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: #CA2017;
  181. }
  182. a:hover {
  183. color: #222222;
  184. }
  185. button,
  186. a {
  187. cursor: pointer;
  188. }
  189. html {
  190. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  191. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  192. }
  193. .editor-post-title .editor-post-title__block .editor-post-title__input {
  194. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  195. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  196. font-size: 2.48832rem;
  197. text-align: center;
  198. }
  199. /**
  200. * Elements
  201. * - Styles for basic HTML elemants
  202. */
  203. /**
  204. * Elements
  205. * - Styles for basic HTML elemants
  206. */
  207. blockquote {
  208. padding-left: 16px;
  209. }
  210. blockquote p {
  211. font-size: 1.44rem;
  212. letter-spacing: normal;
  213. line-height: 1.125;
  214. }
  215. blockquote cite,
  216. blockquote footer {
  217. font-size: 0.83333rem;
  218. letter-spacing: normal;
  219. }
  220. blockquote > * {
  221. margin-top: 16px;
  222. margin-bottom: 16px;
  223. }
  224. blockquote > *:first-child {
  225. margin-top: 0;
  226. }
  227. blockquote > *:last-child {
  228. margin-bottom: 0;
  229. }
  230. blockquote.alignleft, blockquote.alignright {
  231. padding-left: inherit;
  232. }
  233. blockquote.alignleft p, blockquote.alignright p {
  234. font-size: 1.2rem;
  235. max-width: inherit;
  236. width: inherit;
  237. }
  238. blockquote.alignleft cite,
  239. blockquote.alignleft footer, blockquote.alignright cite,
  240. blockquote.alignright footer {
  241. font-size: 0.69444rem;
  242. letter-spacing: normal;
  243. }
  244. figcaption {
  245. color: #666666;
  246. font-size: 0.69444rem;
  247. margin-top: calc(0.5 * 16px);
  248. margin-bottom: 16px;
  249. text-align: center;
  250. }
  251. .alignleft figcaption,
  252. .alignright figcaption {
  253. margin-bottom: 0;
  254. }
  255. /* WP Smiley */
  256. .page-content .wp-smiley,
  257. .entry-content .wp-smiley,
  258. .comment-content .wp-smiley {
  259. border: none;
  260. margin-bottom: 0;
  261. margin-top: 0;
  262. padding: 0;
  263. }
  264. /* Make sure embeds and iframes fit their containers. */
  265. embed,
  266. iframe,
  267. object {
  268. max-width: 100%;
  269. }
  270. /**
  271. * Blocks
  272. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  273. * spacing with CSS-variables overrides
  274. */
  275. /**
  276. * Block Styles for the Editor
  277. *
  278. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  279. * spacing with CSS-variables overrides in the Block Editor
  280. * - In the future the Block styles may get compiled to individual .css
  281. * files and conditionally loaded
  282. */
  283. .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
  284. margin-bottom: 16px;
  285. }
  286. .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
  287. margin-right: 32px;
  288. }
  289. .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
  290. margin-left: 32px;
  291. }
  292. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
  293. padding: 32px;
  294. }
  295. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
  296. color: #fff;
  297. }
  298. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
  299. color: currentColor;
  300. }
  301. .wp-block-a8c-blog-posts .article-section-title {
  302. font-size: 1em;
  303. margin-top: 0;
  304. margin-bottom: 16px;
  305. }
  306. .wp-block-a8c-blog-posts article {
  307. margin-bottom: 64px;
  308. }
  309. @media only screen and (min-width: 560px) {
  310. .wp-block-a8c-blog-posts article {
  311. margin-bottom: 96px;
  312. }
  313. }
  314. .wp-block-a8c-blog-posts .post-thumbnail img {
  315. vertical-align: middle;
  316. width: auto;
  317. }
  318. .wp-block-a8c-blog-posts .entry-wrapper > * {
  319. /* Vertical margins logic between post details */
  320. margin-top: 16px;
  321. margin-bottom: 16px;
  322. }
  323. .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
  324. margin-top: 0;
  325. }
  326. .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
  327. margin-bottom: 0;
  328. }
  329. .wp-block-a8c-blog-posts .entry-title a {
  330. color: #CA2017;
  331. }
  332. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  333. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  334. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  335. color: currentColor;
  336. }
  337. .wp-block-a8c-blog-posts .entry-title a:hover {
  338. color: #222222;
  339. text-decoration: underline;
  340. }
  341. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  342. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  343. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  344. color: currentColor;
  345. }
  346. .wp-block-a8c-blog-posts .more-link {
  347. display: block;
  348. color: inherit;
  349. margin-top: 16px;
  350. }
  351. .wp-block-a8c-blog-posts .more-link:after {
  352. content: "\02192";
  353. display: inline-block;
  354. margin-left: 0.5em;
  355. }
  356. .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
  357. color: #222222;
  358. text-decoration: none;
  359. }
  360. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  361. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  362. [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,
  363. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  364. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
  365. color: currentColor;
  366. }
  367. .wp-block-a8c-blog-posts .entry-meta,
  368. .wp-block-a8c-blog-posts .cat-links {
  369. color: #666666;
  370. font-size: 0.83333em;
  371. }
  372. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  373. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  374. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
  375. .wp-block-a8c-blog-posts .cat-links,
  376. [class*="background-color"]:not(.has-background-background-color)
  377. .wp-block-a8c-blog-posts .cat-links,
  378. [style*="background-color"]
  379. .wp-block-a8c-blog-posts .cat-links {
  380. color: currentColor;
  381. }
  382. .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
  383. .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
  384. margin-right: 16px;
  385. }
  386. .wp-block-a8c-blog-posts .entry-meta .published + .updated,
  387. .wp-block-a8c-blog-posts .cat-links .published + .updated {
  388. display: none;
  389. }
  390. .wp-block-a8c-blog-posts .entry-meta a,
  391. .wp-block-a8c-blog-posts .cat-links a {
  392. color: currentColor;
  393. text-decoration: underline;
  394. }
  395. .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
  396. .wp-block-a8c-blog-posts .cat-links a:hover,
  397. .wp-block-a8c-blog-posts .cat-links a:active {
  398. color: #222222;
  399. text-decoration: none;
  400. }
  401. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  402. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  403. [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,
  404. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  405. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
  406. .wp-block-a8c-blog-posts .cat-links a:hover,
  407. [class*="background-color"]:not(.has-background-background-color)
  408. .wp-block-a8c-blog-posts .cat-links a:hover,
  409. [style*="background-color"]
  410. .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
  411. .wp-block-a8c-blog-posts .cat-links a:active,
  412. [class*="background-color"]:not(.has-background-background-color)
  413. .wp-block-a8c-blog-posts .cat-links a:active,
  414. [style*="background-color"]
  415. .wp-block-a8c-blog-posts .cat-links a:active {
  416. color: currentColor;
  417. }
  418. /**
  419. * Button Placeholder style
  420. * - Since buttons appear in various blocks,
  421. * let’s use a placeholder to keep them all
  422. * in-sync
  423. */
  424. .wp-block-a8c-blog-posts + .button {
  425. line-height: 1;
  426. color: white;
  427. cursor: pointer;
  428. font-weight: bold;
  429. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  430. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  431. font-size: 1rem;
  432. background-color: #CA2017;
  433. border-radius: 4px;
  434. border-width: 0;
  435. text-decoration: none;
  436. padding: 16px 24px;
  437. }
  438. .wp-block-a8c-blog-posts + .button:before, .wp-block-a8c-blog-posts + .button:after {
  439. content: '';
  440. display: block;
  441. height: 0;
  442. width: 0;
  443. }
  444. .wp-block-a8c-blog-posts + .button:before {
  445. margin-bottom: -0.12em;
  446. }
  447. .wp-block-a8c-blog-posts + .button:after {
  448. margin-top: -0.11em;
  449. }
  450. .wp-block-a8c-blog-posts + .button:hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-a8c-blog-posts + .has-focus.button {
  451. color: white;
  452. background-color: #222222;
  453. }
  454. /**
  455. * Onsale Placeholder style
  456. * - Since buttons appear in various blocks,
  457. * let’s use a placeholder to keep them all
  458. * in-sync
  459. */
  460. .wp-block-a8c-blog-posts + .button {
  461. display: inline-block;
  462. font-size: 1.2em;
  463. }
  464. .wp-block-a8c-blog-posts + .button:hover {
  465. cursor: default;
  466. }
  467. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  468. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  469. [style*="background-color"] .wp-block-a8c-blog-posts + .button {
  470. background-color: transparent;
  471. border: 2px solid currentColor;
  472. color: currentColor;
  473. }
  474. /* Default Style */
  475. .wp-block-button__link {
  476. color: white;
  477. font-weight: bold;
  478. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  479. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  480. font-size: 1em;
  481. line-height: 1;
  482. background-color: #CA2017;
  483. border-radius: 4px;
  484. padding: 16px 24px;
  485. /* Outline Style */
  486. /* Squared Style */
  487. }
  488. .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
  489. color: white;
  490. background-color: #222222;
  491. }
  492. .wp-block-button__link.is-style-outline,
  493. .is-style-outline .wp-block-button__link {
  494. background: transparent;
  495. border: 2px solid currentcolor;
  496. }
  497. .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,
  498. .is-style-outline .wp-block-button__link:hover,
  499. .is-style-outline .wp-block-button__link:focus,
  500. .is-style-outline .wp-block-button__link.has-focus {
  501. color: #222222;
  502. background: transparent;
  503. }
  504. .wp-block-button__link.is-style-squared,
  505. .is-style-squared .wp-block-button__link {
  506. border-radius: 0;
  507. }
  508. /* Default Style */
  509. .button {
  510. color: white;
  511. font-weight: bold;
  512. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  513. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  514. font-size: 1em;
  515. line-height: 1;
  516. background-color: #CA2017;
  517. border-radius: 4px;
  518. padding: 16px 24px;
  519. }
  520. .button:hover, .button:focus, .button.has-focus {
  521. color: white;
  522. background-color: #222222;
  523. }
  524. .wp-block-columns .wp-block[data-align=full],
  525. .wp-block-columns .alignfull {
  526. margin-left: inherit;
  527. margin-right: inherit;
  528. }
  529. .wp-block-cover,
  530. .wp-block-cover-image {
  531. background-color: #222222;
  532. color: white;
  533. min-height: 576px;
  534. margin-top: inherit;
  535. margin-bottom: inherit;
  536. /* default & custom background-color */
  537. /* Treating H2 separately to account for legacy /core styles */
  538. }
  539. .wp-block-cover.has-background-dim,
  540. .wp-block-cover-image.has-background-dim {
  541. background-color: #222222;
  542. color: white;
  543. }
  544. .wp-block-cover .wp-block-cover__inner-container,
  545. .wp-block-cover .wp-block-cover-image-text,
  546. .wp-block-cover .wp-block-cover-text,
  547. .wp-block-cover .block-editor-block-list__block,
  548. .wp-block-cover-image .wp-block-cover__inner-container,
  549. .wp-block-cover-image .wp-block-cover-image-text,
  550. .wp-block-cover-image .wp-block-cover-text,
  551. .wp-block-cover-image .block-editor-block-list__block {
  552. color: currentColor;
  553. }
  554. .wp-block-cover .wp-block-cover__inner-container a,
  555. .wp-block-cover .wp-block-cover-image-text a,
  556. .wp-block-cover .wp-block-cover-text a,
  557. .wp-block-cover .block-editor-block-list__block a,
  558. .wp-block-cover-image .wp-block-cover__inner-container a,
  559. .wp-block-cover-image .wp-block-cover-image-text a,
  560. .wp-block-cover-image .wp-block-cover-text a,
  561. .wp-block-cover-image .block-editor-block-list__block a {
  562. color: currentColor;
  563. }
  564. .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
  565. .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
  566. .wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
  567. .wp-block-cover:not([class*='background-color']) .block-editor-block-list__block,
  568. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
  569. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
  570. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text,
  571. .wp-block-cover-image:not([class*='background-color']) .block-editor-block-list__block {
  572. color: white;
  573. }
  574. .wp-block-cover h2,
  575. .wp-block-cover-image h2 {
  576. font-size: 2.0736em;
  577. letter-spacing: normal;
  578. line-height: 1.125;
  579. padding: 0;
  580. max-width: inherit;
  581. text-align: inherit;
  582. }
  583. .wp-block-cover h2.has-text-align-left,
  584. .wp-block-cover-image h2.has-text-align-left {
  585. text-align: left;
  586. }
  587. .wp-block-cover h2.has-text-align-center,
  588. .wp-block-cover-image h2.has-text-align-center {
  589. text-align: center;
  590. }
  591. .wp-block-cover h2.has-text-align-right,
  592. .wp-block-cover-image h2.has-text-align-right {
  593. text-align: right;
  594. }
  595. .wp-block-heading h1, h1, .h1,
  596. .wp-block-heading h2, h2, .h2,
  597. .wp-block-heading h3, h3, .h3,
  598. .wp-block-heading h4, h4, .h4,
  599. .wp-block-heading h5, h5, .h5,
  600. .wp-block-heading h6, h6, .h6 {
  601. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  602. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  603. font-weight: bold;
  604. clear: both;
  605. }
  606. .wp-block-heading h1, h1, .h1 {
  607. font-size: 2.48832em;
  608. letter-spacing: normal;
  609. line-height: 1.125;
  610. }
  611. .wp-block-heading h2, h2, .h2 {
  612. font-size: 2.0736em;
  613. letter-spacing: normal;
  614. line-height: 1.125;
  615. }
  616. .wp-block-heading h3, h3, .h3 {
  617. font-size: 1.728em;
  618. letter-spacing: normal;
  619. line-height: 1.125;
  620. }
  621. .wp-block-heading h4, h4, .h4 {
  622. font-size: 1.44em;
  623. letter-spacing: normal;
  624. line-height: 1.125;
  625. }
  626. .wp-block-heading h5, h5, .h5 {
  627. font-size: 1.2em;
  628. letter-spacing: normal;
  629. line-height: 1.125;
  630. }
  631. .wp-block-heading h6, h6, .h6 {
  632. font-size: 1em;
  633. letter-spacing: normal;
  634. line-height: 1.125;
  635. }
  636. /* Center image block by default in the editor */
  637. .wp-block-image > div {
  638. text-align: center;
  639. }
  640. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  641. margin: 0 auto;
  642. }
  643. .wp-block-gallery figcaption {
  644. margin-bottom: 0;
  645. }
  646. .wp-block-group.has-background {
  647. padding: 21.312px;
  648. }
  649. @media only screen and (min-width: 560px) {
  650. .wp-block-group.has-background {
  651. padding: 32px;
  652. }
  653. }
  654. .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] {
  655. margin: 0;
  656. width: 100%;
  657. }
  658. .wp-block-latest-comments {
  659. margin-left: 0;
  660. }
  661. .wp-block-latest-posts {
  662. padding-left: 0;
  663. }
  664. .wp-block-latest-posts > li > a {
  665. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  666. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  667. font-size: 1.44rem;
  668. font-weight: bold;
  669. line-height: 1.125;
  670. }
  671. .wp-block-latest-posts:not(.is-grid) > li {
  672. /* Vertical margins logic */
  673. margin-top: 32px;
  674. margin-bottom: 32px;
  675. }
  676. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  677. margin-top: 0;
  678. }
  679. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  680. margin-bottom: 0;
  681. }
  682. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  683. color: #666666;
  684. font-size: 0.83333rem;
  685. line-height: 1.6;
  686. }
  687. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  688. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  689. color: currentColor;
  690. }
  691. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  692. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  693. font-size: 0.83333rem;
  694. line-height: 1.6;
  695. margin: 0;
  696. }
  697. ul,
  698. ol {
  699. margin: 32px 0;
  700. padding-left: 32px;
  701. }
  702. ul.aligncenter,
  703. ol.aligncenter {
  704. list-style-position: inside;
  705. padding: 0;
  706. }
  707. ul.alignright,
  708. ol.alignright {
  709. list-style-position: inside;
  710. text-align: right;
  711. padding: 0;
  712. }
  713. li > ul,
  714. li > ol {
  715. margin: 0;
  716. }
  717. .wp-block-media-text .block-editor-inner-blocks {
  718. padding-right: 16px;
  719. padding-left: 16px;
  720. }
  721. @media only screen and (min-width: 640px) {
  722. .wp-block-media-text .block-editor-inner-blocks {
  723. padding-right: 32px;
  724. padding-left: 32px;
  725. }
  726. }
  727. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  728. color: currentColor;
  729. }
  730. .a8c-posts-list {
  731. padding-left: 0;
  732. }
  733. p.has-background {
  734. padding: 16px 16px;
  735. }
  736. p.has-background:not(.has-background-background-color) a {
  737. color: currentColor;
  738. }
  739. .wp-block-pullquote {
  740. padding: calc( 3 * 16px) 0;
  741. margin-left: 0;
  742. margin-right: 0;
  743. text-align: center;
  744. border-top-color: #DDDDDD;
  745. border-top-width: 4px;
  746. border-bottom-color: #DDDDDD;
  747. border-bottom-width: 4px;
  748. color: #222222;
  749. /**
  750. * Block Options
  751. */
  752. }
  753. .wp-block-pullquote blockquote {
  754. padding-left: 0;
  755. }
  756. .wp-block-pullquote p {
  757. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  758. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  759. font-size: 1.44em;
  760. letter-spacing: normal;
  761. line-height: 1.125;
  762. }
  763. .wp-block-pullquote a {
  764. color: currentColor;
  765. }
  766. .wp-block-pullquote .wp-block-pullquote__citation,
  767. .wp-block-pullquote cite,
  768. .wp-block-pullquote footer {
  769. color: #666666;
  770. font-size: 0.83333em;
  771. letter-spacing: normal;
  772. }
  773. .wp-block-pullquote:not(.is-style-solid-color) {
  774. background: none;
  775. }
  776. .wp-block-pullquote.is-style-solid-color {
  777. background-color: #CA2017;
  778. color: white;
  779. }
  780. .wp-block-pullquote.is-style-solid-color.alignleft blockquote,
  781. .wp-block-pullquote.is-style-solid-color.alignright blockquote {
  782. padding-left: 16px;
  783. padding-right: 16px;
  784. max-width: inherit;
  785. }
  786. .wp-block-pullquote.is-style-solid-color blockquote {
  787. padding-left: 0;
  788. }
  789. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  790. .wp-block-pullquote.is-style-solid-color cite,
  791. .wp-block-pullquote.is-style-solid-color footer {
  792. color: currentColor;
  793. }
  794. .wp-block-pullquote.alignwide > p,
  795. .wp-block-pullquote.alignfull > p,
  796. .wp-block-pullquote.alignwide blockquote,
  797. .wp-block-pullquote.alignfull blockquote {
  798. margin-left: auto;
  799. margin-right: auto;
  800. }
  801. .wp-block-quote {
  802. border-left-color: #CA2017;
  803. margin: 32px 0;
  804. padding-left: 16px;
  805. }
  806. .wp-block-quote p {
  807. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  808. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  809. font-size: 1.44em;
  810. letter-spacing: normal;
  811. }
  812. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  813. border: none;
  814. padding: 0;
  815. }
  816. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  817. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  818. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  819. font-size: 1.728em;
  820. letter-spacing: normal;
  821. line-height: 1.125;
  822. }
  823. .has-background:not(.has-background-background-color) .wp-block-quote,
  824. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  825. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  826. .wp-block-cover[style*="background-image"] .wp-block-quote {
  827. border-color: currentColor;
  828. }
  829. .wp-block-quote .wp-block-quote__citation {
  830. color: #666666;
  831. font-size: 0.83333em;
  832. letter-spacing: normal;
  833. }
  834. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  835. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  836. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  837. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  838. color: currentColor;
  839. }
  840. .wp-block-separator,
  841. hr {
  842. border-bottom: 2px solid #DDDDDD;
  843. clear: both;
  844. }
  845. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  846. hr[style*="text-align:right"],
  847. hr[style*="text-align: right"] {
  848. border-right-color: #DDDDDD;
  849. }
  850. .wp-block-separator.is-style-wide,
  851. hr.is-style-wide {
  852. border-bottom-width: 2px;
  853. }
  854. .wp-block-separator.is-style-dots,
  855. hr.is-style-dots {
  856. border-bottom: none;
  857. }
  858. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  859. hr.is-style-dots.has-background,
  860. hr.is-style-dots.has-text-color {
  861. background-color: transparent !important;
  862. }
  863. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  864. hr.is-style-dots.has-background:before,
  865. hr.is-style-dots.has-text-color:before {
  866. color: currentColor !important;
  867. }
  868. .wp-block-separator.is-style-dots:before,
  869. hr.is-style-dots:before {
  870. color: #DDDDDD;
  871. }
  872. .has-background:not(.has-background-background-color) .wp-block-separator,
  873. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  874. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  875. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  876. hr,
  877. [class*="background-color"]:not(.has-background-background-color)
  878. hr,
  879. [style*="background-color"]:not(.has-background-background-color)
  880. hr,
  881. .wp-block-cover[style*="background-image"]
  882. hr {
  883. border-color: currentColor;
  884. }
  885. table th,
  886. .wp-block-table th {
  887. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  888. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  889. }
  890. table td,
  891. table th,
  892. .wp-block-table td,
  893. .wp-block-table th {
  894. padding: calc( 0.5 * 16px);
  895. }
  896. table.is-style-stripes tbody tr:nth-child(odd),
  897. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  898. background-color: #FAFAFA;
  899. color: #222222;
  900. }
  901. /**
  902. * Editor Post Title
  903. * - Needs a special styles
  904. */
  905. .editor-post-title__block .editor-post-title__input {
  906. color: #222222;
  907. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  908. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  909. font-weight: bold;
  910. font-size: 2.0736em;
  911. letter-spacing: normal;
  912. line-height: 1.125;
  913. }
  914. .wp-block .has-primary-color,
  915. .has-primary-color {
  916. color: #CA2017;
  917. }
  918. .wp-block .has-secondary-color,
  919. .has-secondary-color {
  920. color: #007FDB;
  921. }
  922. .wp-block .has-foreground-color,
  923. .has-foreground-color {
  924. color: #222222;
  925. }
  926. .wp-block .has-foreground-light-color,
  927. .has-foreground-light-color {
  928. color: #666666;
  929. }
  930. .wp-block .has-foreground-dark-color,
  931. .has-foreground-dark-color {
  932. color: #111111;
  933. }
  934. .wp-block .has-background-light-color,
  935. .has-background-light-color {
  936. color: #FAFAFA;
  937. }
  938. .wp-block .has-background-dark-color,
  939. .has-background-dark-color {
  940. color: #DDDDDD;
  941. }
  942. .wp-block .has-background-color,
  943. .has-background-color {
  944. color: white;
  945. }
  946. .has-background:not(.has-background-background-color) a:not(.wp-block-button__link),
  947. .has-background p:not(.has-text-color),
  948. .has-background h1:not(.has-text-color),
  949. .has-background h2:not(.has-text-color),
  950. .has-background h3:not(.has-text-color),
  951. .has-background h4:not(.has-text-color),
  952. .has-background h5:not(.has-text-color),
  953. .has-background h6:not(.has-text-color) {
  954. color: currentColor;
  955. }
  956. .wp-block .has-primary-background-color,
  957. .has-primary-background-color {
  958. background-color: #CA2017;
  959. color: white;
  960. }
  961. .wp-block .has-secondary-background-color,
  962. .has-secondary-background-color {
  963. background-color: #007FDB;
  964. color: white;
  965. }
  966. .wp-block .has-foreground-background-color,
  967. .has-foreground-background-color {
  968. background-color: #222222;
  969. color: white;
  970. }
  971. .wp-block .has-foreground-light-background-color,
  972. .has-foreground-light-background-color {
  973. background-color: #666666;
  974. color: white;
  975. }
  976. .wp-block .has-foreground-dark-background-color,
  977. .has-foreground-dark-background-color {
  978. background-color: #111111;
  979. color: white;
  980. }
  981. .wp-block .has-background-light-background-color,
  982. .has-background-light-background-color {
  983. background-color: #FAFAFA;
  984. color: #222222;
  985. }
  986. .wp-block .has-background-dark-background-color,
  987. .has-background-dark-background-color {
  988. background-color: #DDDDDD;
  989. color: #222222;
  990. }
  991. .wp-block .has-background-background-color,
  992. .has-background-background-color {
  993. background-color: white;
  994. color: #222222;
  995. }
  996. .is-small-text,
  997. .has-small-font-size {
  998. font-size: 0.83333em;
  999. }
  1000. .is-regular-text,
  1001. .has-regular-font-size,
  1002. .has-normal-font-size,
  1003. .has-medium-font-size {
  1004. font-size: 1.2em;
  1005. }
  1006. .is-large-text,
  1007. .has-large-font-size {
  1008. font-size: 1.44em;
  1009. line-height: 1.125;
  1010. }
  1011. .is-larger-text,
  1012. .has-larger-font-size,
  1013. .has-huge-font-size {
  1014. font-size: 1.728em;
  1015. line-height: 1.125;
  1016. }
  1017. .has-drop-cap:not(:focus)::first-letter {
  1018. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1019. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1020. font-size: calc(2 * 2.48832em);
  1021. font-weight: bold;
  1022. }
  1023. /**
  1024. * Spacing Overrides
  1025. */
  1026. [data-block] {
  1027. margin-top: 21.312px;
  1028. margin-bottom: 21.312px;
  1029. }
  1030. @media only screen and (min-width: 560px) {
  1031. [data-block] {
  1032. margin-top: 32px;
  1033. margin-bottom: 32px;
  1034. }
  1035. }
  1036. /*
  1037. * Margins
  1038. */
  1039. .margin-top-none {
  1040. margin-top: 0 !important;
  1041. }
  1042. .margin-top-half {
  1043. margin-top: 16px !important;
  1044. }
  1045. .margin-top-default {
  1046. margin-top: 32px !important;
  1047. }
  1048. .margin-right-none {
  1049. /*rtl:ignore*/
  1050. margin-right: 0 !important;
  1051. }
  1052. .margin-right-half {
  1053. /*rtl:ignore*/
  1054. margin-right: 16px !important;
  1055. }
  1056. .margin-right-default {
  1057. /*rtl:ignore*/
  1058. margin-right: 32px !important;
  1059. }
  1060. .margin-bottom-none {
  1061. margin-bottom: 0 !important;
  1062. }
  1063. .margin-bottom-half {
  1064. margin-bottom: 16px !important;
  1065. }
  1066. .margin-bottom-default {
  1067. margin-bottom: 32px !important;
  1068. }
  1069. .margin-left-none {
  1070. /*rtl:ignore*/
  1071. margin-left: 0 !important;
  1072. }
  1073. .margin-left-half {
  1074. /*rtl:ignore*/
  1075. margin-left: 16px !important;
  1076. }
  1077. .margin-left-default {
  1078. /*rtl:ignore*/
  1079. margin-left: 32px !important;
  1080. }
  1081. /*
  1082. * Padding
  1083. */
  1084. .padding-top-none {
  1085. padding-top: 0 !important;
  1086. }
  1087. .padding-top-half {
  1088. padding-top: 16px !important;
  1089. }
  1090. .padding-top-default {
  1091. padding-top: 32px !important;
  1092. }
  1093. .padding-right-none {
  1094. /*rtl:ignore*/
  1095. padding-right: 0 !important;
  1096. }
  1097. .padding-right-half {
  1098. /*rtl:ignore*/
  1099. padding-right: 16px !important;
  1100. }
  1101. .padding-right-default {
  1102. /*rtl:ignore*/
  1103. padding-right: 32px !important;
  1104. }
  1105. .padding-bottom-none {
  1106. padding-bottom: 0 !important;
  1107. }
  1108. .padding-bottom-half {
  1109. padding-bottom: 16px !important;
  1110. }
  1111. .padding-bottom-default {
  1112. padding-bottom: 32px !important;
  1113. }
  1114. .padding-left-none {
  1115. /*rtl:ignore*/
  1116. padding-left: 0 !important;
  1117. }
  1118. .padding-left-half {
  1119. /*rtl:ignore*/
  1120. padding-left: 16px !important;
  1121. }
  1122. .padding-left-default {
  1123. /*rtl:ignore*/
  1124. padding-left: 32px !important;
  1125. }
  1126. .wp-block-a8c-blog-posts .entry-title {
  1127. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1128. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1129. }
  1130. .wp-block-a8c-blog-posts .entry-title a {
  1131. color: inherit;
  1132. }
  1133. .wp-block-a8c-blog-posts .entry-title a:active, .wp-block-a8c-blog-posts .entry-title a:focus, .wp-block-a8c-blog-posts .entry-title a:hover {
  1134. text-decoration: none;
  1135. color: #CA2017;
  1136. }
  1137. .wp-block-a8c-blog-posts .cat-links,
  1138. .wp-block-a8c-blog-posts .entry-meta {
  1139. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1140. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1141. }
  1142. .wp-block-a8c-blog-posts .cat-links a,
  1143. .wp-block-a8c-blog-posts .more-link,
  1144. .wp-block-a8c-blog-posts .entry-meta a {
  1145. text-decoration: none;
  1146. }
  1147. .wp-block-a8c-blog-posts .cat-links a:active, .wp-block-a8c-blog-posts .cat-links a:focus, .wp-block-a8c-blog-posts .cat-links a:hover,
  1148. .wp-block-a8c-blog-posts .more-link:active,
  1149. .wp-block-a8c-blog-posts .more-link:focus,
  1150. .wp-block-a8c-blog-posts .more-link:hover,
  1151. .wp-block-a8c-blog-posts .entry-meta a:active,
  1152. .wp-block-a8c-blog-posts .entry-meta a:focus,
  1153. .wp-block-a8c-blog-posts .entry-meta a:hover {
  1154. text-decoration: underline;
  1155. }
  1156. .wp-block-a8c-blog-posts.image-alignbehind article .entry-title a:active, .wp-block-a8c-blog-posts.image-alignbehind article .entry-title a:focus, .wp-block-a8c-blog-posts.image-alignbehind article .entry-title a:hover {
  1157. text-decoration: underline;
  1158. }
  1159. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1160. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active,
  1161. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus,
  1162. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1163. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:active,
  1164. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:focus,
  1165. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover {
  1166. text-decoration: underline;
  1167. }
  1168. .wp-block-a8c-blog-posts + .button {
  1169. font-size: 1em;
  1170. }