style-rtl.css 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Redhill
  4. Theme URI: https://github.com/Automattic/redhill
  5. Author: Automattic
  6. Author URI: https://automattic.com/
  7. Description: A simple theme with clean typography, created with entrepreneurs and small business owners in mind.
  8. Requires at least: WordPress 4.9.6
  9. Version: 1.3.1
  10. License: GNU General Public License v2 or later
  11. License URI: LICENSE
  12. Template: varia
  13. Text Domain: redhill
  14. Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-globals-styles
  15. This theme, like WordPress, is licensed under the GPL.
  16. Use it to make something cool, have fun, and share what you've learned with others.
  17. Varia is based on Underscores https://underscores.me/, (C) 2012-2019 Automattic, Inc.
  18. Underscores is distributed under the terms of the GNU GPL v2 or later.
  19. Normalizing styles have been helped along thanks to the fine work of
  20. Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
  21. */
  22. /**
  23. * Abstracts
  24. * - Mixins, variables and functions
  25. */
  26. /**
  27. * Abstracts
  28. * - Mixins, variables and functions
  29. */
  30. /* Sass Functions go here */
  31. /**
  32. * Map deep get
  33. * @author Hugo Giraudel
  34. * @access public
  35. * @param {Map} $map - Map
  36. * @param {Arglist} $keys - Key chain
  37. * @return {*} - Desired value
  38. *
  39. * Example:
  40. * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
  41. */
  42. /**
  43. * Deep set function to set a value in nested maps
  44. * @author Hugo Giraudel
  45. * @access public
  46. * @param {Map} $map - Map
  47. * @param {List} $keys - Key chaine
  48. * @param {*} $value - Value to assign
  49. * @return {Map}
  50. *
  51. * Example:
  52. * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
  53. */
  54. /**
  55. * jQuery-style extend function
  56. * - Child themes can use this function to `reset` the values in
  57. * config maps without editing the `master` Sass files.
  58. * - src: https://www.sitepoint.com/extra-map-functions-sass/
  59. * - About `map-merge()`:
  60. * - - only takes 2 arguments
  61. * - - is not recursive
  62. * @param {Map} $map - first map
  63. * @param {ArgList} $maps - other maps
  64. * @param {Bool} $deep - recursive mode
  65. * @return {Map}
  66. *
  67. * Examples:
  68. $grid-configuration-default: (
  69. 'columns': 12,
  70. 'layouts': (
  71. 'small': 800px,
  72. 'medium': 1000px,
  73. 'large': 1200px,
  74. ),
  75. );
  76. $grid-configuration-custom: (
  77. 'layouts': (
  78. 'large': 1300px,
  79. 'huge': 1500px
  80. ),
  81. );
  82. $grid-configuration-user: (
  83. 'direction': 'ltr',
  84. 'columns': 16,
  85. 'layouts': (
  86. 'large': 1300px,
  87. 'huge': 1500px
  88. ),
  89. );
  90. // $deep: false
  91. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
  92. // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
  93. // $deep: true
  94. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
  95. // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
  96. */
  97. /**
  98. * Button
  99. */
  100. /**
  101. * Cover
  102. */
  103. /**
  104. * Heading
  105. */
  106. /**
  107. * List
  108. */
  109. /**
  110. * Pullquote
  111. */
  112. /**
  113. * Quote
  114. */
  115. /**
  116. * Separator
  117. */
  118. /**
  119. * Responsive breakpoints
  120. * - breakpoints values are defined in _config-global.scss
  121. */
  122. /**
  123. * Align wide widths
  124. * - Sets .alignwide widths
  125. */
  126. /**
  127. * Crop Text Boundry
  128. * - Sets a fixed-width on content within alignwide and alignfull blocks
  129. */
  130. /**
  131. * Add font-family using CSS variables.
  132. * It also adds the proper fallback for browsers without support.
  133. */
  134. /**
  135. * Child Theme Deep
  136. */
  137. /**
  138. * Redefine Sass map values for child theme output.
  139. * - See: style-child-theme.scss
  140. */
  141. /**
  142. * Global
  143. */
  144. /**
  145. * Elements
  146. */
  147. /**
  148. * Button
  149. */
  150. /**
  151. * Cover
  152. */
  153. /**
  154. * Heading
  155. */
  156. /**
  157. * List
  158. */
  159. /**
  160. * Pullquote
  161. */
  162. /**
  163. * Quote
  164. */
  165. /**
  166. * Separator
  167. */
  168. /**
  169. * Header
  170. */
  171. /**
  172. * Footer
  173. */
  174. /**
  175. * Base
  176. * - Reset the browser
  177. */
  178. /**
  179. * Base
  180. * - Reset the browser
  181. */
  182. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  183. /* Document
  184. ========================================================================== */
  185. /**
  186. * 1. Correct the line height in all browsers.
  187. * 2. Prevent adjustments of font size after orientation changes in iOS.
  188. */
  189. html {
  190. line-height: 1.15;
  191. /* 1 */
  192. -webkit-text-size-adjust: 100%;
  193. /* 2 */
  194. }
  195. /* Sections
  196. ========================================================================== */
  197. /**
  198. * Remove the margin in all browsers.
  199. */
  200. body {
  201. margin: 0;
  202. }
  203. /**
  204. * Render the `main` element consistently in IE.
  205. */
  206. main {
  207. display: block;
  208. }
  209. /**
  210. * Correct the font size and margin on `h1` elements within `section` and
  211. * `article` contexts in Chrome, Firefox, and Safari.
  212. */
  213. h1 {
  214. font-size: 2em;
  215. margin: 0.67em 0;
  216. }
  217. /* Grouping content
  218. ========================================================================== */
  219. /**
  220. * 1. Add the correct box sizing in Firefox.
  221. * 2. Show the overflow in Edge and IE.
  222. */
  223. hr {
  224. box-sizing: content-box;
  225. /* 1 */
  226. height: 0;
  227. /* 1 */
  228. overflow: visible;
  229. /* 2 */
  230. }
  231. /**
  232. * 1. Correct the inheritance and scaling of font size in all browsers.
  233. * 2. Correct the odd `em` font sizing in all browsers.
  234. */
  235. pre {
  236. font-family: monospace, monospace;
  237. /* 1 */
  238. font-size: 1em;
  239. /* 2 */
  240. overflow: scroll;
  241. }
  242. /* Text-level semantics
  243. ========================================================================== */
  244. /**
  245. * Remove the gray background on active links in IE 10.
  246. */
  247. a {
  248. background-color: transparent;
  249. }
  250. /**
  251. * 1. Remove the bottom border in Chrome 57-
  252. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  253. */
  254. abbr[title] {
  255. border-bottom: none;
  256. /* 1 */
  257. text-decoration: underline;
  258. /* 2 */
  259. text-decoration: underline dotted;
  260. /* 2 */
  261. }
  262. /**
  263. * Add the correct font weight in Chrome, Edge, and Safari.
  264. */
  265. b,
  266. strong {
  267. font-weight: bolder;
  268. }
  269. /**
  270. * 1. Correct the inheritance and scaling of font size in all browsers.
  271. * 2. Correct the odd `em` font sizing in all browsers.
  272. */
  273. code,
  274. kbd,
  275. samp {
  276. font-family: monospace, monospace;
  277. /* 1 */
  278. font-size: 1em;
  279. /* 2 */
  280. }
  281. /**
  282. * Add the correct font size in all browsers.
  283. */
  284. small {
  285. font-size: 80%;
  286. }
  287. /**
  288. * Prevent `sub` and `sup` elements from affecting the line height in
  289. * all browsers.
  290. */
  291. sub,
  292. sup {
  293. font-size: 75%;
  294. line-height: 0;
  295. position: relative;
  296. vertical-align: baseline;
  297. }
  298. sub {
  299. bottom: -0.25em;
  300. }
  301. sup {
  302. top: -0.5em;
  303. }
  304. /* Embedded content
  305. ========================================================================== */
  306. /**
  307. * Remove the border on images inside links in IE 10.
  308. */
  309. img {
  310. border-style: none;
  311. }
  312. /* Forms
  313. ========================================================================== */
  314. /**
  315. * 1. Change the font styles in all browsers.
  316. * 2. Remove the margin in Firefox and Safari.
  317. */
  318. button,
  319. input,
  320. optgroup,
  321. select,
  322. textarea {
  323. font-family: inherit;
  324. /* 1 */
  325. font-size: 100%;
  326. /* 1 */
  327. line-height: 1.15;
  328. /* 1 */
  329. margin: 0;
  330. /* 2 */
  331. }
  332. /**
  333. * Show the overflow in IE.
  334. * 1. Show the overflow in Edge.
  335. */
  336. button,
  337. input {
  338. /* 1 */
  339. overflow: visible;
  340. }
  341. /**
  342. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  343. * 1. Remove the inheritance of text transform in Firefox.
  344. */
  345. button,
  346. select {
  347. /* 1 */
  348. text-transform: none;
  349. }
  350. /**
  351. * Correct the inability to style clickable types in iOS and Safari.
  352. */
  353. button,
  354. [type="button"],
  355. [type="reset"],
  356. [type="submit"] {
  357. -webkit-appearance: button;
  358. }
  359. /**
  360. * Remove the inner border and padding in Firefox.
  361. */
  362. button::-moz-focus-inner,
  363. [type="button"]::-moz-focus-inner,
  364. [type="reset"]::-moz-focus-inner,
  365. [type="submit"]::-moz-focus-inner {
  366. border-style: none;
  367. padding: 0;
  368. }
  369. /**
  370. * Restore the focus styles unset by the previous rule.
  371. */
  372. button:-moz-focusring,
  373. [type="button"]:-moz-focusring,
  374. [type="reset"]:-moz-focusring,
  375. [type="submit"]:-moz-focusring {
  376. outline: 1px dotted ButtonText;
  377. }
  378. /**
  379. * Correct the padding in Firefox.
  380. */
  381. fieldset {
  382. padding: 0.35em 0.75em 0.625em;
  383. }
  384. /**
  385. * 1. Correct the text wrapping in Edge and IE.
  386. * 2. Correct the color inheritance from `fieldset` elements in IE.
  387. * 3. Remove the padding so developers are not caught out when they zero out
  388. * `fieldset` elements in all browsers.
  389. */
  390. legend {
  391. box-sizing: border-box;
  392. /* 1 */
  393. color: inherit;
  394. /* 2 */
  395. display: table;
  396. /* 1 */
  397. max-width: 100%;
  398. /* 1 */
  399. padding: 0;
  400. /* 3 */
  401. white-space: normal;
  402. /* 1 */
  403. }
  404. /**
  405. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  406. */
  407. progress {
  408. vertical-align: baseline;
  409. }
  410. /**
  411. * Remove the default vertical scrollbar in IE 10+.
  412. */
  413. textarea {
  414. overflow: auto;
  415. }
  416. /**
  417. * 1. Add the correct box sizing in IE 10.
  418. * 2. Remove the padding in IE 10.
  419. */
  420. [type="checkbox"],
  421. [type="radio"] {
  422. box-sizing: border-box;
  423. /* 1 */
  424. padding: 0;
  425. /* 2 */
  426. }
  427. /**
  428. * Correct the cursor style of increment and decrement buttons in Chrome.
  429. */
  430. [type="number"]::-webkit-inner-spin-button,
  431. [type="number"]::-webkit-outer-spin-button {
  432. height: auto;
  433. }
  434. /**
  435. * 1. Correct the odd appearance in Chrome and Safari.
  436. * 2. Correct the outline style in Safari.
  437. */
  438. [type="search"] {
  439. -webkit-appearance: textfield;
  440. /* 1 */
  441. outline-offset: -2px;
  442. /* 2 */
  443. }
  444. /**
  445. * Remove the inner padding in Chrome and Safari on macOS.
  446. */
  447. [type="search"]::-webkit-search-decoration {
  448. -webkit-appearance: none;
  449. }
  450. /**
  451. * 1. Correct the inability to style clickable types in iOS and Safari.
  452. * 2. Change font properties to `inherit` in Safari.
  453. */
  454. ::-webkit-file-upload-button {
  455. -webkit-appearance: button;
  456. /* 1 */
  457. font: inherit;
  458. /* 2 */
  459. }
  460. /* Interactive
  461. ========================================================================== */
  462. /*
  463. * Add the correct display in Edge, IE 10+, and Firefox.
  464. */
  465. details {
  466. display: block;
  467. }
  468. /*
  469. * Add the correct display in all browsers.
  470. */
  471. summary {
  472. display: list-item;
  473. }
  474. /* Misc
  475. ========================================================================== */
  476. /**
  477. * Add the correct display in IE 10+.
  478. */
  479. template {
  480. display: none;
  481. }
  482. /**
  483. * Add the correct display in IE 10.
  484. */
  485. [hidden] {
  486. display: none;
  487. }
  488. /**
  489. * Reset specific elements to make them easier to style in other contexts.
  490. */
  491. html,
  492. body,
  493. p,
  494. ol,
  495. ul,
  496. li,
  497. dl,
  498. dt,
  499. dd,
  500. blockquote,
  501. figure,
  502. fieldset,
  503. form,
  504. legend,
  505. textarea,
  506. pre,
  507. iframe,
  508. hr,
  509. h1,
  510. h2,
  511. h3,
  512. h4,
  513. h5,
  514. h6 {
  515. padding: 0;
  516. margin: 0;
  517. -moz-osx-font-smoothing: grayscale;
  518. -webkit-font-smoothing: antialiased;
  519. }
  520. /**
  521. * Apply generic border-box to all elements.
  522. * See:
  523. * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  524. */
  525. /**
  526. * Apply border-box across the entire page.
  527. */
  528. html {
  529. box-sizing: border-box;
  530. }
  531. /**
  532. * Relax the definition a bit, to allow components to override it manually.
  533. */
  534. *, *::before, *::after {
  535. box-sizing: inherit;
  536. }
  537. /**
  538. * HTML resets
  539. */
  540. html {
  541. font-size: 16.66667px;
  542. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  543. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  544. line-height: 1.6;
  545. }
  546. @media only screen and (min-width: 560px) {
  547. html {
  548. font-size: 20px;
  549. }
  550. }
  551. body {
  552. font-size: 1rem;
  553. font-weight: normal;
  554. color: #222222;
  555. text-align: right;
  556. background-color: white;
  557. }
  558. /**
  559. * Links styles
  560. */
  561. a {
  562. color: #CA2017;
  563. }
  564. a:hover {
  565. color: #222222;
  566. }
  567. button,
  568. a {
  569. cursor: pointer;
  570. }
  571. /* Text meant only for screen readers. */
  572. .screen-reader-text {
  573. border: 0;
  574. clip: rect(1px, 1px, 1px, 1px);
  575. clip-path: inset(50%);
  576. height: 1px;
  577. margin: -1px;
  578. overflow: hidden;
  579. padding: 0;
  580. position: absolute !important;
  581. width: 1px;
  582. word-wrap: normal !important;
  583. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  584. }
  585. .screen-reader-text:focus {
  586. background-color: white;
  587. border-radius: 3px;
  588. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  589. clip: auto !important;
  590. clip-path: none;
  591. color: #222222;
  592. display: block;
  593. font-size: 1.2rem;
  594. font-weight: bold;
  595. height: auto;
  596. right: 5px;
  597. line-height: normal;
  598. padding: 15px 23px 14px;
  599. text-decoration: none;
  600. top: 5px;
  601. width: auto;
  602. z-index: 100000;
  603. /* Above WP toolbar. */
  604. }
  605. /* Do not show the outline on the skip link target. */
  606. #content[tabindex="-1"]:focus {
  607. outline: 0;
  608. }
  609. .clear:before,
  610. .clear:after,
  611. .entry-content:before,
  612. .entry-content:after,
  613. .comment-content:before,
  614. .comment-content:after,
  615. .site-header:before,
  616. .site-header:after,
  617. .site-content:before,
  618. .site-content:after,
  619. .site-footer:before,
  620. .site-footer:after {
  621. content: "";
  622. display: table;
  623. table-layout: fixed;
  624. }
  625. .clear:after,
  626. .entry-content:after,
  627. .comment-content:after,
  628. .site-header:after,
  629. .site-content:after,
  630. .site-footer:after {
  631. content: "";
  632. display: table;
  633. table-layout: fixed;
  634. }
  635. /**
  636. * Measure
  637. * - The width of a line of text, in characters, is known as its measure.
  638. */
  639. header *,
  640. main *,
  641. footer * {
  642. max-width: inherit;
  643. }
  644. html,
  645. body,
  646. div,
  647. header,
  648. nav,
  649. article,
  650. figure,
  651. hr,
  652. main,
  653. section,
  654. footer {
  655. max-width: none;
  656. }
  657. ::selection {
  658. background-color: #DDDDDD;
  659. }
  660. ::-moz-selection {
  661. background-color: #DDDDDD;
  662. }
  663. /**
  664. * Layout
  665. * - Structral and responsive styles
  666. */
  667. /**
  668. * Layout
  669. * - Structral and responsive styles
  670. */
  671. /**
  672. * Site Structure
  673. *
  674. * - Set vertical margins and responsive widths on
  675. * top-level wrappers and content wrappers
  676. * - `--global--width-content` is a responsive veriable
  677. * - See: globals/_global-width-responsive.scss
  678. */
  679. /**
  680. * Top Level Wrappers (header, main, footer)
  681. * - Set vertical padding and horizontal margins
  682. */
  683. .site-header,
  684. .site-main,
  685. .site-footer {
  686. padding: 16px 16px;
  687. margin-right: auto;
  688. margin-left: auto;
  689. }
  690. @media only screen and (min-width: 560px) {
  691. .site-header,
  692. .site-main,
  693. .site-footer {
  694. padding-top: 32px;
  695. padding-left: 0;
  696. padding-bottom: 32px;
  697. padding-right: 0;
  698. }
  699. }
  700. /**
  701. * Site-main children wrappers
  702. * - Add double vertical margins here for clearer heirarchy
  703. */
  704. .site-main > * {
  705. margin-top: calc(3 * 32px);
  706. margin-bottom: calc(3 * 32px);
  707. }
  708. .site-main > *:first-child {
  709. margin-top: 0;
  710. }
  711. .site-main > *:last-child {
  712. margin-bottom: 0;
  713. }
  714. /**
  715. * Major content sections (article, author-bio, pagination, comments, etc.)
  716. * - Set a maximum responsive content-width
  717. *
  718. * .responsive-max-width is a group selector replacing the following:
  719. * .site-header,
  720. * .site-main,
  721. * .site-footer
  722. * .entry-header,
  723. * .post-thumbnail,
  724. * .entry-content,
  725. * .entry-footer,
  726. * .author-bio,
  727. * .widget-area
  728. */
  729. /*
  730. * Block & non-gutenberg content wrappers
  731. * - Set margins
  732. */
  733. .entry-header,
  734. .post-thumbnail,
  735. .entry-content,
  736. .entry-footer,
  737. .author-bio,
  738. .widget-area {
  739. margin-top: 32px;
  740. margin-left: auto;
  741. margin-bottom: 32px;
  742. margin-right: auto;
  743. }
  744. /*
  745. * Block & non-gutenberg content wrapper children
  746. * - Sets spacing-vertical margin logic
  747. */
  748. .site-footer > *,
  749. .site-main > article > *,
  750. .site-main > .not-found > *,
  751. .entry-content > *,
  752. [class*="inner-container"] > *,
  753. .widget-area > * {
  754. margin-top: 21.312px;
  755. margin-bottom: 21.312px;
  756. }
  757. @media only screen and (min-width: 560px) {
  758. .site-footer > *,
  759. .site-main > article > *,
  760. .site-main > .not-found > *,
  761. .entry-content > *,
  762. [class*="inner-container"] > *,
  763. .widget-area > * {
  764. margin-top: 32px;
  765. margin-bottom: 32px;
  766. }
  767. }
  768. .site-footer > *:first-child,
  769. .site-main > article > *:first-child,
  770. .site-main > .not-found > *:first-child,
  771. .entry-content > *:first-child,
  772. [class*="inner-container"] > *:first-child,
  773. .widget-area > *:first-child {
  774. margin-top: 0;
  775. }
  776. .site-footer > *:last-child,
  777. .site-main > article > *:last-child,
  778. .site-main > .not-found > *:last-child,
  779. .entry-content > *:last-child,
  780. [class*="inner-container"] > *:last-child,
  781. .widget-area > *:last-child {
  782. margin-bottom: 0;
  783. }
  784. /*
  785. * Block & non-gutenberg content wrapper children
  786. * - Sets spacing-unit margins
  787. */
  788. .site-header > *,
  789. .entry-header > *,
  790. .post-thumbnail > *,
  791. .page-content > *,
  792. .comment-content > *,
  793. .author-bio > * {
  794. margin-top: 16px;
  795. margin-bottom: 16px;
  796. }
  797. .site-header > *:first-child,
  798. .entry-header > *:first-child,
  799. .post-thumbnail > *:first-child,
  800. .page-content > *:first-child,
  801. .comment-content > *:first-child,
  802. .author-bio > *:first-child {
  803. margin-top: 0;
  804. }
  805. .site-header > *:last-child,
  806. .entry-header > *:last-child,
  807. .post-thumbnail > *:last-child,
  808. .page-content > *:last-child,
  809. .comment-content > *:last-child,
  810. .author-bio > *:last-child {
  811. margin-bottom: 0;
  812. }
  813. /*
  814. * .entry-content children specific controls
  815. * - Adds special margin overrides for alignment utility classes
  816. */
  817. .entry-content > * {
  818. /* Reset alignleft and alignright margins after alignfull */
  819. }
  820. .entry-content > *.alignleft, .entry-content > *.alignright,
  821. .entry-content > *.alignleft:first-child + *,
  822. .entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
  823. margin-top: 0;
  824. }
  825. .entry-content > *:last-child, .entry-content > *.alignfull {
  826. margin-bottom: 0;
  827. }
  828. .entry-content > *.alignfull + .alignleft,
  829. .entry-content > *.alignfull + .alignright {
  830. margin-top: 32px;
  831. }
  832. /**
  833. * Elements
  834. * - Styles for basic HTML elemants
  835. */
  836. /**
  837. * Elements
  838. * - Styles for basic HTML elemants
  839. */
  840. blockquote {
  841. padding-right: 16px;
  842. }
  843. blockquote p {
  844. font-size: 1.44rem;
  845. letter-spacing: normal;
  846. line-height: 1.125;
  847. }
  848. blockquote cite,
  849. blockquote footer {
  850. font-size: 0.83333rem;
  851. letter-spacing: normal;
  852. }
  853. blockquote > * {
  854. margin-top: 16px;
  855. margin-bottom: 16px;
  856. }
  857. blockquote > *:first-child {
  858. margin-top: 0;
  859. }
  860. blockquote > *:last-child {
  861. margin-bottom: 0;
  862. }
  863. blockquote.alignleft, blockquote.alignright {
  864. padding-right: inherit;
  865. }
  866. blockquote.alignleft p, blockquote.alignright p {
  867. font-size: 1.2rem;
  868. max-width: inherit;
  869. width: inherit;
  870. }
  871. blockquote.alignleft cite,
  872. blockquote.alignleft footer, blockquote.alignright cite,
  873. blockquote.alignright footer {
  874. font-size: 0.69444rem;
  875. letter-spacing: normal;
  876. }
  877. input[type="text"],
  878. input[type="email"],
  879. input[type="url"],
  880. input[type="password"],
  881. input[type="search"],
  882. input[type="number"],
  883. input[type="tel"],
  884. input[type="range"],
  885. input[type="date"],
  886. input[type="month"],
  887. input[type="week"],
  888. input[type="time"],
  889. input[type="datetime"],
  890. input[type="datetime-local"],
  891. input[type="color"],
  892. textarea {
  893. color: #222222;
  894. border: 1px solid #DDDDDD;
  895. border-radius: 3px;
  896. padding: calc( 0.33 * 16px);
  897. }
  898. input[type="text"]:focus,
  899. input[type="email"]:focus,
  900. input[type="url"]:focus,
  901. input[type="password"]:focus,
  902. input[type="search"]:focus,
  903. input[type="number"]:focus,
  904. input[type="tel"]:focus,
  905. input[type="range"]:focus,
  906. input[type="date"]:focus,
  907. input[type="month"]:focus,
  908. input[type="week"]:focus,
  909. input[type="time"]:focus,
  910. input[type="datetime"]:focus,
  911. input[type="datetime-local"]:focus,
  912. input[type="color"]:focus,
  913. textarea:focus {
  914. color: #222222;
  915. border-color: #222222;
  916. }
  917. select {
  918. border: 1px solid #DDDDDD;
  919. }
  920. textarea {
  921. width: 100%;
  922. }
  923. input[type=checkbox] + label {
  924. display: inline;
  925. margin-right: 0.5em;
  926. margin-left: 2em;
  927. line-height: 1em;
  928. }
  929. figcaption {
  930. color: #666666;
  931. font-size: 0.69444rem;
  932. margin-top: calc(0.5 * 16px);
  933. margin-bottom: 16px;
  934. text-align: center;
  935. }
  936. .alignleft figcaption,
  937. .alignright figcaption {
  938. margin-bottom: 0;
  939. }
  940. /* WP Smiley */
  941. .page-content .wp-smiley,
  942. .entry-content .wp-smiley,
  943. .comment-content .wp-smiley {
  944. border: none;
  945. margin-bottom: 0;
  946. margin-top: 0;
  947. padding: 0;
  948. }
  949. /* Make sure embeds and iframes fit their containers. */
  950. embed,
  951. iframe,
  952. object {
  953. max-width: 100%;
  954. }
  955. /**
  956. * Blocks
  957. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  958. * spacing with CSS-variables overrides
  959. * - In the future the Block styles may get compiled to individual .css
  960. * files and conditionally loaded
  961. */
  962. /**
  963. * Blocks
  964. * - These styles replace key Gutenberg Block styles with font, color, and
  965. * spacing with CSS-variables overrides
  966. * - In the future the Block styles may get compiled to individual .css
  967. * files and conditionally loaded
  968. */
  969. .wp-block-audio {
  970. min-width: inherit;
  971. }
  972. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  973. min-width: 300px;
  974. }
  975. /**
  976. * Placeholder button style
  977. * - Since buttons appear in various blocks,
  978. * let’s use a placeholder to keep them all
  979. * in-sync
  980. */
  981. button,
  982. .button,
  983. input[type="submit"],
  984. .wp-block-button__link,
  985. .wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  986. line-height: 1;
  987. color: white;
  988. cursor: pointer;
  989. font-weight: bold;
  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-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  992. font-size: 1rem;
  993. background-color: #CA2017;
  994. border-radius: 4px;
  995. border-width: 0;
  996. padding: 16px 24px;
  997. }
  998. button:before,
  999. .button:before,
  1000. input[type="submit"]:before,
  1001. .wp-block-button__link:before,
  1002. .wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button:after,
  1003. .button:after,
  1004. input[type="submit"]:after,
  1005. .wp-block-button__link:after,
  1006. .wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1007. content: '';
  1008. display: block;
  1009. height: 0;
  1010. width: 0;
  1011. }
  1012. button:before,
  1013. .button:before,
  1014. input[type="submit"]:before,
  1015. .wp-block-button__link:before,
  1016. .wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  1017. margin-bottom: -0.12em;
  1018. }
  1019. button:after,
  1020. .button:after,
  1021. input[type="submit"]:after,
  1022. .wp-block-button__link:after,
  1023. .wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1024. margin-top: -0.11em;
  1025. }
  1026. button:hover,
  1027. .button:hover,
  1028. input:hover[type="submit"],
  1029. .wp-block-button__link:hover,
  1030. .wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
  1031. .button:focus,
  1032. input:focus[type="submit"],
  1033. .wp-block-button__link:focus,
  1034. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
  1035. .has-focus.button,
  1036. input.has-focus[type="submit"],
  1037. .has-focus.wp-block-button__link,
  1038. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  1039. color: white;
  1040. background-color: #222222;
  1041. }
  1042. /**
  1043. * Block Options
  1044. */
  1045. .wp-block-button.is-style-outline .wp-block-button__link {
  1046. color: #CA2017;
  1047. background: transparent;
  1048. border: 2px solid currentcolor;
  1049. padding: 14px 24px;
  1050. }
  1051. .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  1052. color: #222222;
  1053. }
  1054. .wp-block-button.is-style-squared .wp-block-button__link {
  1055. border-radius: 0;
  1056. }
  1057. .wp-block-code {
  1058. color: #222222;
  1059. font-size: 0.83333rem;
  1060. padding: 16px;
  1061. border-color: #DDDDDD;
  1062. }
  1063. .wp-block-code pre {
  1064. color: #222222;
  1065. }
  1066. .wp-block-columns {
  1067. /**
  1068. * Block Options
  1069. */
  1070. }
  1071. .wp-block-columns .wp-block-column > * {
  1072. margin-top: 21.312px;
  1073. margin-bottom: 21.312px;
  1074. }
  1075. @media only screen and (min-width: 560px) {
  1076. .wp-block-columns .wp-block-column > * {
  1077. margin-top: 32px;
  1078. margin-bottom: 32px;
  1079. }
  1080. }
  1081. .wp-block-columns .wp-block-column > *:first-child {
  1082. margin-top: 0;
  1083. }
  1084. .wp-block-columns .wp-block-column > *:last-child {
  1085. margin-bottom: 0;
  1086. }
  1087. .wp-block-columns .wp-block-column:last-child {
  1088. margin-bottom: 0;
  1089. }
  1090. .wp-block-columns .wp-block-column:not(:last-child) {
  1091. margin-bottom: 21.312px;
  1092. }
  1093. @media only screen and (min-width: 560px) {
  1094. .wp-block-columns .wp-block-column:not(:last-child) {
  1095. margin-bottom: 32px;
  1096. }
  1097. }
  1098. @media only screen and (min-width: 772px) {
  1099. .wp-block-columns .wp-block-column:not(:last-child) {
  1100. /* Resetting margins to match _block-container.scss */
  1101. margin-bottom: 0;
  1102. }
  1103. }
  1104. .wp-block-columns.alignfull {
  1105. padding-right: 16px;
  1106. padding-left: 16px;
  1107. }
  1108. .wp-block-columns.alignfull:not(:first-child) {
  1109. margin-top: 32px;
  1110. }
  1111. .wp-block-columns.alignfull:not(:last-child) {
  1112. margin-bottom: 32px;
  1113. }
  1114. .wp-block-cover,
  1115. .wp-block-cover-image {
  1116. background-color: #222222;
  1117. min-height: 576px;
  1118. margin: inherit;
  1119. /* default & custom background-color */
  1120. /* Treating H2 separately to account for legacy /core styles */
  1121. /**
  1122. * Block Options
  1123. */
  1124. }
  1125. .wp-block-cover .wp-block-cover__inner-container,
  1126. .wp-block-cover .wp-block-cover-image-text,
  1127. .wp-block-cover .wp-block-cover-text,
  1128. .wp-block-cover-image .wp-block-cover__inner-container,
  1129. .wp-block-cover-image .wp-block-cover-image-text,
  1130. .wp-block-cover-image .wp-block-cover-text {
  1131. color: currentColor;
  1132. margin-top: 32px;
  1133. margin-bottom: 32px;
  1134. }
  1135. .wp-block-cover .wp-block-cover__inner-container a,
  1136. .wp-block-cover .wp-block-cover-image-text a,
  1137. .wp-block-cover .wp-block-cover-text a,
  1138. .wp-block-cover-image .wp-block-cover__inner-container a,
  1139. .wp-block-cover-image .wp-block-cover-image-text a,
  1140. .wp-block-cover-image .wp-block-cover-text a {
  1141. color: currentColor;
  1142. }
  1143. .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
  1144. .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
  1145. .wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
  1146. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
  1147. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
  1148. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text {
  1149. color: white;
  1150. }
  1151. .wp-block-cover h2,
  1152. .wp-block-cover-image h2 {
  1153. font-size: 2.0736rem;
  1154. letter-spacing: normal;
  1155. line-height: 1.125;
  1156. max-width: inherit;
  1157. text-align: inherit;
  1158. padding: 0;
  1159. }
  1160. .wp-block-cover h2.has-text-align-left,
  1161. .wp-block-cover-image h2.has-text-align-left {
  1162. text-align: right;
  1163. }
  1164. .wp-block-cover h2.has-text-align-center,
  1165. .wp-block-cover-image h2.has-text-align-center {
  1166. text-align: center;
  1167. }
  1168. .wp-block-cover h2.has-text-align-right,
  1169. .wp-block-cover-image h2.has-text-align-right {
  1170. text-align: left;
  1171. }
  1172. .wp-block-cover .wp-block-cover__inner-container,
  1173. .wp-block-cover-image .wp-block-cover__inner-container {
  1174. width: calc(100% - 64px);
  1175. }
  1176. .wp-block-cover .wp-block-cover__inner-container > *,
  1177. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1178. margin-top: 21.312px;
  1179. margin-bottom: 21.312px;
  1180. }
  1181. @media only screen and (min-width: 560px) {
  1182. .wp-block-cover .wp-block-cover__inner-container > *,
  1183. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1184. margin-top: 32px;
  1185. margin-bottom: 32px;
  1186. }
  1187. }
  1188. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1189. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1190. margin-top: 0;
  1191. }
  1192. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1193. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1194. margin-bottom: 0;
  1195. }
  1196. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1197. .wp-block-cover-image.alignleft,
  1198. .wp-block-cover-image.alignright {
  1199. margin-top: 0;
  1200. }
  1201. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1202. .wp-block-cover-image.alignleft > *,
  1203. .wp-block-cover-image.alignright > * {
  1204. margin-top: calc(2 * 32px);
  1205. margin-bottom: calc(2 * 32px);
  1206. padding-right: 16px;
  1207. padding-left: 16px;
  1208. width: 100%;
  1209. }
  1210. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1211. .wp-block-cover-image.has-left-content,
  1212. .wp-block-cover-image.has-right-content {
  1213. justify-content: center;
  1214. }
  1215. .wp-block-file .wp-block-file__button {
  1216. background-color: #CA2017;
  1217. color: white;
  1218. font-size: 0.83333rem;
  1219. margin-right: 16px;
  1220. margin-left: 16px;
  1221. }
  1222. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1223. display: inherit;
  1224. }
  1225. .wp-block-file a.wp-block-file__button:active,
  1226. .wp-block-file a.wp-block-file__button:focus,
  1227. .wp-block-file a.wp-block-file__button:hover,
  1228. .wp-block-file a.wp-block-file__button:visited {
  1229. color: white;
  1230. opacity: .85;
  1231. }
  1232. .wp-block-gallery {
  1233. margin: 0;
  1234. }
  1235. .wp-block-gallery .blocks-gallery-image figcaption,
  1236. .wp-block-gallery .blocks-gallery-item figcaption {
  1237. margin: 0;
  1238. color: white;
  1239. font-size: 0.69444rem;
  1240. }
  1241. .wp-block-gallery .blocks-gallery-image,
  1242. .wp-block-gallery .blocks-gallery-item {
  1243. width: calc( (100% - 16px) / 2);
  1244. }
  1245. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1246. max-width: 50%;
  1247. }
  1248. .wp-block-group .wp-block-group__inner-container {
  1249. margin-right: auto;
  1250. margin-left: auto;
  1251. }
  1252. .wp-block-group .wp-block-group__inner-container > * {
  1253. margin-top: 21.312px;
  1254. margin-bottom: 21.312px;
  1255. }
  1256. @media only screen and (min-width: 560px) {
  1257. .wp-block-group .wp-block-group__inner-container > * {
  1258. margin-top: 32px;
  1259. margin-bottom: 32px;
  1260. }
  1261. }
  1262. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1263. margin-top: 0;
  1264. }
  1265. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1266. margin-bottom: 0;
  1267. }
  1268. .wp-block-group.has-background {
  1269. padding: 21.312px;
  1270. }
  1271. @media only screen and (min-width: 560px) {
  1272. .wp-block-group.has-background {
  1273. padding: 32px;
  1274. }
  1275. }
  1276. h1, .h1,
  1277. h2, .h2,
  1278. h3, .h3,
  1279. h4, .h4,
  1280. h5, .h5,
  1281. h6, .h6 {
  1282. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1283. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1284. font-weight: bold;
  1285. clear: both;
  1286. }
  1287. h1, .h1 {
  1288. font-size: 2.48832rem;
  1289. letter-spacing: normal;
  1290. line-height: 1.125;
  1291. }
  1292. h2, .h2 {
  1293. font-size: 2.0736rem;
  1294. letter-spacing: normal;
  1295. line-height: 1.125;
  1296. }
  1297. h3, .h3 {
  1298. font-size: 1.728rem;
  1299. letter-spacing: normal;
  1300. line-height: 1.125;
  1301. }
  1302. h4, .h4 {
  1303. font-size: 1.44rem;
  1304. letter-spacing: normal;
  1305. line-height: 1.125;
  1306. }
  1307. h5, .h5 {
  1308. font-size: 1.2rem;
  1309. letter-spacing: normal;
  1310. line-height: 1.125;
  1311. }
  1312. h6, .h6 {
  1313. font-size: 1rem;
  1314. letter-spacing: normal;
  1315. line-height: 1.125;
  1316. }
  1317. .wp-block-image {
  1318. text-align: center;
  1319. }
  1320. .wp-block-image figcaption {
  1321. color: #666666;
  1322. font-size: 0.69444rem;
  1323. margin-top: calc(0.5 * 16px);
  1324. margin-bottom: 16px;
  1325. text-align: center;
  1326. }
  1327. .entry-content > *[class="wp-block-image"],
  1328. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1329. margin-top: 0;
  1330. margin-bottom: 0;
  1331. }
  1332. .entry-content > *[class="wp-block-image"] + *,
  1333. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1334. margin-top: 0;
  1335. }
  1336. img {
  1337. height: auto;
  1338. max-width: 100%;
  1339. vertical-align: middle;
  1340. }
  1341. .wp-block-latest-comments {
  1342. padding-right: 0;
  1343. }
  1344. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1345. font-size: 0.83333rem;
  1346. line-height: 1.6;
  1347. /* Vertical margins logic */
  1348. margin-top: 32px;
  1349. margin-bottom: 32px;
  1350. }
  1351. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1352. margin-top: 0;
  1353. }
  1354. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1355. margin-bottom: 0;
  1356. }
  1357. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1358. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1359. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1360. }
  1361. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1362. color: #666666;
  1363. font-size: 0.83333rem;
  1364. }
  1365. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1366. font-size: 0.83333rem;
  1367. line-height: 1.6;
  1368. margin: 0;
  1369. }
  1370. .wp-block-latest-posts {
  1371. padding-right: 0;
  1372. }
  1373. .wp-block-latest-posts > li {
  1374. /* Vertical margins logic */
  1375. margin-top: 32px;
  1376. margin-bottom: 32px;
  1377. }
  1378. .wp-block-latest-posts > li:first-child {
  1379. margin-top: 0;
  1380. }
  1381. .wp-block-latest-posts > li:last-child {
  1382. margin-bottom: 0;
  1383. }
  1384. .wp-block-latest-posts > li > a {
  1385. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1386. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1387. font-size: 1.44rem;
  1388. font-weight: bold;
  1389. line-height: 1.125;
  1390. }
  1391. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1392. color: #666666;
  1393. font-size: 0.69444rem;
  1394. line-height: 1.6;
  1395. }
  1396. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1397. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1398. color: currentColor;
  1399. }
  1400. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1401. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1402. font-size: 0.83333rem;
  1403. line-height: 1.6;
  1404. margin: 0;
  1405. }
  1406. .wp-block-latest-posts.alignfull {
  1407. padding-right: 16px;
  1408. padding-left: 16px;
  1409. }
  1410. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1411. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1412. padding-right: 0;
  1413. padding-left: 0;
  1414. }
  1415. .gallery-item {
  1416. display: inline-block;
  1417. text-align: center;
  1418. vertical-align: top;
  1419. width: 100%;
  1420. }
  1421. .gallery-item a {
  1422. display: block;
  1423. }
  1424. .gallery-columns-2 .gallery-item {
  1425. max-width: 50%;
  1426. }
  1427. .gallery-columns-3 .gallery-item {
  1428. max-width: 33.33%;
  1429. }
  1430. .gallery-columns-4 .gallery-item {
  1431. max-width: 25%;
  1432. }
  1433. .gallery-columns-5 .gallery-item {
  1434. max-width: 20%;
  1435. }
  1436. .gallery-columns-6 .gallery-item {
  1437. max-width: 16.66%;
  1438. }
  1439. .gallery-columns-7 .gallery-item {
  1440. max-width: 14.28%;
  1441. }
  1442. .gallery-columns-8 .gallery-item {
  1443. max-width: 12.5%;
  1444. }
  1445. .gallery-columns-9 .gallery-item {
  1446. max-width: 11.11%;
  1447. }
  1448. .gallery-caption {
  1449. display: block;
  1450. }
  1451. ul,
  1452. ol {
  1453. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1454. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1455. margin: 0;
  1456. padding-right: 32px;
  1457. }
  1458. ul {
  1459. list-style-type: disc;
  1460. }
  1461. ol {
  1462. list-style-type: decimal;
  1463. }
  1464. dt {
  1465. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1466. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1467. font-weight: bold;
  1468. }
  1469. dd {
  1470. margin: 0;
  1471. padding-right: 32px;
  1472. }
  1473. .wp-block-media-text {
  1474. /**
  1475. * Block Options
  1476. */
  1477. }
  1478. .wp-block-media-text .wp-block-media-text__content {
  1479. padding: 16px;
  1480. }
  1481. @media only screen and (min-width: 640px) {
  1482. .wp-block-media-text .wp-block-media-text__content {
  1483. padding: 32px;
  1484. }
  1485. }
  1486. .wp-block-media-text .wp-block-media-text__content > * {
  1487. margin-top: 21.312px;
  1488. margin-bottom: 21.312px;
  1489. }
  1490. @media only screen and (min-width: 560px) {
  1491. .wp-block-media-text .wp-block-media-text__content > * {
  1492. margin-top: 32px;
  1493. margin-bottom: 32px;
  1494. }
  1495. }
  1496. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1497. margin-top: 0;
  1498. }
  1499. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1500. margin-bottom: 0;
  1501. }
  1502. .wp-block-media-text[class*="background-color"]:not(.has-background-background-color) .wp-block-media-text__content a, .wp-block-media-text[style*="background-color"] .wp-block-media-text__content a {
  1503. color: currentColor;
  1504. }
  1505. @media only screen and (min-width: 560px) {
  1506. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1507. padding-top: 32px;
  1508. padding-bottom: 32px;
  1509. }
  1510. }
  1511. p.has-background {
  1512. padding: 16px 16px;
  1513. }
  1514. .a8c-posts-list__listing {
  1515. list-style: none;
  1516. margin: 0;
  1517. padding: 0;
  1518. }
  1519. .a8c-posts-list__listing:not(:last-child) {
  1520. margin-bottom: calc(3 * 32px);
  1521. }
  1522. .a8c-posts-list-item__featured span {
  1523. color: white;
  1524. background-color: #CA2017;
  1525. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1526. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1527. font-weight: bold;
  1528. font-size: 0.83333rem;
  1529. line-height: 1;
  1530. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1531. }
  1532. .a8c-posts-list__item {
  1533. display: block;
  1534. /* Vertical margins logic between posts */
  1535. margin-top: calc(3 * 32px);
  1536. margin-bottom: calc(3 * 32px);
  1537. }
  1538. .a8c-posts-list__item:first-child {
  1539. margin-top: 0;
  1540. }
  1541. .a8c-posts-list__item:last-child {
  1542. margin-bottom: 0;
  1543. }
  1544. .a8c-posts-list__item .entry > * {
  1545. /* Vertical margins logic between post details */
  1546. margin-top: 16px;
  1547. margin-bottom: 16px;
  1548. }
  1549. .a8c-posts-list__item .entry > *:first-child {
  1550. margin-top: 0;
  1551. }
  1552. .a8c-posts-list__item .entry > *:last-child {
  1553. margin-bottom: 0;
  1554. }
  1555. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1556. color: #666666;
  1557. font-size: 0.83333rem;
  1558. }
  1559. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1560. color: currentColor;
  1561. }
  1562. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1563. color: #222222;
  1564. }
  1565. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1566. margin-right: 16px;
  1567. }
  1568. .a8c-posts-list__view-all {
  1569. display: inline-block;
  1570. }
  1571. .wp-block-pullquote {
  1572. padding: calc( 3 * 16px) 0;
  1573. margin-right: 0;
  1574. margin-left: 0;
  1575. text-align: center;
  1576. border-top-color: #DDDDDD;
  1577. border-top-width: 4px;
  1578. border-bottom-color: #DDDDDD;
  1579. border-bottom-width: 4px;
  1580. color: #222222;
  1581. /**
  1582. * Block Options
  1583. */
  1584. }
  1585. .wp-block-pullquote p {
  1586. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1587. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1588. font-size: 1.44rem;
  1589. letter-spacing: normal;
  1590. line-height: 1.125;
  1591. }
  1592. .wp-block-pullquote a {
  1593. color: currentColor;
  1594. }
  1595. .wp-block-pullquote .wp-block-pullquote__citation,
  1596. .wp-block-pullquote cite,
  1597. .wp-block-pullquote footer {
  1598. color: #666666;
  1599. font-size: 0.83333rem;
  1600. letter-spacing: normal;
  1601. display: block;
  1602. }
  1603. .wp-block-pullquote:not(.is-style-solid-color) {
  1604. background: none;
  1605. }
  1606. .wp-block-pullquote:not(.is-style-solid-color) blockquote {
  1607. padding-right: 0;
  1608. }
  1609. .wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
  1610. text-align: center;
  1611. }
  1612. .wp-block-pullquote.is-style-solid-color {
  1613. background-color: #CA2017;
  1614. color: white;
  1615. }
  1616. .wp-block-pullquote.is-style-solid-color blockquote {
  1617. padding-right: 16px;
  1618. padding-left: 16px;
  1619. max-width: inherit;
  1620. }
  1621. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1622. .wp-block-pullquote.is-style-solid-color cite,
  1623. .wp-block-pullquote.is-style-solid-color footer {
  1624. color: currentColor;
  1625. }
  1626. .wp-block-pullquote.alignwide > p,
  1627. .wp-block-pullquote.alignfull > p,
  1628. .wp-block-pullquote.alignwide blockquote,
  1629. .wp-block-pullquote.alignfull blockquote {
  1630. margin-right: auto;
  1631. margin-left: auto;
  1632. }
  1633. .wp-block-quote {
  1634. border-right-color: #CA2017;
  1635. margin: 32px 0;
  1636. padding-right: 16px;
  1637. /**
  1638. * Block Options
  1639. */
  1640. }
  1641. .wp-block-quote > * {
  1642. margin-top: 16px;
  1643. margin-bottom: 16px;
  1644. }
  1645. .wp-block-quote > *:first-child {
  1646. margin-top: 0;
  1647. }
  1648. .wp-block-quote > *:last-child {
  1649. margin-bottom: 0;
  1650. }
  1651. .wp-block-quote p {
  1652. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  1653. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  1654. font-size: 1.44rem;
  1655. letter-spacing: normal;
  1656. line-height: 1.125;
  1657. }
  1658. .wp-block-quote .wp-block-quote__citation,
  1659. .wp-block-quote cite,
  1660. .wp-block-quote footer {
  1661. color: #666666;
  1662. font-size: 0.83333rem;
  1663. letter-spacing: normal;
  1664. }
  1665. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1666. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1667. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1668. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1669. .wp-block-quote cite,
  1670. [class*="background-color"]:not(.has-background-background-color)
  1671. .wp-block-quote cite,
  1672. [style*="background-color"]
  1673. .wp-block-quote cite,
  1674. .wp-block-cover[style*="background-image"]
  1675. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1676. .wp-block-quote footer,
  1677. [class*="background-color"]:not(.has-background-background-color)
  1678. .wp-block-quote footer,
  1679. [style*="background-color"]
  1680. .wp-block-quote footer,
  1681. .wp-block-cover[style*="background-image"]
  1682. .wp-block-quote footer {
  1683. color: currentColor;
  1684. }
  1685. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1686. border-left-color: #CA2017;
  1687. }
  1688. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1689. /* Resetting margins to match _block-container.scss */
  1690. margin-top: 32px;
  1691. margin-bottom: 32px;
  1692. padding: 0;
  1693. }
  1694. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1695. font-size: 1.728rem;
  1696. letter-spacing: normal;
  1697. line-height: 1.125;
  1698. }
  1699. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1700. .wp-block-quote.is-style-large cite,
  1701. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1702. .wp-block-quote.is-large cite,
  1703. .wp-block-quote.is-large footer {
  1704. color: #666666;
  1705. font-size: 0.83333rem;
  1706. letter-spacing: normal;
  1707. }
  1708. .has-background:not(.has-background-background-color) .wp-block-quote,
  1709. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1710. [style*="background-color"] .wp-block-quote,
  1711. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1712. border-color: currentColor;
  1713. }
  1714. hr {
  1715. border-bottom: 2px solid #DDDDDD;
  1716. clear: both;
  1717. margin-right: auto;
  1718. margin-left: auto;
  1719. }
  1720. hr.wp-block-separator {
  1721. border-bottom: 2px solid #DDDDDD;
  1722. /**
  1723. * Block Options
  1724. */
  1725. }
  1726. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  1727. max-width: 96px;
  1728. }
  1729. hr.wp-block-separator.is-style-dots:before {
  1730. color: #DDDDDD;
  1731. font-size: 1.728rem;
  1732. letter-spacing: 0.83333rem;
  1733. padding-right: 0.83333rem;
  1734. }
  1735. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  1736. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  1737. [style*="background-color"] hr.wp-block-separator,
  1738. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  1739. border-color: currentColor;
  1740. }
  1741. .wp-block-jetpack-slideshow ul {
  1742. margin-right: 0;
  1743. margin-left: 0;
  1744. }
  1745. .wp-block-spacer {
  1746. display: block;
  1747. margin-bottom: 0 !important;
  1748. margin-top: 0 !important;
  1749. }
  1750. @media only screen and (max-width: 559px) {
  1751. .wp-block-spacer[style] {
  1752. height: 16px !important;
  1753. }
  1754. }
  1755. .jetpack_subscription_widget input[type="text"] {
  1756. padding: calc( 0.33 * 16px) !important;
  1757. width: 100% !important;
  1758. }
  1759. table,
  1760. .wp-block-table {
  1761. width: 100%;
  1762. min-width: 240px;
  1763. border-collapse: collapse;
  1764. }
  1765. table th,
  1766. .wp-block-table th {
  1767. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1768. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1769. }
  1770. table td,
  1771. table th,
  1772. .wp-block-table td,
  1773. .wp-block-table th {
  1774. padding: calc( 0.5 * 16px);
  1775. border: 1px solid;
  1776. word-break: break-all;
  1777. }
  1778. .wp-block-video figcaption {
  1779. color: #666666;
  1780. font-size: 0.69444rem;
  1781. margin-top: calc(0.5 * 16px);
  1782. margin-bottom: 16px;
  1783. text-align: center;
  1784. }
  1785. * > figure > video {
  1786. max-width: unset;
  1787. width: 100%;
  1788. vertical-align: middle;
  1789. }
  1790. /* Block Alignments */
  1791. /**
  1792. * .alignleft
  1793. */
  1794. .alignleft {
  1795. text-align: left;
  1796. float: left;
  1797. margin-top: 0;
  1798. margin-right: 16px;
  1799. margin-bottom: 32px;
  1800. }
  1801. /**
  1802. * .aligncenter
  1803. */
  1804. .aligncenter {
  1805. clear: both;
  1806. float: none;
  1807. text-align: center;
  1808. }
  1809. /**
  1810. * .alignright
  1811. */
  1812. .alignright {
  1813. float: right;
  1814. margin-top: 0;
  1815. margin-bottom: 32px;
  1816. margin-left: 16px;
  1817. }
  1818. .entry-content * > .alignleft + *,
  1819. .entry-content * > .alignright + * {
  1820. margin-top: 0;
  1821. }
  1822. /**
  1823. * .aligndefault
  1824. */
  1825. /**
  1826. * .alignwide
  1827. */
  1828. .alignwide {
  1829. clear: both;
  1830. }
  1831. /**
  1832. * .alignfull
  1833. */
  1834. .alignfull {
  1835. clear: both;
  1836. }
  1837. .has-left-content {
  1838. justify-content: flex-start;
  1839. }
  1840. .has-right-content {
  1841. justify-content: flex-end;
  1842. }
  1843. .has-parallax {
  1844. background-attachment: fixed;
  1845. }
  1846. .has-primary-color[class] {
  1847. color: #CA2017 !important;
  1848. }
  1849. .has-secondary-color[class] {
  1850. color: #007FDB !important;
  1851. }
  1852. .has-foreground-color[class] {
  1853. color: #222222 !important;
  1854. }
  1855. .has-foreground-light-color[class] {
  1856. color: #666666 !important;
  1857. }
  1858. .has-foreground-dark-color[class] {
  1859. color: #111111 !important;
  1860. }
  1861. .has-background-light-color[class] {
  1862. color: #FAFAFA !important;
  1863. }
  1864. .has-background-dark-color[class] {
  1865. color: #DDDDDD !important;
  1866. }
  1867. .has-background-color[class] {
  1868. color: white !important;
  1869. }
  1870. .has-background:not(.has-background-background-color) a,
  1871. .has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
  1872. color: currentColor;
  1873. }
  1874. .has-primary-background-color[class] {
  1875. background-color: #CA2017 !important;
  1876. color: white;
  1877. }
  1878. .has-secondary-background-color[class] {
  1879. background-color: #007FDB !important;
  1880. color: white;
  1881. }
  1882. .has-foreground-background-color[class] {
  1883. background-color: #222222 !important;
  1884. color: white;
  1885. }
  1886. .has-foreground-light-background-color[class] {
  1887. background-color: #666666 !important;
  1888. color: white;
  1889. }
  1890. .has-foreground-dark-background-color[class] {
  1891. background-color: #111111 !important;
  1892. color: white;
  1893. }
  1894. .has-background-light-background-color[class] {
  1895. background-color: #FAFAFA !important;
  1896. color: #222222;
  1897. }
  1898. .has-background-dark-background-color[class] {
  1899. background-color: #DDDDDD !important;
  1900. color: #222222;
  1901. }
  1902. .has-background-background-color[class] {
  1903. background-color: white !important;
  1904. color: #222222;
  1905. }
  1906. .is-small-text,
  1907. .has-small-font-size {
  1908. font-size: 0.83333rem;
  1909. }
  1910. .is-regular-text,
  1911. .has-regular-font-size,
  1912. .has-normal-font-size,
  1913. .has-medium-font-size {
  1914. font-size: 1rem;
  1915. }
  1916. .is-large-text,
  1917. .has-large-font-size {
  1918. font-size: 1.44rem;
  1919. line-height: 1.125;
  1920. }
  1921. .is-larger-text,
  1922. .has-larger-font-size,
  1923. .has-huge-font-size {
  1924. font-size: 1.728rem;
  1925. line-height: 1.125;
  1926. }
  1927. .has-drop-cap:not(:focus)::first-letter {
  1928. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1929. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1930. font-size: calc(2 * 2.48832rem);
  1931. font-weight: bold;
  1932. line-height: 0.66;
  1933. text-transform: uppercase;
  1934. font-style: normal;
  1935. float: right;
  1936. margin: 0.1em 0 0 0.1em;
  1937. }
  1938. .has-drop-cap:not(:focus)::after {
  1939. content: "";
  1940. display: table;
  1941. clear: both;
  1942. padding-top: 14px;
  1943. }
  1944. .desktop-only {
  1945. display: none;
  1946. }
  1947. @media only screen and (min-width: 560px) {
  1948. .desktop-only {
  1949. display: block;
  1950. }
  1951. }
  1952. /**
  1953. * Spacing Overrides
  1954. */
  1955. /*
  1956. * Margins
  1957. */
  1958. .margin-top-none {
  1959. margin-top: 0 !important;
  1960. }
  1961. .margin-top-half {
  1962. margin-top: 16px !important;
  1963. }
  1964. .margin-top-default {
  1965. margin-top: 32px !important;
  1966. }
  1967. .margin-right-none {
  1968. margin-right: 0 !important;
  1969. }
  1970. .margin-right-half {
  1971. margin-right: 16px !important;
  1972. }
  1973. .margin-right-default {
  1974. margin-right: 32px !important;
  1975. }
  1976. .margin-bottom-none {
  1977. margin-bottom: 0 !important;
  1978. }
  1979. .margin-bottom-half {
  1980. margin-bottom: 16px !important;
  1981. }
  1982. .margin-bottom-default {
  1983. margin-bottom: 32px !important;
  1984. }
  1985. .margin-left-none {
  1986. margin-left: 0 !important;
  1987. }
  1988. .margin-left-half {
  1989. margin-left: 16px !important;
  1990. }
  1991. .margin-left-default {
  1992. margin-left: 32px !important;
  1993. }
  1994. /*
  1995. * Padding
  1996. */
  1997. .padding-top-none {
  1998. padding-top: 0 !important;
  1999. }
  2000. .padding-top-half {
  2001. padding-top: 16px !important;
  2002. }
  2003. .padding-top-default {
  2004. padding-top: 32px !important;
  2005. }
  2006. .padding-right-none {
  2007. padding-right: 0 !important;
  2008. }
  2009. .padding-right-half {
  2010. padding-right: 16px !important;
  2011. }
  2012. .padding-right-default {
  2013. padding-right: 32px !important;
  2014. }
  2015. .padding-bottom-none {
  2016. padding-bottom: 0 !important;
  2017. }
  2018. .padding-bottom-half {
  2019. padding-bottom: 16px !important;
  2020. }
  2021. .padding-bottom-default {
  2022. padding-bottom: 32px !important;
  2023. }
  2024. .padding-left-none {
  2025. padding-left: 0 !important;
  2026. }
  2027. .padding-left-half {
  2028. padding-left: 16px !important;
  2029. }
  2030. .padding-left-default {
  2031. padding-left: 32px !important;
  2032. }
  2033. /**
  2034. * Components
  2035. * - Similar to Blocks but exist outside of the "current" editor context
  2036. */
  2037. /*
  2038. * Components
  2039. * - Similar to Blocks but exist outside of the "current" editor context
  2040. */
  2041. .site-branding {
  2042. color: #666666;
  2043. }
  2044. .site-title {
  2045. color: #111111;
  2046. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2047. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2048. letter-spacing: normal;
  2049. line-height: 1;
  2050. }
  2051. .site-title a {
  2052. color: currentColor;
  2053. font-weight: bold;
  2054. }
  2055. .site-title a:link, .site-title a:visited {
  2056. color: currentColor;
  2057. }
  2058. .site-title a:hover {
  2059. color: #CA2017;
  2060. }
  2061. .site-description {
  2062. color: currentColor;
  2063. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2064. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2065. }
  2066. body:not(.fse-enabled) .site-title {
  2067. font-size: 2.98598rem;
  2068. }
  2069. body:not(.fse-enabled) .site-description {
  2070. font-size: 0.83333rem;
  2071. }
  2072. .main-navigation {
  2073. color: #222222;
  2074. }
  2075. .main-navigation > div {
  2076. display: none;
  2077. }
  2078. .main-navigation #toggle-menu {
  2079. display: inline-block;
  2080. margin: 0;
  2081. }
  2082. .main-navigation #toggle:checked ~ div {
  2083. display: block;
  2084. }
  2085. .main-navigation #toggle:focus + #toggle-menu {
  2086. background-color: #CA2017;
  2087. outline: inherit;
  2088. text-decoration: underline;
  2089. }
  2090. .main-navigation .dropdown-icon.close {
  2091. display: none;
  2092. }
  2093. .main-navigation #toggle:checked + #toggle-menu .open {
  2094. display: none;
  2095. }
  2096. .main-navigation #toggle:checked + #toggle-menu .close {
  2097. display: inline;
  2098. }
  2099. @media only screen and (min-width: 560px) {
  2100. .main-navigation > div {
  2101. display: block;
  2102. }
  2103. .main-navigation #toggle-menu {
  2104. display: none;
  2105. }
  2106. .main-navigation > div > ul > li > ul {
  2107. display: none;
  2108. }
  2109. }
  2110. .main-navigation > div > ul {
  2111. display: flex;
  2112. flex-wrap: wrap;
  2113. list-style: none;
  2114. margin: 0;
  2115. max-width: none;
  2116. padding-right: 0;
  2117. position: relative;
  2118. /* Sub-menus Flyout */
  2119. }
  2120. .main-navigation > div > ul ul {
  2121. padding-right: 0;
  2122. }
  2123. .main-navigation > div > ul li {
  2124. display: block;
  2125. position: relative;
  2126. width: 100%;
  2127. z-index: 1;
  2128. }
  2129. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2130. cursor: pointer;
  2131. z-index: 99999;
  2132. }
  2133. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2134. cursor: pointer;
  2135. z-index: 99999;
  2136. }
  2137. @media only screen and (min-width: 560px) {
  2138. .main-navigation > div > ul li {
  2139. display: inherit;
  2140. width: inherit;
  2141. /* Submenu display */
  2142. }
  2143. .main-navigation > div > ul li:hover > ul,
  2144. .main-navigation > div > ul li[focus-within] > ul,
  2145. .main-navigation > div > ul li ul:hover,
  2146. .main-navigation > div > ul li ul:focus {
  2147. visibility: visible;
  2148. opacity: 1;
  2149. display: block;
  2150. }
  2151. .main-navigation > div > ul li:hover > ul,
  2152. .main-navigation > div > ul li:focus-within > ul,
  2153. .main-navigation > div > ul li ul:hover,
  2154. .main-navigation > div > ul li ul:focus {
  2155. visibility: visible;
  2156. opacity: 1;
  2157. display: block;
  2158. }
  2159. }
  2160. @media only screen and (min-width: 560px) {
  2161. .main-navigation > div > ul > li > a {
  2162. line-height: 1;
  2163. }
  2164. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2165. content: '';
  2166. display: block;
  2167. height: 0;
  2168. width: 0;
  2169. }
  2170. .main-navigation > div > ul > li > a:before {
  2171. margin-bottom: -0.12em;
  2172. }
  2173. .main-navigation > div > ul > li > a:after {
  2174. margin-top: -0.11em;
  2175. }
  2176. .main-navigation > div > ul > li:first-of-type > a {
  2177. padding-right: 0;
  2178. }
  2179. .main-navigation > div > ul > li:last-of-type > a {
  2180. padding-left: 0;
  2181. }
  2182. }
  2183. .main-navigation > div > ul > li > .sub-menu {
  2184. margin: 0;
  2185. position: relative;
  2186. }
  2187. @media only screen and (min-width: 560px) {
  2188. .main-navigation > div > ul > li > .sub-menu {
  2189. background: white;
  2190. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  2191. right: 0;
  2192. top: 100%;
  2193. min-width: max-content;
  2194. opacity: 0;
  2195. position: absolute;
  2196. transition: all 0.5s ease;
  2197. visibility: hidden;
  2198. }
  2199. }
  2200. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2201. width: 100%;
  2202. }
  2203. .main-navigation a {
  2204. color: #222222;
  2205. display: block;
  2206. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2207. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2208. font-weight: bold;
  2209. padding: 8px 0;
  2210. }
  2211. @media only screen and (min-width: 560px) {
  2212. .main-navigation a {
  2213. padding: 16px;
  2214. }
  2215. }
  2216. .main-navigation a:link, .main-navigation a:visited {
  2217. color: #222222;
  2218. }
  2219. .main-navigation a:hover {
  2220. color: #CA2017;
  2221. }
  2222. .main-navigation .sub-menu {
  2223. list-style: none;
  2224. margin-right: 0;
  2225. /* Reset the counter for each UL */
  2226. counter-reset: nested-list;
  2227. }
  2228. .main-navigation .sub-menu .menu-item a {
  2229. padding-top: 8px;
  2230. padding-bottom: 8px;
  2231. }
  2232. .main-navigation .sub-menu .menu-item a::before {
  2233. /* Increment the dashes */
  2234. counter-increment: nested-list;
  2235. /* Insert dashes with spaces in between */
  2236. content: "– " counters(nested-list, "– ", none);
  2237. }
  2238. @media only screen and (min-width: 560px) {
  2239. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2240. content: "\00a0\25BC";
  2241. display: inline-block;
  2242. font-size: 0.69444rem;
  2243. height: inherit;
  2244. width: inherit;
  2245. }
  2246. }
  2247. .main-navigation .hide-visually {
  2248. position: absolute !important;
  2249. clip: rect(1px, 1px, 1px, 1px);
  2250. padding: 0 !important;
  2251. border: 0 !important;
  2252. height: 1px !important;
  2253. width: 1px !important;
  2254. overflow: hidden;
  2255. }
  2256. body:not(.fse-enabled) .main-navigation a {
  2257. font-size: 0.83333rem;
  2258. }
  2259. .social-navigation > div > ul {
  2260. align-content: center;
  2261. display: flex;
  2262. list-style: none;
  2263. margin: 0;
  2264. padding-right: 0;
  2265. }
  2266. .social-navigation > div > ul > li:first-of-type > a {
  2267. padding-right: 0;
  2268. }
  2269. .social-navigation > div > ul > li:last-of-type > a {
  2270. padding-left: 0;
  2271. }
  2272. .social-navigation a {
  2273. color: #CA2017;
  2274. display: inline-block;
  2275. padding: 0 4px;
  2276. }
  2277. .social-navigation a:hover {
  2278. color: #222222;
  2279. }
  2280. .social-navigation svg {
  2281. fill: currentColor;
  2282. vertical-align: middle;
  2283. }
  2284. .site-footer {
  2285. overflow: hidden;
  2286. }
  2287. @media only screen and (min-width: 640px) {
  2288. .site-footer {
  2289. align-items: flex-end;
  2290. display: flex;
  2291. flex-wrap: wrap;
  2292. justify-content: space-between;
  2293. }
  2294. }
  2295. .site-info {
  2296. color: #666666;
  2297. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2298. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2299. font-size: 0.83333rem;
  2300. }
  2301. @media only screen and (min-width: 640px) {
  2302. .site-info {
  2303. order: 1;
  2304. flex: 1 0 50%;
  2305. margin-top: 0;
  2306. margin-bottom: 0;
  2307. }
  2308. }
  2309. .site-info .site-name {
  2310. font-weight: bold;
  2311. }
  2312. .site-info a {
  2313. color: currentColor;
  2314. }
  2315. .site-info a:link, .site-info a:visited {
  2316. color: currentColor;
  2317. }
  2318. .site-info a:hover {
  2319. color: #CA2017;
  2320. }
  2321. .footer-navigation {
  2322. display: inline;
  2323. }
  2324. @media only screen and (min-width: 640px) {
  2325. .footer-navigation {
  2326. flex: 1 0 50%;
  2327. order: 2;
  2328. margin-top: 0;
  2329. margin-bottom: 0;
  2330. text-align: left;
  2331. }
  2332. }
  2333. .footer-navigation > div {
  2334. display: inline;
  2335. }
  2336. .footer-navigation .footer-menu {
  2337. color: #666666;
  2338. margin: 0;
  2339. padding-right: 0;
  2340. }
  2341. @media only screen and (min-width: 640px) {
  2342. .footer-navigation .footer-menu {
  2343. display: flex;
  2344. flex-wrap: wrap;
  2345. justify-content: flex-end;
  2346. }
  2347. }
  2348. .footer-navigation .footer-menu > li {
  2349. display: inline;
  2350. }
  2351. .footer-navigation .footer-menu > li:first-of-type > a {
  2352. padding-right: 0;
  2353. }
  2354. .footer-navigation .footer-menu > li:last-of-type {
  2355. padding-left: 0;
  2356. }
  2357. .footer-navigation .footer-menu a {
  2358. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2359. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2360. font-weight: bold;
  2361. padding: 16px;
  2362. color: currentColor;
  2363. }
  2364. .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
  2365. color: currentColor;
  2366. }
  2367. .footer-navigation .footer-menu a:hover {
  2368. color: #CA2017;
  2369. }
  2370. body:not(.fse-enabled) .footer-menu a {
  2371. font-size: 0.83333rem;
  2372. }
  2373. .entry-title {
  2374. font-size: 2.0736rem;
  2375. letter-spacing: normal;
  2376. line-height: 1.125;
  2377. }
  2378. .entry-meta,
  2379. .entry-footer {
  2380. color: #666666;
  2381. clear: both;
  2382. float: none;
  2383. font-size: 0.83333rem;
  2384. display: block;
  2385. }
  2386. .entry-meta > span,
  2387. .entry-footer > span {
  2388. display: inline-block;
  2389. margin-left: 16px;
  2390. }
  2391. .entry-meta > span > *,
  2392. .entry-footer > span > * {
  2393. display: inline-block;
  2394. vertical-align: middle;
  2395. }
  2396. .entry-meta > span:last-child,
  2397. .entry-footer > span:last-child {
  2398. margin-left: 0;
  2399. }
  2400. .entry-meta > span .published + .updated,
  2401. .entry-footer > span .published + .updated {
  2402. display: none;
  2403. }
  2404. .entry-meta a,
  2405. .entry-footer a {
  2406. color: currentColor;
  2407. }
  2408. .entry-meta a:hover, .entry-meta a:active,
  2409. .entry-footer a:hover,
  2410. .entry-footer a:active {
  2411. color: #222222;
  2412. }
  2413. .entry-meta .svg-icon,
  2414. .entry-footer .svg-icon {
  2415. fill: currentColor;
  2416. position: relative;
  2417. display: inline-block;
  2418. vertical-align: middle;
  2419. margin-left: calc(0.25 * 16px);
  2420. }
  2421. /**
  2422. * Entry Content
  2423. */
  2424. .entry-content p {
  2425. word-wrap: break-word;
  2426. }
  2427. .entry-content .more-link {
  2428. display: block;
  2429. color: inherit;
  2430. }
  2431. .entry-content .more-link:after {
  2432. content: "\02192";
  2433. display: inline-block;
  2434. margin-right: 0.5em;
  2435. }
  2436. .entry-content .more-link:hover {
  2437. text-decoration: none;
  2438. }
  2439. .entry-content > iframe[style] {
  2440. margin: 32px 0 !important;
  2441. max-width: 100% !important;
  2442. }
  2443. @media only screen and (min-width: 560px) {
  2444. .entry-content > iframe[style] {
  2445. max-width: 32px !important;
  2446. }
  2447. }
  2448. .entry-attachment {
  2449. text-align: center;
  2450. }
  2451. /**
  2452. * Post Thumbnails
  2453. */
  2454. .post-thumbnail {
  2455. text-align: center;
  2456. }
  2457. .post-thumbnail .post-thumbnail-inner {
  2458. display: block;
  2459. }
  2460. /**
  2461. * Author
  2462. */
  2463. /* Author description */
  2464. .site-main > article > .author-bio {
  2465. margin-top: calc(2 * 32px);
  2466. }
  2467. .author-bio .author-title {
  2468. font-size: 1.728rem;
  2469. }
  2470. /* Next/Previous navigation */
  2471. .post-navigation .meta-nav {
  2472. font-size: 0.83333rem;
  2473. }
  2474. .post-navigation .post-title {
  2475. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2476. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2477. font-size: 1.44rem;
  2478. font-weight: 600;
  2479. }
  2480. .post-navigation .nav-next,
  2481. .post-navigation .nav-previous {
  2482. margin-top: 32px;
  2483. margin-bottom: 32px;
  2484. }
  2485. .post-navigation .nav-next:first-child,
  2486. .post-navigation .nav-previous:first-child {
  2487. margin-top: 0;
  2488. }
  2489. .post-navigation .nav-next:last-child,
  2490. .post-navigation .nav-previous:last-child {
  2491. margin-bottom: 0;
  2492. }
  2493. .pagination .nav-links {
  2494. justify-content: start;
  2495. margin: 0 calc(-0.66 * 16px);
  2496. }
  2497. .pagination .nav-links > * {
  2498. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2499. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2500. font-size: 1.2rem;
  2501. font-weight: 600;
  2502. padding-right: calc(0.66 * 16px);
  2503. padding-left: calc(0.66 * 16px);
  2504. }
  2505. .pagination .nav-links .svg-icon {
  2506. display: inline-block;
  2507. vertical-align: middle;
  2508. }
  2509. @media only screen and (min-width: 560px) {
  2510. .nav-links {
  2511. display: flex;
  2512. justify-content: space-between;
  2513. }
  2514. .nav-links .nav-next,
  2515. .nav-links .nav-previous {
  2516. flex: 0 1 auto;
  2517. margin-bottom: inherit;
  2518. margin-top: inherit;
  2519. max-width: calc(50% - (0.5 * 16px));
  2520. }
  2521. .nav-links .nav-next {
  2522. text-align: left;
  2523. }
  2524. }
  2525. /**
  2526. * Comments Wrapper
  2527. */
  2528. .comments-area > * {
  2529. margin-top: 32px;
  2530. margin-bottom: 32px;
  2531. }
  2532. .comments-area > *:first-child {
  2533. margin-top: 0;
  2534. }
  2535. .comments-area > *:last-child {
  2536. margin-bottom: 0;
  2537. }
  2538. /**
  2539. * Comment Title
  2540. */
  2541. .comments-title {
  2542. font-size: 1.728rem;
  2543. letter-spacing: normal;
  2544. }
  2545. .comment-reply-title {
  2546. font-size: 1.728rem;
  2547. display: flex;
  2548. justify-content: space-between;
  2549. align-items: center;
  2550. }
  2551. .comment-reply-title small {
  2552. font-size: 1rem;
  2553. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2554. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2555. letter-spacing: normal;
  2556. line-height: 1.125;
  2557. }
  2558. /**
  2559. * Comment Lists
  2560. */
  2561. .comment-list {
  2562. border-bottom: 1px solid #DDDDDD;
  2563. padding-right: 0;
  2564. list-style: none;
  2565. }
  2566. .comment-list > li {
  2567. border-top: 1px solid #DDDDDD;
  2568. margin-top: 32px;
  2569. margin-bottom: 32px;
  2570. }
  2571. .comment-list .children {
  2572. list-style: none;
  2573. padding-right: 16px;
  2574. }
  2575. .comment-list .children > li {
  2576. border-top: 1px solid #DDDDDD;
  2577. margin-top: 32px;
  2578. margin-bottom: 32px;
  2579. }
  2580. @media only screen and (min-width: 560px) {
  2581. .comment-list .children {
  2582. padding-right: 32px;
  2583. }
  2584. }
  2585. /**
  2586. * Comment Meta
  2587. */
  2588. .comment-meta {
  2589. margin-left: calc( $avatar-size + (0.5 * 16px));
  2590. }
  2591. @media only screen and (min-width: 560px) {
  2592. .comment-meta {
  2593. margin-left: inherit;
  2594. }
  2595. }
  2596. @media only screen and (min-width: 560px) {
  2597. .comment-meta .comment-author {
  2598. display: flex;
  2599. align-items: center;
  2600. }
  2601. }
  2602. .comment-meta .comment-author .avatar {
  2603. display: block;
  2604. position: absolute;
  2605. left: 0;
  2606. }
  2607. @media only screen and (min-width: 560px) {
  2608. .comment-meta .comment-author .avatar {
  2609. margin-left: 16px;
  2610. display: inherit;
  2611. position: inherit;
  2612. left: inherit;
  2613. }
  2614. }
  2615. .comment-meta .comment-metadata {
  2616. color: #222222;
  2617. }
  2618. .comment-meta .comment-metadata a {
  2619. color: currentColor;
  2620. }
  2621. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  2622. color: #222222;
  2623. }
  2624. @media only screen and (min-width: 560px) {
  2625. .comment-meta {
  2626. align-items: center;
  2627. display: flex;
  2628. justify-content: space-between;
  2629. }
  2630. }
  2631. .comment-metadata,
  2632. .reply {
  2633. font-size: 0.69444rem;
  2634. line-height: 1.125;
  2635. }
  2636. .reply {
  2637. text-align: left;
  2638. }
  2639. @media only screen and (min-width: 560px) {
  2640. .reply {
  2641. text-align: right;
  2642. }
  2643. }
  2644. .bypostauthor {
  2645. display: block;
  2646. }
  2647. .says {
  2648. display: none;
  2649. }
  2650. .comment-author .fn,
  2651. .pingback .url,
  2652. .trackback .url {
  2653. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2654. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2655. }
  2656. /**
  2657. * Comment body
  2658. */
  2659. .comment-body {
  2660. position: relative;
  2661. }
  2662. .comment-body > * {
  2663. margin-top: 32px;
  2664. margin-bottom: 32px;
  2665. }
  2666. .comment-content a {
  2667. word-wrap: break-word;
  2668. }
  2669. /**
  2670. * Pingbacks & Trackbacks
  2671. */
  2672. .pingback .comment-body,
  2673. .trackback .comment-body {
  2674. margin-top: 32px;
  2675. margin-bottom: 32px;
  2676. }
  2677. /**
  2678. * Comment Form
  2679. */
  2680. .comment-respond {
  2681. margin-top: calc(2 * 32px);
  2682. }
  2683. .comment-respond > * {
  2684. margin-top: 16px;
  2685. margin-bottom: 16px;
  2686. }
  2687. .comment-respond > *:first-child {
  2688. margin-top: 0;
  2689. }
  2690. .comment-respond > *:last-child {
  2691. margin-bottom: 0;
  2692. }
  2693. .comment-form > p {
  2694. margin-top: 16px;
  2695. margin-bottom: 16px;
  2696. }
  2697. .comment-form > p:first-of-type {
  2698. margin-top: 0;
  2699. }
  2700. .comment-form > p:last-of-type {
  2701. margin-bottom: 0;
  2702. }
  2703. .comment-form > p label,
  2704. .comment-form > p input[type="email"],
  2705. .comment-form > p input[type="text"],
  2706. .comment-form > p input[type="url"],
  2707. .comment-form > p textarea {
  2708. width: 100%;
  2709. }
  2710. .comment-form > p.comment-form-cookies-consent > label {
  2711. width: auto;
  2712. }
  2713. @media only screen and (min-width: 560px) {
  2714. .comment-form > p {
  2715. display: flex;
  2716. }
  2717. .comment-form > p label {
  2718. width: 25%;
  2719. }
  2720. .comment-form > p.comment-form-cookies-consent {
  2721. margin-right: 25%;
  2722. }
  2723. .comment-form > p.comment-form-cookies-consent > label {
  2724. width: auto;
  2725. display: inline-block;
  2726. }
  2727. .comment-form > p input[type="email"],
  2728. .comment-form > p input[type="text"],
  2729. .comment-form > p input[type="url"],
  2730. .comment-form > p textarea {
  2731. width: 75%;
  2732. }
  2733. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  2734. display: block;
  2735. }
  2736. }
  2737. /**
  2738. * Comment Nav
  2739. */
  2740. .comment-navigation a {
  2741. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2742. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2743. font-size: 1.2rem;
  2744. font-weight: 600;
  2745. }
  2746. .widget-area {
  2747. flex: 0 0 100%;
  2748. }
  2749. /* Utilities */
  2750. img#wpstats {
  2751. position: absolute !important;
  2752. clip: rect(0, 0, 0, 0);
  2753. padding: 0 !important;
  2754. border: 0 !important;
  2755. height: 0 !important;
  2756. width: 0 !important;
  2757. overflow: hidden;
  2758. }
  2759. /**
  2760. * Site Pages
  2761. * - Page specific styles
  2762. */
  2763. /**
  2764. * Site Pages
  2765. * - Page specific styles
  2766. */
  2767. .sticky-post {
  2768. color: white;
  2769. background-color: #CA2017;
  2770. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  2771. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  2772. font-weight: bold;
  2773. font-size: 0.83333rem;
  2774. line-height: 1;
  2775. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  2776. }
  2777. .page-title {
  2778. font-size: 1.44rem;
  2779. }
  2780. /**
  2781. * Responsive Logic
  2782. * - Loading this last to respect cascaing rules
  2783. */
  2784. /**
  2785. * Page Layout Styles & Repsonsive Styles
  2786. */
  2787. /* Responsive width-content overrides */
  2788. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2789. .wp-block-pullquote.alignfull > p,
  2790. .wp-block-pullquote.alignwide blockquote,
  2791. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2792. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  2793. max-width: 100%;
  2794. margin-right: auto;
  2795. margin-left: auto;
  2796. }
  2797. @media only screen and (min-width: 560px) {
  2798. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2799. .wp-block-pullquote.alignfull > p,
  2800. .wp-block-pullquote.alignwide blockquote,
  2801. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2802. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  2803. max-width: calc( 560px - 32px);
  2804. }
  2805. }
  2806. @media only screen and (min-width: 640px) {
  2807. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2808. .wp-block-pullquote.alignfull > p,
  2809. .wp-block-pullquote.alignwide blockquote,
  2810. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2811. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  2812. max-width: calc( 640px - 32px);
  2813. }
  2814. }
  2815. @media only screen and (min-width: 772px) {
  2816. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2817. .wp-block-pullquote.alignfull > p,
  2818. .wp-block-pullquote.alignwide blockquote,
  2819. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2820. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  2821. max-width: calc( 772px - 32px);
  2822. }
  2823. }
  2824. @media only screen and (min-width: 1024px) {
  2825. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2826. .wp-block-pullquote.alignfull > p,
  2827. .wp-block-pullquote.alignwide blockquote,
  2828. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2829. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  2830. max-width: calc( 772px - 32px);
  2831. }
  2832. }
  2833. @media only screen and (min-width: 1280px) {
  2834. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2835. .wp-block-pullquote.alignfull > p,
  2836. .wp-block-pullquote.alignwide blockquote,
  2837. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2838. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  2839. max-width: calc( 772px - 32px);
  2840. }
  2841. }
  2842. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2843. margin-right: auto;
  2844. margin-left: auto;
  2845. max-width: 100%;
  2846. /* Matches normal width until desktop breakpoint */
  2847. }
  2848. @media only screen and (min-width: 560px) {
  2849. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2850. max-width: calc( 560px - 32px);
  2851. }
  2852. }
  2853. @media only screen and (min-width: 640px) {
  2854. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2855. max-width: calc( 640px - 32px);
  2856. }
  2857. }
  2858. @media only screen and (min-width: 772px) {
  2859. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2860. max-width: calc( 772px - 32px);
  2861. }
  2862. }
  2863. @media only screen and (min-width: 1024px) {
  2864. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2865. width: calc(calc( 772px - 32px) + 256px);
  2866. max-width: calc(100% - 32px);
  2867. }
  2868. }
  2869. @media only screen and (min-width: 1280px) {
  2870. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2871. width: calc(calc( 772px - 32px) + 256px);
  2872. max-width: calc(100% - 32px);
  2873. }
  2874. }
  2875. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2876. width: calc(100% + 256px);
  2877. max-width: 100%;
  2878. margin-right: auto;
  2879. margin-left: auto;
  2880. }
  2881. @media only screen and (min-width: 560px) {
  2882. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2883. width: calc(calc( 560px - 32px) + 256px);
  2884. max-width: 100%;
  2885. }
  2886. }
  2887. @media only screen and (min-width: 640px) {
  2888. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2889. width: calc(calc( 640px - 32px) + 256px);
  2890. max-width: 100%;
  2891. }
  2892. }
  2893. @media only screen and (min-width: 772px) {
  2894. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2895. width: calc(calc( 772px - 32px) + 256px);
  2896. max-width: 100%;
  2897. }
  2898. }
  2899. @media only screen and (min-width: 1024px) {
  2900. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2901. width: calc(calc( 772px - 32px) + 256px);
  2902. max-width: 100%;
  2903. }
  2904. }
  2905. @media only screen and (min-width: 1280px) {
  2906. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2907. width: calc(calc( 772px - 32px) + 256px);
  2908. max-width: 100%;
  2909. }
  2910. }
  2911. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, .pagination:before, .post-navigation:before, .comments-area:before {
  2912. margin-right: -16px;
  2913. margin-left: -16px;
  2914. width: calc(100% + 32px);
  2915. max-width: calc(100% + 32px);
  2916. /* Letting the box-model do most of the work here. */
  2917. }
  2918. @media only screen and (min-width: 560px) {
  2919. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, .pagination:before, .post-navigation:before, .comments-area:before {
  2920. margin-right: inherit;
  2921. margin-left: inherit;
  2922. width: inherit;
  2923. max-width: inherit;
  2924. }
  2925. }
  2926. .entry-content > .alignright {
  2927. margin-right: 16px;
  2928. }
  2929. @media only screen and (min-width: 560px) {
  2930. .entry-content > .alignright {
  2931. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  2932. }
  2933. }
  2934. @media only screen and (min-width: 640px) {
  2935. .entry-content > .alignright {
  2936. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  2937. }
  2938. }
  2939. @media only screen and (min-width: 772px) {
  2940. .entry-content > .alignright {
  2941. margin-right: calc( 0.5 * (100vw - calc( 772px - 32px)));
  2942. }
  2943. }
  2944. @media only screen and (min-width: 1024px) {
  2945. .entry-content > .alignright {
  2946. margin-right: calc( 0.5 * (100vw - calc( 772px - 32px)));
  2947. }
  2948. }
  2949. @media only screen and (min-width: 1280px) {
  2950. .entry-content > .alignright {
  2951. margin-right: calc( 0.5 * (100vw - calc( 772px - 32px)));
  2952. }
  2953. }
  2954. .entry-content > .alignleft {
  2955. margin-left: 16px;
  2956. }
  2957. @media only screen and (min-width: 560px) {
  2958. .entry-content > .alignleft {
  2959. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  2960. }
  2961. }
  2962. @media only screen and (min-width: 640px) {
  2963. .entry-content > .alignleft {
  2964. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  2965. }
  2966. }
  2967. @media only screen and (min-width: 772px) {
  2968. .entry-content > .alignleft {
  2969. margin-left: calc( 0.5 * (100vw - calc( 772px - 32px)));
  2970. }
  2971. }
  2972. @media only screen and (min-width: 1024px) {
  2973. .entry-content > .alignleft {
  2974. margin-left: calc( 0.5 * (100vw - calc( 772px - 32px)));
  2975. }
  2976. }
  2977. @media only screen and (min-width: 1280px) {
  2978. .entry-content > .alignleft {
  2979. margin-left: calc( 0.5 * (100vw - calc( 772px - 32px)));
  2980. }
  2981. }
  2982. /**
  2983. * Vendors
  2984. * - Styles for 3rd party plugins and WP extensions
  2985. */
  2986. /**
  2987. * Vendors
  2988. * - 3rd-party compatibility styles
  2989. */
  2990. /**
  2991. * Subscription Form
  2992. */
  2993. .wp-block-jetpack-subscriptions form > * {
  2994. margin-top: 21.312px;
  2995. margin-bottom: 21.312px;
  2996. }
  2997. @media only screen and (min-width: 560px) {
  2998. .wp-block-jetpack-subscriptions form > * {
  2999. margin-top: 32px;
  3000. margin-bottom: 32px;
  3001. }
  3002. }
  3003. .wp-block-jetpack-subscriptions form > *:first-child {
  3004. margin-top: 0;
  3005. }
  3006. .wp-block-jetpack-subscriptions form > *:last-child {
  3007. margin-bottom: 0;
  3008. }
  3009. /**
  3010. * Cookies & Consents Banner
  3011. */
  3012. body .widget_eu_cookie_law_widget {
  3013. background: transparent;
  3014. bottom: 0;
  3015. right: 0;
  3016. padding: 8px;
  3017. left: 0;
  3018. }
  3019. body .widget_eu_cookie_law_widget.widget.top {
  3020. bottom: auto;
  3021. top: 0;
  3022. }
  3023. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3024. background: white;
  3025. border: 1px solid #DDDDDD;
  3026. color: #222222;
  3027. font-size: 0.83333rem;
  3028. line-height: inherit;
  3029. padding: 16px;
  3030. }
  3031. @media (max-width: 600px) {
  3032. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3033. padding-bottom: 80px;
  3034. }
  3035. }
  3036. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3037. background: #222222;
  3038. border-color: #111111;
  3039. color: white;
  3040. }
  3041. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3042. background: white;
  3043. color: #222222;
  3044. }
  3045. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus {
  3046. background: #DDDDDD;
  3047. }
  3048. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3049. margin: 0;
  3050. margin-right: 32px;
  3051. }
  3052. @media (max-width: 600px) {
  3053. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3054. bottom: 16px;
  3055. right: 16px;
  3056. margin: 0;
  3057. }
  3058. }
  3059. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3060. top: 32px;
  3061. }
  3062. @media (max-width: 782px) {
  3063. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3064. top: 46px;
  3065. }
  3066. }
  3067. /**
  3068. * Mailchimp Subscription Form
  3069. */
  3070. .wp-block-jetpack-mailchimp p {
  3071. margin-top: 21.312px;
  3072. margin-bottom: 21.312px;
  3073. }
  3074. @media only screen and (min-width: 560px) {
  3075. .wp-block-jetpack-mailchimp p {
  3076. margin-top: 32px;
  3077. margin-bottom: 32px;
  3078. }
  3079. }
  3080. .wp-block-jetpack-mailchimp p:first-child {
  3081. margin-top: 0;
  3082. }
  3083. .wp-block-jetpack-mailchimp p:last-child {
  3084. margin-bottom: 0;
  3085. }
  3086. .wp-block-jetpack-mailchimp input[type=email] {
  3087. width: 100%;
  3088. }
  3089. #wp-block-jetpack-mailchimp_consent-text {
  3090. font-size: 0.83333rem;
  3091. }
  3092. /**
  3093. * Child Theme Extra Styles
  3094. */
  3095. /**
  3096. * Extra Child Theme Styles
  3097. */
  3098. html {
  3099. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  3100. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  3101. }
  3102. a {
  3103. text-decoration: none;
  3104. }
  3105. .wp-block-cover a,
  3106. .wp-block-cover-image a,
  3107. .wp-block-media-text a,
  3108. p:not(.site-title) a {
  3109. text-decoration: underline;
  3110. }
  3111. .wp-block-cover a.wp-block-button__link, .wp-block-cover a:hover,
  3112. .wp-block-cover-image a.wp-block-button__link,
  3113. .wp-block-cover-image a:hover,
  3114. .wp-block-media-text a.wp-block-button__link,
  3115. .wp-block-media-text a:hover,
  3116. p:not(.site-title) a.wp-block-button__link,
  3117. p:not(.site-title) a:hover {
  3118. text-decoration: none;
  3119. }
  3120. .site {
  3121. border-top: 5px solid #222222;
  3122. position: relative;
  3123. }
  3124. .site:before {
  3125. border-top: 1px solid rgba(255, 255, 255, 0.5);
  3126. content: "";
  3127. right: 0;
  3128. position: absolute;
  3129. top: -5px;
  3130. width: 100%;
  3131. }
  3132. #masthead {
  3133. padding-top: 32px;
  3134. }
  3135. #masthead .custom-logo-link {
  3136. display: inline-block;
  3137. margin-bottom: 16px;
  3138. }
  3139. @media only screen and (min-width: 560px) {
  3140. #masthead {
  3141. align-content: center;
  3142. align-items: center;
  3143. display: flex;
  3144. flex-flow: row wrap;
  3145. justify-content: center;
  3146. max-width: 92vw;
  3147. padding-bottom: 16px;
  3148. padding-top: 48px;
  3149. }
  3150. #masthead .site-branding {
  3151. flex: 1 100%;
  3152. }
  3153. #masthead .main-navigation {
  3154. padding-right: 32px;
  3155. padding-left: 32px;
  3156. }
  3157. #masthead .social-navigation {
  3158. padding-right: 32px;
  3159. padding-left: 32px;
  3160. margin: 0;
  3161. }
  3162. }
  3163. @media only screen and (min-width: 560px) {
  3164. #colophon {
  3165. margin-top: 32px;
  3166. }
  3167. }
  3168. @media only screen and (min-width: 560px) {
  3169. #colophon .site-info {
  3170. max-width: 92vw;
  3171. margin-right: auto;
  3172. margin-left: auto;
  3173. }
  3174. }
  3175. #colophon .footer-navigation + .site-info {
  3176. text-align: right;
  3177. }
  3178. #colophon .footer-navigation .footer-menu > li:last-of-type > a {
  3179. padding-left: 0;
  3180. }
  3181. .main-navigation #toggle-menu {
  3182. text-transform: uppercase;
  3183. }
  3184. @media only screen and (min-width: 560px) {
  3185. .main-navigation a {
  3186. padding: 12px 16px;
  3187. }
  3188. }
  3189. .main-navigation > div > ul > li > a {
  3190. text-transform: uppercase;
  3191. }
  3192. .main-navigation > div {
  3193. background: #FAFAFA;
  3194. border-radius: 4px;
  3195. padding-right: 16px;
  3196. padding-left: 16px;
  3197. }
  3198. @media only screen and (min-width: 560px) {
  3199. .main-navigation > div {
  3200. background: none;
  3201. border-radius: 0;
  3202. padding-right: 0;
  3203. padding-left: 0;
  3204. }
  3205. }
  3206. @media only screen and (min-width: 560px) {
  3207. .main-navigation > div > ul > li {
  3208. margin: 0 4px;
  3209. }
  3210. .main-navigation > div > ul > li:first-of-type > a {
  3211. padding-right: 16px;
  3212. }
  3213. .main-navigation > div > ul > li:last-of-type > a {
  3214. padding-left: 16px;
  3215. }
  3216. .main-navigation > div > ul > li:hover > a,
  3217. .main-navigation > div > ul > li.focus > a,
  3218. .main-navigation > div > ul > li.current-menu-item > a {
  3219. background: #CA2017;
  3220. border-radius: 4px;
  3221. color: white;
  3222. }
  3223. .main-navigation > div > ul > li:hover > ul,
  3224. .main-navigation > div > ul > li.focus > ul,
  3225. .main-navigation > div > ul > li.current-menu-item > ul {
  3226. border-radius: 4px;
  3227. overflow: hidden;
  3228. }
  3229. .main-navigation > div > ul > li:hover li > a,
  3230. .main-navigation > div > ul > li.focus li > a,
  3231. .main-navigation > div > ul > li.current-menu-item li > a {
  3232. background: #222222;
  3233. color: white;
  3234. font-weight: normal;
  3235. }
  3236. .main-navigation > div > ul > li:hover li:hover > a,
  3237. .main-navigation > div > ul > li:hover li.focus > a,
  3238. .main-navigation > div > ul > li:hover li.current-menu-item > a,
  3239. .main-navigation > div > ul > li.focus li:hover > a,
  3240. .main-navigation > div > ul > li.focus li.focus > a,
  3241. .main-navigation > div > ul > li.focus li.current-menu-item > a,
  3242. .main-navigation > div > ul > li.current-menu-item li:hover > a,
  3243. .main-navigation > div > ul > li.current-menu-item li.focus > a,
  3244. .main-navigation > div > ul > li.current-menu-item li.current-menu-item > a {
  3245. background: #CA2017;
  3246. }
  3247. .main-navigation > div > ul > .menu-item-has-children > a::after {
  3248. opacity: 0.67;
  3249. }
  3250. }
  3251. .site-branding,
  3252. .site-info,
  3253. .main-navigation,
  3254. .entry-header,
  3255. .entry-footer,
  3256. .page-title,
  3257. .author-title,
  3258. .comments-title,
  3259. .comment-reply-title,
  3260. .a8c-posts-list {
  3261. text-align: center;
  3262. }
  3263. .main-navigation > div {
  3264. text-align: right;
  3265. }
  3266. .comment-reply-title {
  3267. display: inherit;
  3268. }
  3269. .comment .comment-reply-title {
  3270. display: flex;
  3271. }
  3272. .main-navigation > div > ul,
  3273. .social-navigation > div > ul,
  3274. .pagination .nav-links {
  3275. justify-content: center;
  3276. }
  3277. .home.page.hide-homepage-title .site-main {
  3278. padding-top: 0;
  3279. }
  3280. .wp-block-cover .wp-block-cover__inner-container > *,
  3281. .wp-block-coblocks-hero .wp-block-coblocks-hero__box > * {
  3282. margin-top: 21.312px;
  3283. margin-bottom: 21.312px;
  3284. }
  3285. @media only screen and (min-width: 560px) {
  3286. .wp-block-cover .wp-block-cover__inner-container > *,
  3287. .wp-block-coblocks-hero .wp-block-coblocks-hero__box > * {
  3288. margin-top: 32px;
  3289. margin-bottom: 32px;
  3290. }
  3291. }
  3292. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  3293. .wp-block-coblocks-hero .wp-block-coblocks-hero__box > *:first-child {
  3294. margin-top: 0;
  3295. }
  3296. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  3297. .wp-block-coblocks-hero .wp-block-coblocks-hero__box > *:last-child {
  3298. margin-bottom: 0;
  3299. }
  3300. .wp-block-quote p {
  3301. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  3302. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  3303. }
  3304. table td,
  3305. table th,
  3306. .wp-block-table td,
  3307. .wp-block-table th {
  3308. border-color: #DDDDDD;
  3309. }
  3310. .a8c-posts-list-item__excerpt {
  3311. text-align: right;
  3312. }
  3313. .entry-header .entry-meta {
  3314. display: none;
  3315. }
  3316. .entry-footer {
  3317. border-top: 1px solid #DDDDDD;
  3318. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3319. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3320. font-size: 0.69444rem;
  3321. padding-top: 16px;
  3322. }
  3323. article .entry-header .entry-title,
  3324. .page-title,
  3325. .a8c-posts-list-item__title {
  3326. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  3327. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  3328. font-size: 2.48832rem;
  3329. margin-bottom: 48px;
  3330. }
  3331. article .entry-header .entry-title a,
  3332. .page-title a,
  3333. .a8c-posts-list-item__title a {
  3334. color: inherit;
  3335. }
  3336. article .entry-header .entry-title a:active, article .entry-header .entry-title a:focus, article .entry-header .entry-title a:hover,
  3337. .page-title a:active,
  3338. .page-title a:focus,
  3339. .page-title a:hover,
  3340. .a8c-posts-list-item__title a:active,
  3341. .a8c-posts-list-item__title a:focus,
  3342. .a8c-posts-list-item__title a:hover {
  3343. color: #CA2017;
  3344. }
  3345. .entry-content {
  3346. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  3347. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  3348. }
  3349. .pagination {
  3350. text-align: center;
  3351. }
  3352. .pagination .nav-links > * {
  3353. color: #666666;
  3354. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3355. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3356. font-size: 1rem;
  3357. text-transform: uppercase;
  3358. }
  3359. .pagination .nav-links > *.current, .pagination .nav-links > *:active, .pagination .nav-links > *:focus, .pagination .nav-links > *:hover {
  3360. color: #CA2017;
  3361. }
  3362. .pagination svg {
  3363. fill: currentColor;
  3364. }
  3365. .pagination:before {
  3366. background: #DDDDDD;
  3367. height: 1px;
  3368. content: "";
  3369. display: block;
  3370. margin-bottom: 16px;
  3371. }
  3372. @media only screen and (min-width: 560px) {
  3373. .pagination:before {
  3374. margin-bottom: 64px;
  3375. }
  3376. }
  3377. .post-navigation a {
  3378. color: #222222;
  3379. }
  3380. .post-navigation a:active, .post-navigation a:hover, .post-navigation a:focus {
  3381. color: #CA2017;
  3382. }
  3383. .post-navigation .meta-nav {
  3384. color: #666666;
  3385. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3386. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3387. font-size: 0.83333rem;
  3388. font-weight: bold;
  3389. text-transform: uppercase;
  3390. }
  3391. .post-navigation .post-title {
  3392. font-size: 1rem;
  3393. }
  3394. .post-navigation:before {
  3395. background: #DDDDDD;
  3396. height: 1px;
  3397. content: "";
  3398. display: block;
  3399. margin-bottom: 16px;
  3400. }
  3401. @media only screen and (min-width: 560px) {
  3402. .post-navigation:before {
  3403. margin-bottom: 64px;
  3404. }
  3405. }
  3406. .comments-area:before {
  3407. background: #DDDDDD;
  3408. height: 1px;
  3409. content: "";
  3410. display: block;
  3411. margin-bottom: 32px;
  3412. }
  3413. @media only screen and (min-width: 560px) {
  3414. .comments-area:before {
  3415. margin-bottom: 64px;
  3416. }
  3417. }
  3418. .comments-area .comment-list {
  3419. border-bottom: 1px solid #FAFAFA;
  3420. }
  3421. .comments-area .comment-list > li {
  3422. border-top: 1px solid #FAFAFA;
  3423. }
  3424. .comments-area .children > li {
  3425. border-top: 1px solid #FAFAFA;
  3426. }
  3427. .comments-title,
  3428. .comment-reply-title {
  3429. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
  3430. font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
  3431. font-size: 1.728rem;
  3432. }
  3433. .comment-meta .comment-metadata {
  3434. color: #666666;
  3435. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3436. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3437. }
  3438. .comment-meta .comment-metadata a {
  3439. color: inherit;
  3440. }
  3441. .comment-meta .comment-metadata a:active,
  3442. .comment-meta .comment-metadata a:focus,
  3443. .comment-meta .comment-metadata a:hover {
  3444. color: #CA2017;
  3445. }
  3446. .comment-navigation a {
  3447. color: #666666;
  3448. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3449. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3450. font-size: 0.83333rem;
  3451. text-transform: uppercase;
  3452. }
  3453. .comment-navigation a:active, .comment-navigation a:focus, .comment-navigation a:hover {
  3454. color: #CA2017;
  3455. }
  3456. .comments-title + .comment-navigation {
  3457. display: none;
  3458. }
  3459. .widget-area {
  3460. font-size: 0.83333rem;
  3461. }
  3462. .widget-area .widget-title,
  3463. .widget-area .widgettitle {
  3464. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3465. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3466. font-size: 1rem;
  3467. margin-bottom: 16px;
  3468. text-transform: uppercase;
  3469. }
  3470. .widget-area .widget-title:empty,
  3471. .widget-area .widgettitle:empty {
  3472. display: none;
  3473. }
  3474. @media only screen and (min-width: 560px) {
  3475. .widget-area {
  3476. padding-top: 32px;
  3477. }
  3478. }
  3479. @media only screen and (min-width: 772px) {
  3480. .widget-area {
  3481. display: flex;
  3482. flex-wrap: wrap;
  3483. justify-content: space-between;
  3484. }
  3485. .widget-area > *:nth-child(2) {
  3486. margin-top: 0;
  3487. }
  3488. .widget-area .widget {
  3489. width: calc(50% - 16px);
  3490. }
  3491. }
  3492. .widget_calendar caption,
  3493. .widget_calendar caption {
  3494. font-weight: bold;
  3495. }
  3496. .widget_calendar td,
  3497. .widget_calendar th,
  3498. .widget_calendar td,
  3499. .widget_calendar th {
  3500. text-align: center;
  3501. }
  3502. .widget_archive ul,
  3503. .widget_categories ul,
  3504. .widget_links ul,
  3505. .widget_meta ul,
  3506. .widget_nav_menu ul,
  3507. .widget_pages ul,
  3508. .widget_recent_comments ul,
  3509. .widget_recent_entries ul,
  3510. .widget_rss ul,
  3511. .widget_rss_links ul,
  3512. .widget_top-posts ul,
  3513. .widget_authors ul,
  3514. .widget_jp_blogs_i_follow ul,
  3515. .widget_top-click ul,
  3516. .widget_upcoming_events_widget ul {
  3517. border-bottom: 1px solid #FAFAFA;
  3518. list-style: none;
  3519. padding-right: 0;
  3520. }
  3521. .widget_archive li,
  3522. .widget_categories li,
  3523. .widget_links li,
  3524. .widget_meta li,
  3525. .widget_nav_menu li,
  3526. .widget_pages li,
  3527. .widget_recent_comments li,
  3528. .widget_recent_entries li,
  3529. .widget_rss li,
  3530. .widget_rss_links li,
  3531. .widget_top-posts li,
  3532. .widget_authors li,
  3533. .widget_jp_blogs_i_follow li,
  3534. .widget_top-click li,
  3535. .widget_upcoming_events_widget li {
  3536. border-top: 1px solid #FAFAFA;
  3537. padding: 8px 0;
  3538. }
  3539. .widget_categories .children,
  3540. .widget_nav_menu .sub-menu,
  3541. .widget_pages .children {
  3542. border-bottom: 0;
  3543. margin-bottom: -8px;
  3544. margin-top: 8px;
  3545. padding-right: 16px;
  3546. }
  3547. .widget_recent_entries .post-date {
  3548. display: block;
  3549. }
  3550. .widget_rss cite,
  3551. .widget_rss .rssSummary,
  3552. .widget_rss .rss-date {
  3553. display: block;
  3554. }
  3555. .widget_search input[type="search"] {
  3556. display: block;
  3557. margin-bottom: 8px;
  3558. width: 100%;
  3559. }