style-editor.css 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352
  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: #FFFFFF;
  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-headings, -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-base, 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-base, 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: "→" /*rtl:"←"*/;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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: #FFFFFF;
  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-headings, -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-headings, -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[style*="background-color"]:not(.has-background-background-color) a {
  718. color: currentColor;
  719. }
  720. .a8c-posts-list {
  721. padding-left: 0;
  722. }
  723. p.has-background {
  724. padding: 16px 16px;
  725. }
  726. p.has-background:not(.has-background-background-color) a {
  727. color: currentColor;
  728. }
  729. .wp-block-pullquote {
  730. border-top-color: #DDDDDD;
  731. border-top-width: 4px;
  732. border-bottom-color: #DDDDDD;
  733. border-bottom-width: 4px;
  734. color: #222222;
  735. }
  736. .wp-block-pullquote blockquote p {
  737. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  738. font-family: var(--font-base, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  739. font-size: 1.44rem;
  740. letter-spacing: normal;
  741. line-height: 1.125;
  742. }
  743. .wp-block-pullquote.is-style-solid-color blockquote p {
  744. font-size: 1.44rem;
  745. }
  746. .wp-block-pullquote a {
  747. color: currentColor;
  748. }
  749. .wp-block-pullquote .wp-block-pullquote__citation,
  750. .wp-block-pullquote cite,
  751. .wp-block-pullquote footer {
  752. color: #666666;
  753. font-size: 0.83333rem;
  754. letter-spacing: normal;
  755. }
  756. .wp-block-pullquote blockquote {
  757. padding-left: 0;
  758. }
  759. .wp-block-pullquote.is-style-solid-color {
  760. color: #FFFFFF;
  761. }
  762. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  763. .wp-block-pullquote.is-style-solid-color cite,
  764. .wp-block-pullquote.is-style-solid-color footer {
  765. color: currentColor;
  766. }
  767. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  768. background-color: #CA2017;
  769. }
  770. .wp-block-quote {
  771. border-left-color: #CA2017;
  772. padding-left: 16px;
  773. }
  774. .wp-block-quote p {
  775. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  776. font-family: var(--font-base, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  777. font-size: 1.44em;
  778. letter-spacing: normal;
  779. }
  780. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  781. border: none;
  782. padding: 0;
  783. }
  784. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  785. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  786. font-family: var(--font-base, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  787. font-size: 1.728em;
  788. letter-spacing: normal;
  789. line-height: 1.125;
  790. }
  791. .has-background:not(.has-background-background-color) .wp-block-quote,
  792. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  793. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  794. .wp-block-cover[style*="background-image"] .wp-block-quote {
  795. border-color: currentColor;
  796. }
  797. .wp-block-quote .wp-block-quote__citation {
  798. color: #666666;
  799. font-size: 0.83333em;
  800. letter-spacing: normal;
  801. }
  802. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  803. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  804. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  805. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  806. color: currentColor;
  807. }
  808. .wp-block-separator,
  809. hr {
  810. border-bottom: 2px solid #DDDDDD;
  811. clear: both;
  812. }
  813. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  814. hr[style*="text-align:right"],
  815. hr[style*="text-align: right"] {
  816. border-right-color: #DDDDDD;
  817. }
  818. .wp-block-separator.is-style-wide,
  819. hr.is-style-wide {
  820. border-bottom-width: 2px;
  821. }
  822. .wp-block-separator.is-style-dots,
  823. hr.is-style-dots {
  824. border-bottom: none;
  825. }
  826. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  827. hr.is-style-dots.has-background,
  828. hr.is-style-dots.has-text-color {
  829. background-color: transparent !important;
  830. }
  831. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  832. hr.is-style-dots.has-background:before,
  833. hr.is-style-dots.has-text-color:before {
  834. color: currentColor !important;
  835. }
  836. .wp-block-separator.is-style-dots:before,
  837. hr.is-style-dots:before {
  838. color: #DDDDDD;
  839. }
  840. .has-background:not(.has-background-background-color) .wp-block-separator,
  841. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  842. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  843. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  844. hr,
  845. [class*="background-color"]:not(.has-background-background-color)
  846. hr,
  847. [style*="background-color"]:not(.has-background-background-color)
  848. hr,
  849. .wp-block-cover[style*="background-image"]
  850. hr {
  851. border-color: currentColor;
  852. }
  853. table th,
  854. .wp-block-table th {
  855. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  856. font-family: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  857. }
  858. table td,
  859. table th,
  860. .wp-block-table td,
  861. .wp-block-table th {
  862. padding: calc( 0.5 * 16px);
  863. }
  864. table.is-style-stripes tbody tr:nth-child(odd),
  865. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  866. background-color: #FAFAFA;
  867. color: #222222;
  868. }
  869. pre.wp-block-verse {
  870. font-family: monospace, monospace;
  871. color: #222222;
  872. }
  873. /**
  874. * Editor Post Title
  875. * - Needs a special styles
  876. */
  877. .editor-post-title__block .editor-post-title__input {
  878. color: #222222;
  879. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  880. font-family: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  881. font-weight: bold;
  882. font-size: 2.0736em;
  883. letter-spacing: normal;
  884. line-height: 1.125;
  885. }
  886. .wp-block .has-primary-color,
  887. .has-primary-color {
  888. color: #CA2017;
  889. }
  890. .wp-block .has-secondary-color,
  891. .has-secondary-color {
  892. color: #007FDB;
  893. }
  894. .wp-block .has-foreground-color,
  895. .has-foreground-color {
  896. color: #222222;
  897. }
  898. .wp-block .has-foreground-light-color,
  899. .has-foreground-light-color {
  900. color: #666666;
  901. }
  902. .wp-block .has-foreground-dark-color,
  903. .has-foreground-dark-color {
  904. color: #111111;
  905. }
  906. .wp-block .has-background-light-color,
  907. .has-background-light-color {
  908. color: #FAFAFA;
  909. }
  910. .wp-block .has-background-dark-color,
  911. .has-background-dark-color {
  912. color: #DDDDDD;
  913. }
  914. .wp-block .has-background-color,
  915. .has-background-color {
  916. color: #FFFFFF;
  917. }
  918. .has-background:not(.has-background-background-color) a:not(.wp-block-button__link),
  919. .has-background p:not(.has-text-color),
  920. .has-background h1:not(.has-text-color),
  921. .has-background h2:not(.has-text-color),
  922. .has-background h3:not(.has-text-color),
  923. .has-background h4:not(.has-text-color),
  924. .has-background h5:not(.has-text-color),
  925. .has-background h6:not(.has-text-color) {
  926. color: currentColor;
  927. }
  928. .wp-block .has-primary-background-color,
  929. .has-primary-background-color {
  930. background-color: #CA2017;
  931. color: #FFFFFF;
  932. }
  933. .wp-block .has-secondary-background-color,
  934. .has-secondary-background-color {
  935. background-color: #007FDB;
  936. color: #FFFFFF;
  937. }
  938. .wp-block .has-foreground-background-color,
  939. .has-foreground-background-color {
  940. background-color: #222222;
  941. color: #FFFFFF;
  942. }
  943. .wp-block .has-foreground-light-background-color,
  944. .has-foreground-light-background-color {
  945. background-color: #666666;
  946. color: #FFFFFF;
  947. }
  948. .wp-block .has-foreground-dark-background-color,
  949. .has-foreground-dark-background-color {
  950. background-color: #111111;
  951. color: #FFFFFF;
  952. }
  953. .wp-block .has-background-light-background-color,
  954. .has-background-light-background-color {
  955. background-color: #FAFAFA;
  956. color: #222222;
  957. }
  958. .wp-block .has-background-dark-background-color,
  959. .has-background-dark-background-color {
  960. background-color: #DDDDDD;
  961. color: #222222;
  962. }
  963. .wp-block .has-background-background-color,
  964. .has-background-background-color {
  965. background-color: #FFFFFF;
  966. color: #222222;
  967. }
  968. .is-small-text,
  969. .has-small-font-size {
  970. font-size: 0.83333em;
  971. }
  972. .is-regular-text,
  973. .has-regular-font-size,
  974. .has-normal-font-size,
  975. .has-medium-font-size {
  976. font-size: 1.2em;
  977. }
  978. .is-large-text,
  979. .has-large-font-size {
  980. font-size: 1.44em;
  981. line-height: 1.125;
  982. }
  983. .is-larger-text,
  984. .has-larger-font-size,
  985. .has-huge-font-size {
  986. font-size: 1.728em;
  987. line-height: 1.125;
  988. }
  989. .has-drop-cap:not(:focus)::first-letter {
  990. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  991. font-family: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  992. font-size: calc(2 * 2.48832em);
  993. font-weight: bold;
  994. }
  995. /**
  996. * Spacing Overrides
  997. */
  998. [data-block] {
  999. margin-top: 21.312px;
  1000. margin-bottom: 21.312px;
  1001. }
  1002. @media only screen and (min-width: 560px) {
  1003. [data-block] {
  1004. margin-top: 32px;
  1005. margin-bottom: 32px;
  1006. }
  1007. }
  1008. /*
  1009. * Margins
  1010. */
  1011. .margin-top-none {
  1012. margin-top: 0 !important;
  1013. }
  1014. .margin-top-half {
  1015. margin-top: 16px !important;
  1016. }
  1017. .margin-top-default {
  1018. margin-top: 32px !important;
  1019. }
  1020. .margin-right-none {
  1021. /*rtl:ignore*/
  1022. margin-right: 0 !important;
  1023. }
  1024. .margin-right-half {
  1025. /*rtl:ignore*/
  1026. margin-right: 16px !important;
  1027. }
  1028. .margin-right-default {
  1029. /*rtl:ignore*/
  1030. margin-right: 32px !important;
  1031. }
  1032. .margin-bottom-none {
  1033. margin-bottom: 0 !important;
  1034. }
  1035. .margin-bottom-half {
  1036. margin-bottom: 16px !important;
  1037. }
  1038. .margin-bottom-default {
  1039. margin-bottom: 32px !important;
  1040. }
  1041. .margin-left-none {
  1042. /*rtl:ignore*/
  1043. margin-left: 0 !important;
  1044. }
  1045. .margin-left-half {
  1046. /*rtl:ignore*/
  1047. margin-left: 16px !important;
  1048. }
  1049. .margin-left-default {
  1050. /*rtl:ignore*/
  1051. margin-left: 32px !important;
  1052. }
  1053. /*
  1054. * Padding
  1055. */
  1056. .padding-top-none {
  1057. padding-top: 0 !important;
  1058. }
  1059. .padding-top-half {
  1060. padding-top: 16px !important;
  1061. }
  1062. .padding-top-default {
  1063. padding-top: 32px !important;
  1064. }
  1065. .padding-right-none {
  1066. /*rtl:ignore*/
  1067. padding-right: 0 !important;
  1068. }
  1069. .padding-right-half {
  1070. /*rtl:ignore*/
  1071. padding-right: 16px !important;
  1072. }
  1073. .padding-right-default {
  1074. /*rtl:ignore*/
  1075. padding-right: 32px !important;
  1076. }
  1077. .padding-bottom-none {
  1078. padding-bottom: 0 !important;
  1079. }
  1080. .padding-bottom-half {
  1081. padding-bottom: 16px !important;
  1082. }
  1083. .padding-bottom-default {
  1084. padding-bottom: 32px !important;
  1085. }
  1086. .padding-left-none {
  1087. /*rtl:ignore*/
  1088. padding-left: 0 !important;
  1089. }
  1090. .padding-left-half {
  1091. /*rtl:ignore*/
  1092. padding-left: 16px !important;
  1093. }
  1094. .padding-left-default {
  1095. /*rtl:ignore*/
  1096. padding-left: 32px !important;
  1097. }
  1098. /**
  1099. * Vendors
  1100. * - Styles for 3rd party plugins and WP extensions
  1101. */
  1102. /**
  1103. * Vendors
  1104. * - 3rd-party compatibility styles
  1105. */
  1106. /**
  1107. * Set Jetpack form text color
  1108. */
  1109. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1110. color: black;
  1111. }
  1112. .wp-block-a8c-blog-posts .entry-title {
  1113. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1114. font-family: var(--font-base, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1115. }
  1116. .wp-block-a8c-blog-posts .entry-title a {
  1117. color: inherit;
  1118. }
  1119. .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 {
  1120. text-decoration: none;
  1121. color: #CA2017;
  1122. }
  1123. .wp-block-a8c-blog-posts .cat-links,
  1124. .wp-block-a8c-blog-posts .entry-meta {
  1125. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1126. font-family: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1127. }
  1128. .wp-block-a8c-blog-posts .cat-links a,
  1129. .wp-block-a8c-blog-posts .more-link,
  1130. .wp-block-a8c-blog-posts .entry-meta a {
  1131. text-decoration: none;
  1132. }
  1133. .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,
  1134. .wp-block-a8c-blog-posts .more-link:active,
  1135. .wp-block-a8c-blog-posts .more-link:focus,
  1136. .wp-block-a8c-blog-posts .more-link:hover,
  1137. .wp-block-a8c-blog-posts .entry-meta a:active,
  1138. .wp-block-a8c-blog-posts .entry-meta a:focus,
  1139. .wp-block-a8c-blog-posts .entry-meta a:hover {
  1140. text-decoration: underline;
  1141. }
  1142. .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 {
  1143. text-decoration: underline;
  1144. }
  1145. .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,
  1146. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active,
  1147. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus,
  1148. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1149. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:active,
  1150. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:focus,
  1151. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover {
  1152. text-decoration: underline;
  1153. }
  1154. .wp-block-a8c-blog-posts + .button {
  1155. font-size: 1em;
  1156. }