style-rtl.css 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Exford
  4. Theme URI: https://github.com/Automattic/themes/tree/master/exford
  5. Author: Automattic
  6. Author URI: https://automattic.com/
  7. Description: Make your online presence as striking and stylish as your business with Exford.
  8. Requires at least: WordPress 4.9.6
  9. Version: 1.2.0
  10. License: GNU General Public License v2 or later
  11. License URI: LICENSE
  12. Template: varia
  13. Text Domain: exford
  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-global-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: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  543. font-family: var(--font-base, "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", 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: #111111;
  555. text-align: right;
  556. background-color: #FFFFFF;
  557. }
  558. /**
  559. * Links styles
  560. */
  561. a {
  562. color: #23883D;
  563. }
  564. a:hover {
  565. color: #195f2b;
  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: #FFFFFF;
  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: #111111;
  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. clear: both;
  632. }
  633. /**
  634. * Measure
  635. * - The width of a line of text, in characters, is known as its measure.
  636. */
  637. header *,
  638. main *,
  639. footer * {
  640. max-width: inherit;
  641. }
  642. html,
  643. body,
  644. div,
  645. header,
  646. nav,
  647. article,
  648. figure,
  649. hr,
  650. main,
  651. section,
  652. footer {
  653. max-width: none;
  654. }
  655. ::selection {
  656. background-color: #e5f8ea;
  657. }
  658. ::-moz-selection {
  659. background-color: #e5f8ea;
  660. }
  661. /**
  662. * Layout
  663. * - Structral and responsive styles
  664. */
  665. /**
  666. * Layout
  667. * - Structral and responsive styles
  668. */
  669. /**
  670. * Site Structure
  671. *
  672. * - Set vertical margins and responsive widths on
  673. * top-level wrappers and content wrappers
  674. * - `--global--width-content` is a responsive veriable
  675. * - See: globals/_global-width-responsive.scss
  676. */
  677. /**
  678. * Top Level Wrappers (header, main, footer)
  679. * - Set vertical padding and horizontal margins
  680. */
  681. .site-header,
  682. .site-main,
  683. .site-footer {
  684. padding: 16px 16px;
  685. margin-right: auto;
  686. margin-left: auto;
  687. }
  688. @media only screen and (min-width: 560px) {
  689. .site-header,
  690. .site-main,
  691. .site-footer {
  692. padding-top: 32px;
  693. padding-left: 0;
  694. padding-bottom: 32px;
  695. padding-right: 0;
  696. }
  697. }
  698. /**
  699. * Site-main children wrappers
  700. * - Add double vertical margins here for clearer heirarchy
  701. */
  702. .site-main > * {
  703. margin-top: calc(3 * 32px);
  704. margin-bottom: calc(3 * 32px);
  705. }
  706. .site-main > *:first-child {
  707. margin-top: 0;
  708. }
  709. .site-main > *:last-child {
  710. margin-bottom: 0;
  711. }
  712. /**
  713. * Major content sections (article, author-bio, pagination, comments, etc.)
  714. * - Set a maximum responsive content-width
  715. *
  716. * .responsive-max-width is a group selector replacing the following:
  717. * .site-header,
  718. * .site-main,
  719. * .site-footer
  720. * .entry-header,
  721. * .post-thumbnail,
  722. * .entry-content,
  723. * .entry-footer,
  724. * .author-bio,
  725. * .widget-area
  726. */
  727. /*
  728. * Block & non-gutenberg content wrappers
  729. * - Set margins
  730. */
  731. .entry-header,
  732. .post-thumbnail,
  733. .entry-content,
  734. .entry-footer,
  735. .author-bio,
  736. .widget-area {
  737. margin-top: 32px;
  738. margin-left: auto;
  739. margin-bottom: 32px;
  740. margin-right: auto;
  741. }
  742. /*
  743. * Block & non-gutenberg content wrapper children
  744. * - Sets spacing-vertical margin logic
  745. */
  746. .site-footer > *,
  747. .site-main > article > *,
  748. .site-main > .not-found > *,
  749. .entry-content > *,
  750. [class*="inner-container"] > *,
  751. .widget-area > * {
  752. margin-top: 21.312px;
  753. margin-bottom: 21.312px;
  754. }
  755. @media only screen and (min-width: 560px) {
  756. .site-footer > *,
  757. .site-main > article > *,
  758. .site-main > .not-found > *,
  759. .entry-content > *,
  760. [class*="inner-container"] > *,
  761. .widget-area > * {
  762. margin-top: 32px;
  763. margin-bottom: 32px;
  764. }
  765. }
  766. .site-footer > *:first-child,
  767. .site-main > article > *:first-child,
  768. .site-main > .not-found > *:first-child,
  769. .entry-content > *:first-child,
  770. [class*="inner-container"] > *:first-child,
  771. .widget-area > *:first-child {
  772. margin-top: 0;
  773. }
  774. .site-footer > *:last-child,
  775. .site-main > article > *:last-child,
  776. .site-main > .not-found > *:last-child,
  777. .entry-content > *:last-child,
  778. [class*="inner-container"] > *:last-child,
  779. .widget-area > *:last-child {
  780. margin-bottom: 0;
  781. }
  782. /*
  783. * Block & non-gutenberg content wrapper children
  784. * - Sets spacing-unit margins
  785. */
  786. .site-header > *,
  787. .entry-header > *,
  788. .post-thumbnail > *,
  789. .page-content > *,
  790. .comment-content > *,
  791. .author-bio > * {
  792. margin-top: 16px;
  793. margin-bottom: 16px;
  794. }
  795. .site-header > *:first-child,
  796. .entry-header > *:first-child,
  797. .post-thumbnail > *:first-child,
  798. .page-content > *:first-child,
  799. .comment-content > *:first-child,
  800. .author-bio > *:first-child {
  801. margin-top: 0;
  802. }
  803. .site-header > *:last-child,
  804. .entry-header > *:last-child,
  805. .post-thumbnail > *:last-child,
  806. .page-content > *:last-child,
  807. .comment-content > *:last-child,
  808. .author-bio > *:last-child {
  809. margin-bottom: 0;
  810. }
  811. /*
  812. * .entry-content children specific controls
  813. * - Adds special margin overrides for alignment utility classes
  814. */
  815. .entry-content > * {
  816. /* Reset alignleft and alignright margins after alignfull */
  817. }
  818. .entry-content > *.alignleft, .entry-content > *.alignright,
  819. .entry-content > *.alignleft:first-child + *,
  820. .entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
  821. margin-top: 0;
  822. }
  823. .entry-content > *:last-child, .entry-content > *.alignfull {
  824. margin-bottom: 0;
  825. }
  826. .entry-content > *.alignfull + .alignleft,
  827. .entry-content > *.alignfull + .alignright {
  828. margin-top: 32px;
  829. }
  830. /**
  831. * Elements
  832. * - Styles for basic HTML elemants
  833. */
  834. /**
  835. * Elements
  836. * - Styles for basic HTML elemants
  837. */
  838. blockquote {
  839. padding-right: 16px;
  840. }
  841. blockquote p {
  842. font-size: 1.2rem;
  843. letter-spacing: normal;
  844. line-height: 1.125;
  845. }
  846. blockquote cite,
  847. blockquote footer {
  848. font-size: 0.83333rem;
  849. letter-spacing: normal;
  850. }
  851. blockquote > * {
  852. margin-top: 16px;
  853. margin-bottom: 16px;
  854. }
  855. blockquote > *:first-child {
  856. margin-top: 0;
  857. }
  858. blockquote > *:last-child {
  859. margin-bottom: 0;
  860. }
  861. blockquote.alignleft, blockquote.alignright {
  862. padding-right: inherit;
  863. }
  864. blockquote.alignleft p, blockquote.alignright p {
  865. font-size: 1rem;
  866. max-width: inherit;
  867. width: inherit;
  868. }
  869. blockquote.alignleft cite,
  870. blockquote.alignleft footer, blockquote.alignright cite,
  871. blockquote.alignright footer {
  872. font-size: 0.69444rem;
  873. letter-spacing: normal;
  874. }
  875. input[type="text"],
  876. input[type="email"],
  877. input[type="url"],
  878. input[type="password"],
  879. input[type="search"],
  880. input[type="number"],
  881. input[type="tel"],
  882. input[type="range"],
  883. input[type="date"],
  884. input[type="month"],
  885. input[type="week"],
  886. input[type="time"],
  887. input[type="datetime"],
  888. input[type="datetime-local"],
  889. input[type="color"],
  890. textarea {
  891. color: #111111;
  892. border: 1px solid #CCCCCC;
  893. border-radius: 3px;
  894. padding: 16px;
  895. }
  896. input[type="text"]:focus,
  897. input[type="email"]:focus,
  898. input[type="url"]:focus,
  899. input[type="password"]:focus,
  900. input[type="search"]:focus,
  901. input[type="number"]:focus,
  902. input[type="tel"]:focus,
  903. input[type="range"]:focus,
  904. input[type="date"]:focus,
  905. input[type="month"]:focus,
  906. input[type="week"]:focus,
  907. input[type="time"]:focus,
  908. input[type="datetime"]:focus,
  909. input[type="datetime-local"]:focus,
  910. input[type="color"]:focus,
  911. textarea:focus {
  912. color: #111111;
  913. border-color: #195f2b;
  914. }
  915. select {
  916. border: 1px solid #CCCCCC;
  917. }
  918. textarea {
  919. width: 100%;
  920. }
  921. input[type=checkbox] + label {
  922. display: inline;
  923. margin-right: 0.5em;
  924. margin-left: 2em;
  925. line-height: 1em;
  926. }
  927. figcaption {
  928. color: #6E6E6E;
  929. font-size: 0.69444rem;
  930. margin-top: calc(0.5 * 16px);
  931. margin-bottom: 16px;
  932. text-align: center;
  933. }
  934. .alignleft figcaption,
  935. .alignright figcaption {
  936. margin-bottom: 0;
  937. }
  938. /* WP Smiley */
  939. .page-content .wp-smiley,
  940. .entry-content .wp-smiley,
  941. .comment-content .wp-smiley {
  942. border: none;
  943. margin-bottom: 0;
  944. margin-top: 0;
  945. padding: 0;
  946. }
  947. /* Make sure embeds and iframes fit their containers. */
  948. embed,
  949. iframe,
  950. object {
  951. max-width: 100%;
  952. }
  953. /**
  954. * Blocks
  955. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  956. * spacing with CSS-variables overrides
  957. * - In the future the Block styles may get compiled to individual .css
  958. * files and conditionally loaded
  959. */
  960. /**
  961. * Blocks
  962. * - These styles replace key Gutenberg Block styles with font, color, and
  963. * spacing with CSS-variables overrides
  964. * - In the future the Block styles may get compiled to individual .css
  965. * files and conditionally loaded
  966. */
  967. .wp-block-audio {
  968. min-width: inherit;
  969. }
  970. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  971. min-width: 300px;
  972. }
  973. /**
  974. * Placeholder button style
  975. * - Since buttons appear in various blocks,
  976. * let’s use a placeholder to keep them all
  977. * in-sync
  978. */
  979. button,
  980. .button,
  981. input[type="submit"],
  982. .wp-block-button__link,
  983. .wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  984. line-height: 1;
  985. color: white;
  986. cursor: pointer;
  987. font-weight: 700;
  988. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  989. font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  990. font-size: 0.83333rem;
  991. background-color: #23883D;
  992. border-radius: 5px;
  993. border-width: 0;
  994. padding: 16px 16px;
  995. }
  996. button:before,
  997. .button:before,
  998. input[type="submit"]:before,
  999. .wp-block-button__link:before,
  1000. .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,
  1001. .button:after,
  1002. input[type="submit"]:after,
  1003. .wp-block-button__link:after,
  1004. .wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1005. content: '';
  1006. display: block;
  1007. height: 0;
  1008. width: 0;
  1009. }
  1010. button:before,
  1011. .button:before,
  1012. input[type="submit"]:before,
  1013. .wp-block-button__link:before,
  1014. .wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  1015. margin-bottom: -0.12em;
  1016. }
  1017. button:after,
  1018. .button:after,
  1019. input[type="submit"]:after,
  1020. .wp-block-button__link:after,
  1021. .wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1022. margin-top: -0.11em;
  1023. }
  1024. button:hover,
  1025. .button:hover,
  1026. input:hover[type="submit"],
  1027. .wp-block-button__link:hover,
  1028. .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,
  1029. .button:focus,
  1030. input:focus[type="submit"],
  1031. .wp-block-button__link:focus,
  1032. .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,
  1033. .has-focus.button,
  1034. input.has-focus[type="submit"],
  1035. .has-focus.wp-block-button__link,
  1036. .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 {
  1037. color: white;
  1038. background-color: #195f2b;
  1039. }
  1040. /**
  1041. * Block Options
  1042. */
  1043. .wp-block-button.is-style-outline .wp-block-button__link {
  1044. color: #23883D;
  1045. background: transparent;
  1046. border: 2px solid currentcolor;
  1047. padding: 14px 16px;
  1048. }
  1049. .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 {
  1050. color: #195f2b;
  1051. }
  1052. .wp-block-button.is-style-squared .wp-block-button__link {
  1053. border-radius: 0;
  1054. }
  1055. .wp-block-code {
  1056. color: #111111;
  1057. font-size: 0.83333rem;
  1058. padding: 16px;
  1059. border-color: #CCCCCC;
  1060. }
  1061. .wp-block-code pre {
  1062. color: #111111;
  1063. }
  1064. .wp-block-columns {
  1065. /**
  1066. * Block Options
  1067. */
  1068. }
  1069. .wp-block-columns .wp-block-column > * {
  1070. margin-top: 21.312px;
  1071. margin-bottom: 21.312px;
  1072. }
  1073. @media only screen and (min-width: 560px) {
  1074. .wp-block-columns .wp-block-column > * {
  1075. margin-top: 32px;
  1076. margin-bottom: 32px;
  1077. }
  1078. }
  1079. .wp-block-columns .wp-block-column > *:first-child {
  1080. margin-top: 0;
  1081. }
  1082. .wp-block-columns .wp-block-column > *:last-child {
  1083. margin-bottom: 0;
  1084. }
  1085. .wp-block-columns .wp-block-column:last-child {
  1086. margin-bottom: 0;
  1087. }
  1088. .wp-block-columns .wp-block-column:not(:last-child) {
  1089. margin-bottom: 21.312px;
  1090. }
  1091. @media only screen and (min-width: 560px) {
  1092. .wp-block-columns .wp-block-column:not(:last-child) {
  1093. margin-bottom: 32px;
  1094. }
  1095. }
  1096. @media only screen and (min-width: 782px) {
  1097. .wp-block-columns .wp-block-column:not(:last-child) {
  1098. /* Resetting margins to match _block-container.scss */
  1099. margin-bottom: 0;
  1100. }
  1101. }
  1102. .wp-block-columns.alignfull {
  1103. padding-right: 16px;
  1104. padding-left: 16px;
  1105. }
  1106. .wp-block-columns.alignfull:not(:first-child) {
  1107. margin-top: 32px;
  1108. }
  1109. .wp-block-columns.alignfull:not(:last-child) {
  1110. margin-bottom: 32px;
  1111. }
  1112. .wp-block-cover,
  1113. .wp-block-cover-image {
  1114. background-color: #111111;
  1115. min-height: 480px;
  1116. margin: inherit;
  1117. /* default & custom background-color */
  1118. /* Treating H2 separately to account for legacy /core styles */
  1119. /**
  1120. * Block Options
  1121. */
  1122. }
  1123. .wp-block-cover .wp-block-cover__inner-container,
  1124. .wp-block-cover .wp-block-cover-image-text,
  1125. .wp-block-cover .wp-block-cover-text,
  1126. .wp-block-cover-image .wp-block-cover__inner-container,
  1127. .wp-block-cover-image .wp-block-cover-image-text,
  1128. .wp-block-cover-image .wp-block-cover-text {
  1129. color: currentColor;
  1130. margin-top: 32px;
  1131. margin-bottom: 32px;
  1132. }
  1133. .wp-block-cover .wp-block-cover__inner-container a,
  1134. .wp-block-cover .wp-block-cover-image-text a,
  1135. .wp-block-cover .wp-block-cover-text a,
  1136. .wp-block-cover-image .wp-block-cover__inner-container a,
  1137. .wp-block-cover-image .wp-block-cover-image-text a,
  1138. .wp-block-cover-image .wp-block-cover-text a {
  1139. color: currentColor;
  1140. }
  1141. .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
  1142. .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
  1143. .wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
  1144. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
  1145. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
  1146. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text {
  1147. color: #FFFFFF;
  1148. }
  1149. .wp-block-cover h2,
  1150. .wp-block-cover-image h2 {
  1151. font-size: 1.728rem;
  1152. letter-spacing: normal;
  1153. line-height: 1.125;
  1154. max-width: inherit;
  1155. text-align: inherit;
  1156. padding: 0;
  1157. }
  1158. .wp-block-cover h2.has-text-align-left,
  1159. .wp-block-cover-image h2.has-text-align-left {
  1160. text-align: right;
  1161. }
  1162. .wp-block-cover h2.has-text-align-center,
  1163. .wp-block-cover-image h2.has-text-align-center {
  1164. text-align: center;
  1165. }
  1166. .wp-block-cover h2.has-text-align-right,
  1167. .wp-block-cover-image h2.has-text-align-right {
  1168. text-align: left;
  1169. }
  1170. .wp-block-cover .wp-block-cover__inner-container,
  1171. .wp-block-cover-image .wp-block-cover__inner-container {
  1172. width: calc(100% - 64px);
  1173. }
  1174. .wp-block-cover .wp-block-cover__inner-container > *,
  1175. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1176. margin-top: 21.312px;
  1177. margin-bottom: 21.312px;
  1178. }
  1179. @media only screen and (min-width: 560px) {
  1180. .wp-block-cover .wp-block-cover__inner-container > *,
  1181. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1182. margin-top: 32px;
  1183. margin-bottom: 32px;
  1184. }
  1185. }
  1186. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1187. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1188. margin-top: 0;
  1189. }
  1190. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1191. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1192. margin-bottom: 0;
  1193. }
  1194. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1195. .wp-block-cover-image.alignleft,
  1196. .wp-block-cover-image.alignright {
  1197. margin-top: 0;
  1198. }
  1199. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1200. .wp-block-cover-image.alignleft > *,
  1201. .wp-block-cover-image.alignright > * {
  1202. margin-top: calc(2 * 32px);
  1203. margin-bottom: calc(2 * 32px);
  1204. padding-right: 16px;
  1205. padding-left: 16px;
  1206. width: 100%;
  1207. }
  1208. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1209. .wp-block-cover-image.has-left-content,
  1210. .wp-block-cover-image.has-right-content {
  1211. justify-content: center;
  1212. }
  1213. .wp-block-file .wp-block-file__button {
  1214. background-color: #23883D;
  1215. color: white;
  1216. font-size: 0.83333rem;
  1217. margin-right: 16px;
  1218. margin-left: 16px;
  1219. }
  1220. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1221. display: inherit;
  1222. }
  1223. .wp-block-file a.wp-block-file__button:active,
  1224. .wp-block-file a.wp-block-file__button:focus,
  1225. .wp-block-file a.wp-block-file__button:hover,
  1226. .wp-block-file a.wp-block-file__button:visited {
  1227. color: white;
  1228. opacity: .85;
  1229. }
  1230. .wp-block-gallery {
  1231. margin: 0;
  1232. }
  1233. .wp-block-gallery .blocks-gallery-image figcaption,
  1234. .wp-block-gallery .blocks-gallery-item figcaption {
  1235. margin: 0;
  1236. color: white;
  1237. font-size: 0.69444rem;
  1238. }
  1239. .wp-block-gallery .blocks-gallery-image,
  1240. .wp-block-gallery .blocks-gallery-item {
  1241. width: calc( (100% - 16px) / 2);
  1242. }
  1243. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1244. max-width: 50%;
  1245. }
  1246. .wp-block-group .wp-block-group__inner-container {
  1247. margin-right: auto;
  1248. margin-left: auto;
  1249. }
  1250. .wp-block-group .wp-block-group__inner-container > * {
  1251. margin-top: 21.312px;
  1252. margin-bottom: 21.312px;
  1253. }
  1254. @media only screen and (min-width: 560px) {
  1255. .wp-block-group .wp-block-group__inner-container > * {
  1256. margin-top: 32px;
  1257. margin-bottom: 32px;
  1258. }
  1259. }
  1260. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1261. margin-top: 0;
  1262. }
  1263. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1264. margin-bottom: 0;
  1265. }
  1266. .wp-block-group.has-background {
  1267. padding: 21.312px;
  1268. }
  1269. @media only screen and (min-width: 560px) {
  1270. .wp-block-group.has-background {
  1271. padding: 32px;
  1272. }
  1273. }
  1274. h1, .h1,
  1275. h2, .h2,
  1276. h3, .h3,
  1277. h4, .h4,
  1278. h5, .h5,
  1279. h6, .h6 {
  1280. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1281. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1282. font-weight: 700;
  1283. clear: both;
  1284. }
  1285. h1, .h1 {
  1286. font-size: 2.0736rem;
  1287. letter-spacing: normal;
  1288. line-height: 1.125;
  1289. }
  1290. h2, .h2 {
  1291. font-size: 1.728rem;
  1292. letter-spacing: normal;
  1293. line-height: 1.125;
  1294. }
  1295. h3, .h3 {
  1296. font-size: 1.44rem;
  1297. letter-spacing: normal;
  1298. line-height: 1.125;
  1299. }
  1300. h4, .h4 {
  1301. font-size: 1.2rem;
  1302. letter-spacing: normal;
  1303. line-height: 1.125;
  1304. }
  1305. h5, .h5 {
  1306. font-size: 1rem;
  1307. letter-spacing: normal;
  1308. line-height: 1.125;
  1309. }
  1310. h6, .h6 {
  1311. font-size: 0.83333rem;
  1312. letter-spacing: normal;
  1313. line-height: 1.125;
  1314. }
  1315. .wp-block-image {
  1316. text-align: center;
  1317. }
  1318. .wp-block-image figcaption {
  1319. color: #6E6E6E;
  1320. font-size: 0.69444rem;
  1321. margin-top: calc(0.5 * 16px);
  1322. margin-bottom: 16px;
  1323. text-align: center;
  1324. }
  1325. .entry-content > *[class="wp-block-image"],
  1326. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1327. margin-top: 0;
  1328. margin-bottom: 0;
  1329. }
  1330. .entry-content > *[class="wp-block-image"] + *,
  1331. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1332. margin-top: 0;
  1333. }
  1334. img {
  1335. height: auto;
  1336. max-width: 100%;
  1337. vertical-align: middle;
  1338. }
  1339. .wp-block-latest-comments {
  1340. padding-right: 0;
  1341. }
  1342. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1343. font-size: 0.83333rem;
  1344. line-height: 1.6;
  1345. /* Vertical margins logic */
  1346. margin-top: 32px;
  1347. margin-bottom: 32px;
  1348. }
  1349. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1350. margin-top: 0;
  1351. }
  1352. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1353. margin-bottom: 0;
  1354. }
  1355. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1356. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1357. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1358. }
  1359. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1360. color: #6E6E6E;
  1361. font-size: 0.83333rem;
  1362. }
  1363. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1364. font-size: 0.83333rem;
  1365. line-height: 1.6;
  1366. margin: 0;
  1367. }
  1368. .wp-block-latest-posts {
  1369. padding-right: 0;
  1370. }
  1371. .wp-block-latest-posts > li {
  1372. /* Vertical margins logic */
  1373. margin-top: 32px;
  1374. margin-bottom: 32px;
  1375. }
  1376. .wp-block-latest-posts > li:first-child {
  1377. margin-top: 0;
  1378. }
  1379. .wp-block-latest-posts > li:last-child {
  1380. margin-bottom: 0;
  1381. }
  1382. .wp-block-latest-posts > li > a {
  1383. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1384. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1385. font-size: 1.2rem;
  1386. font-weight: 700;
  1387. line-height: 1.125;
  1388. }
  1389. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1390. color: #6E6E6E;
  1391. font-size: 0.69444rem;
  1392. line-height: 1.6;
  1393. }
  1394. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1395. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1396. color: currentColor;
  1397. }
  1398. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1399. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1400. font-size: 0.83333rem;
  1401. line-height: 1.6;
  1402. margin: 0;
  1403. }
  1404. .wp-block-latest-posts.alignfull {
  1405. padding-right: 16px;
  1406. padding-left: 16px;
  1407. }
  1408. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1409. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1410. padding-right: 0;
  1411. padding-left: 0;
  1412. }
  1413. .gallery-item {
  1414. display: inline-block;
  1415. text-align: center;
  1416. vertical-align: top;
  1417. width: 100%;
  1418. }
  1419. .gallery-item a {
  1420. display: block;
  1421. }
  1422. .gallery-columns-2 .gallery-item {
  1423. max-width: 50%;
  1424. }
  1425. .gallery-columns-3 .gallery-item {
  1426. max-width: 33.33%;
  1427. }
  1428. .gallery-columns-4 .gallery-item {
  1429. max-width: 25%;
  1430. }
  1431. .gallery-columns-5 .gallery-item {
  1432. max-width: 20%;
  1433. }
  1434. .gallery-columns-6 .gallery-item {
  1435. max-width: 16.66%;
  1436. }
  1437. .gallery-columns-7 .gallery-item {
  1438. max-width: 14.28%;
  1439. }
  1440. .gallery-columns-8 .gallery-item {
  1441. max-width: 12.5%;
  1442. }
  1443. .gallery-columns-9 .gallery-item {
  1444. max-width: 11.11%;
  1445. }
  1446. .gallery-caption {
  1447. display: block;
  1448. }
  1449. ul,
  1450. ol {
  1451. font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  1452. font-family: var(--font-base, "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif);
  1453. margin: 0;
  1454. padding-right: 32px;
  1455. }
  1456. ul {
  1457. list-style-type: disc;
  1458. }
  1459. ol {
  1460. list-style-type: decimal;
  1461. }
  1462. dt {
  1463. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1464. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1465. font-weight: bold;
  1466. }
  1467. dd {
  1468. margin: 0;
  1469. padding-right: 32px;
  1470. }
  1471. .wp-block-media-text {
  1472. /**
  1473. * Block Options
  1474. */
  1475. }
  1476. .wp-block-media-text .wp-block-media-text__content {
  1477. padding: 16px;
  1478. }
  1479. @media only screen and (min-width: 640px) {
  1480. .wp-block-media-text .wp-block-media-text__content {
  1481. padding: 32px;
  1482. }
  1483. }
  1484. .wp-block-media-text .wp-block-media-text__content > * {
  1485. margin-top: 21.312px;
  1486. margin-bottom: 21.312px;
  1487. }
  1488. @media only screen and (min-width: 560px) {
  1489. .wp-block-media-text .wp-block-media-text__content > * {
  1490. margin-top: 32px;
  1491. margin-bottom: 32px;
  1492. }
  1493. }
  1494. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1495. margin-top: 0;
  1496. }
  1497. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1498. margin-bottom: 0;
  1499. }
  1500. .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 {
  1501. color: currentColor;
  1502. }
  1503. @media only screen and (min-width: 560px) {
  1504. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1505. padding-top: 32px;
  1506. padding-bottom: 32px;
  1507. }
  1508. }
  1509. p.has-background {
  1510. padding: 16px 16px;
  1511. }
  1512. .a8c-posts-list__listing {
  1513. list-style: none;
  1514. margin: 0;
  1515. padding: 0;
  1516. }
  1517. .a8c-posts-list__listing:not(:last-child) {
  1518. margin-bottom: calc(3 * 32px);
  1519. }
  1520. .a8c-posts-list-item__featured span {
  1521. color: #FFFFFF;
  1522. background-color: #23883D;
  1523. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1524. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1525. font-weight: bold;
  1526. font-size: 0.83333rem;
  1527. line-height: 1;
  1528. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1529. }
  1530. .a8c-posts-list__item {
  1531. display: block;
  1532. /* Vertical margins logic between posts */
  1533. margin-top: calc(3 * 32px);
  1534. margin-bottom: calc(3 * 32px);
  1535. }
  1536. .a8c-posts-list__item:first-child {
  1537. margin-top: 0;
  1538. }
  1539. .a8c-posts-list__item:last-child {
  1540. margin-bottom: 0;
  1541. }
  1542. .a8c-posts-list__item .entry > * {
  1543. /* Vertical margins logic between post details */
  1544. margin-top: 16px;
  1545. margin-bottom: 16px;
  1546. }
  1547. .a8c-posts-list__item .entry > *:first-child {
  1548. margin-top: 0;
  1549. }
  1550. .a8c-posts-list__item .entry > *:last-child {
  1551. margin-bottom: 0;
  1552. }
  1553. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1554. color: #6E6E6E;
  1555. font-size: 0.83333rem;
  1556. }
  1557. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1558. color: currentColor;
  1559. }
  1560. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1561. color: #195f2b;
  1562. }
  1563. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1564. margin-right: 16px;
  1565. }
  1566. .a8c-posts-list__view-all {
  1567. display: inline-block;
  1568. }
  1569. .wp-block-pullquote {
  1570. padding: calc( 3 * 16px) 0;
  1571. margin-right: 0;
  1572. margin-left: 0;
  1573. text-align: center;
  1574. border-top-color: #CCCCCC;
  1575. border-top-width: 4px;
  1576. border-bottom-color: #CCCCCC;
  1577. border-bottom-width: 4px;
  1578. color: #111111;
  1579. /**
  1580. * Block Options
  1581. */
  1582. }
  1583. .wp-block-pullquote p {
  1584. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1585. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1586. font-size: 1.2rem;
  1587. letter-spacing: normal;
  1588. line-height: 1.125;
  1589. }
  1590. .wp-block-pullquote a {
  1591. color: currentColor;
  1592. }
  1593. .wp-block-pullquote .wp-block-pullquote__citation,
  1594. .wp-block-pullquote cite,
  1595. .wp-block-pullquote footer {
  1596. color: #6E6E6E;
  1597. font-size: 0.83333rem;
  1598. letter-spacing: normal;
  1599. display: block;
  1600. }
  1601. .wp-block-pullquote:not(.is-style-solid-color) {
  1602. background: none;
  1603. }
  1604. .wp-block-pullquote:not(.is-style-solid-color) blockquote {
  1605. padding-right: 0;
  1606. }
  1607. .wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
  1608. text-align: center;
  1609. }
  1610. .wp-block-pullquote.is-style-solid-color {
  1611. background-color: #23883D;
  1612. color: #FFFFFF;
  1613. }
  1614. .wp-block-pullquote.is-style-solid-color blockquote {
  1615. padding-right: 16px;
  1616. padding-left: 16px;
  1617. max-width: inherit;
  1618. }
  1619. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1620. .wp-block-pullquote.is-style-solid-color cite,
  1621. .wp-block-pullquote.is-style-solid-color footer {
  1622. color: currentColor;
  1623. }
  1624. .wp-block-pullquote.alignwide > p,
  1625. .wp-block-pullquote.alignfull > p,
  1626. .wp-block-pullquote.alignwide blockquote,
  1627. .wp-block-pullquote.alignfull blockquote {
  1628. margin-right: auto;
  1629. margin-left: auto;
  1630. }
  1631. .wp-block-quote {
  1632. border-right-color: #23883D;
  1633. margin: 32px 0;
  1634. padding-right: 16px;
  1635. /**
  1636. * Block Options
  1637. */
  1638. }
  1639. .wp-block-quote > * {
  1640. margin-top: 16px;
  1641. margin-bottom: 16px;
  1642. }
  1643. .wp-block-quote > *:first-child {
  1644. margin-top: 0;
  1645. }
  1646. .wp-block-quote > *:last-child {
  1647. margin-bottom: 0;
  1648. }
  1649. .wp-block-quote p {
  1650. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1651. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1652. font-size: 1.2rem;
  1653. letter-spacing: normal;
  1654. line-height: 1.125;
  1655. }
  1656. .wp-block-quote .wp-block-quote__citation,
  1657. .wp-block-quote cite,
  1658. .wp-block-quote footer {
  1659. color: #6E6E6E;
  1660. font-size: 0.83333rem;
  1661. letter-spacing: normal;
  1662. }
  1663. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1664. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1665. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1666. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1667. .wp-block-quote cite,
  1668. [class*="background-color"]:not(.has-background-background-color)
  1669. .wp-block-quote cite,
  1670. [style*="background-color"]
  1671. .wp-block-quote cite,
  1672. .wp-block-cover[style*="background-image"]
  1673. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1674. .wp-block-quote footer,
  1675. [class*="background-color"]:not(.has-background-background-color)
  1676. .wp-block-quote footer,
  1677. [style*="background-color"]
  1678. .wp-block-quote footer,
  1679. .wp-block-cover[style*="background-image"]
  1680. .wp-block-quote footer {
  1681. color: currentColor;
  1682. }
  1683. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1684. border-left-color: #23883D;
  1685. }
  1686. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1687. /* Resetting margins to match _block-container.scss */
  1688. margin-top: 32px;
  1689. margin-bottom: 32px;
  1690. padding: 0;
  1691. }
  1692. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1693. font-size: 1.44rem;
  1694. letter-spacing: normal;
  1695. line-height: 1.125;
  1696. }
  1697. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1698. .wp-block-quote.is-style-large cite,
  1699. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1700. .wp-block-quote.is-large cite,
  1701. .wp-block-quote.is-large footer {
  1702. color: #6E6E6E;
  1703. font-size: 0.83333rem;
  1704. letter-spacing: normal;
  1705. }
  1706. .has-background:not(.has-background-background-color) .wp-block-quote,
  1707. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1708. [style*="background-color"] .wp-block-quote,
  1709. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1710. border-color: currentColor;
  1711. }
  1712. hr {
  1713. border-bottom: 2px solid #CCCCCC;
  1714. clear: both;
  1715. margin-right: auto;
  1716. margin-left: auto;
  1717. }
  1718. hr.wp-block-separator {
  1719. border-bottom: 2px solid #CCCCCC;
  1720. /**
  1721. * Block Options
  1722. */
  1723. }
  1724. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  1725. max-width: 96px;
  1726. }
  1727. hr.wp-block-separator.is-style-dots:before {
  1728. color: #CCCCCC;
  1729. font-size: 1.728rem;
  1730. letter-spacing: 0.83333rem;
  1731. padding-right: 0.83333rem;
  1732. }
  1733. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  1734. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  1735. [style*="background-color"] hr.wp-block-separator,
  1736. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  1737. border-color: currentColor;
  1738. }
  1739. .wp-block-jetpack-slideshow ul {
  1740. margin-right: 0;
  1741. margin-left: 0;
  1742. }
  1743. .wp-block-spacer {
  1744. display: block;
  1745. margin-bottom: 0 !important;
  1746. margin-top: 0 !important;
  1747. }
  1748. @media only screen and (max-width: 559px) {
  1749. .wp-block-spacer[style] {
  1750. height: 16px !important;
  1751. }
  1752. }
  1753. .jetpack_subscription_widget input[type="text"] {
  1754. padding: 16px !important;
  1755. width: 100% !important;
  1756. }
  1757. table,
  1758. .wp-block-table {
  1759. width: 100%;
  1760. min-width: 240px;
  1761. border-collapse: collapse;
  1762. }
  1763. table th,
  1764. .wp-block-table th {
  1765. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1766. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1767. }
  1768. table td,
  1769. table th,
  1770. .wp-block-table td,
  1771. .wp-block-table th {
  1772. padding: calc( 0.5 * 16px);
  1773. border: 1px solid;
  1774. word-break: break-all;
  1775. }
  1776. .wp-block-video figcaption {
  1777. color: #6E6E6E;
  1778. font-size: 0.69444rem;
  1779. margin-top: calc(0.5 * 16px);
  1780. margin-bottom: 16px;
  1781. text-align: center;
  1782. }
  1783. * > figure > video {
  1784. max-width: unset;
  1785. width: 100%;
  1786. vertical-align: middle;
  1787. }
  1788. /* Block Alignments */
  1789. /**
  1790. * .alignleft
  1791. */
  1792. .alignleft {
  1793. text-align: left;
  1794. float: left;
  1795. margin-top: 0;
  1796. margin-right: 16px;
  1797. margin-bottom: 32px;
  1798. }
  1799. /**
  1800. * .aligncenter
  1801. */
  1802. .aligncenter {
  1803. clear: both;
  1804. float: none;
  1805. text-align: center;
  1806. }
  1807. /**
  1808. * .alignright
  1809. */
  1810. .alignright {
  1811. float: right;
  1812. margin-top: 0;
  1813. margin-bottom: 32px;
  1814. margin-left: 16px;
  1815. }
  1816. .entry-content * > .alignleft + *,
  1817. .entry-content * > .alignright + * {
  1818. margin-top: 0;
  1819. }
  1820. /**
  1821. * .aligndefault
  1822. */
  1823. /**
  1824. * .alignwide
  1825. */
  1826. .alignwide {
  1827. clear: both;
  1828. }
  1829. /**
  1830. * .alignfull
  1831. */
  1832. .alignfull {
  1833. clear: both;
  1834. }
  1835. .has-left-content {
  1836. justify-content: flex-start;
  1837. }
  1838. .has-right-content {
  1839. justify-content: flex-end;
  1840. }
  1841. .has-parallax {
  1842. background-attachment: fixed;
  1843. }
  1844. .has-primary-color[class] {
  1845. color: #23883D !important;
  1846. }
  1847. .has-secondary-color[class] {
  1848. color: #0963C4 !important;
  1849. }
  1850. .has-foreground-color[class] {
  1851. color: #111111 !important;
  1852. }
  1853. .has-foreground-light-color[class] {
  1854. color: #6E6E6E !important;
  1855. }
  1856. .has-foreground-dark-color[class] {
  1857. color: #020202 !important;
  1858. }
  1859. .has-background-light-color[class] {
  1860. color: #F7F7F7 !important;
  1861. }
  1862. .has-background-dark-color[class] {
  1863. color: #CCCCCC !important;
  1864. }
  1865. .has-background-color[class] {
  1866. color: #FFFFFF !important;
  1867. }
  1868. .has-background:not(.has-background-background-color) a,
  1869. .has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
  1870. color: currentColor;
  1871. }
  1872. .has-primary-background-color[class] {
  1873. background-color: #23883D !important;
  1874. color: #FFFFFF;
  1875. }
  1876. .has-secondary-background-color[class] {
  1877. background-color: #0963C4 !important;
  1878. color: #FFFFFF;
  1879. }
  1880. .has-foreground-background-color[class] {
  1881. background-color: #111111 !important;
  1882. color: #FFFFFF;
  1883. }
  1884. .has-foreground-light-background-color[class] {
  1885. background-color: #6E6E6E !important;
  1886. color: #FFFFFF;
  1887. }
  1888. .has-foreground-dark-background-color[class] {
  1889. background-color: #020202 !important;
  1890. color: #FFFFFF;
  1891. }
  1892. .has-background-light-background-color[class] {
  1893. background-color: #F7F7F7 !important;
  1894. color: #111111;
  1895. }
  1896. .has-background-dark-background-color[class] {
  1897. background-color: #CCCCCC !important;
  1898. color: #111111;
  1899. }
  1900. .has-background-background-color[class] {
  1901. background-color: #FFFFFF !important;
  1902. color: #111111;
  1903. }
  1904. .is-small-text,
  1905. .has-small-font-size {
  1906. font-size: 0.83333rem;
  1907. }
  1908. .is-regular-text,
  1909. .has-regular-font-size,
  1910. .has-normal-font-size,
  1911. .has-medium-font-size {
  1912. font-size: 1rem;
  1913. }
  1914. .is-large-text,
  1915. .has-large-font-size {
  1916. font-size: 1.44rem;
  1917. line-height: 1.125;
  1918. }
  1919. .is-larger-text,
  1920. .has-larger-font-size,
  1921. .has-huge-font-size {
  1922. font-size: 1.728rem;
  1923. line-height: 1.125;
  1924. }
  1925. .has-drop-cap:not(:focus)::first-letter {
  1926. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1927. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1928. font-size: calc(2 * 2.0736rem);
  1929. font-weight: 700;
  1930. line-height: 0.66;
  1931. text-transform: uppercase;
  1932. font-style: normal;
  1933. float: right;
  1934. margin: 0.1em 0 0 0.1em;
  1935. }
  1936. .has-drop-cap:not(:focus)::after {
  1937. content: "";
  1938. display: table;
  1939. clear: both;
  1940. padding-top: 14px;
  1941. }
  1942. .desktop-only {
  1943. display: none;
  1944. }
  1945. @media only screen and (min-width: 560px) {
  1946. .desktop-only {
  1947. display: block;
  1948. }
  1949. }
  1950. /**
  1951. * Spacing Overrides
  1952. */
  1953. /*
  1954. * Margins
  1955. */
  1956. .margin-top-none {
  1957. margin-top: 0 !important;
  1958. }
  1959. .margin-top-half {
  1960. margin-top: 16px !important;
  1961. }
  1962. .margin-top-default {
  1963. margin-top: 32px !important;
  1964. }
  1965. .margin-right-none {
  1966. margin-right: 0 !important;
  1967. }
  1968. .margin-right-half {
  1969. margin-right: 16px !important;
  1970. }
  1971. .margin-right-default {
  1972. margin-right: 32px !important;
  1973. }
  1974. .margin-bottom-none {
  1975. margin-bottom: 0 !important;
  1976. }
  1977. .margin-bottom-half {
  1978. margin-bottom: 16px !important;
  1979. }
  1980. .margin-bottom-default {
  1981. margin-bottom: 32px !important;
  1982. }
  1983. .margin-left-none {
  1984. margin-left: 0 !important;
  1985. }
  1986. .margin-left-half {
  1987. margin-left: 16px !important;
  1988. }
  1989. .margin-left-default {
  1990. margin-left: 32px !important;
  1991. }
  1992. /*
  1993. * Padding
  1994. */
  1995. .padding-top-none {
  1996. padding-top: 0 !important;
  1997. }
  1998. .padding-top-half {
  1999. padding-top: 16px !important;
  2000. }
  2001. .padding-top-default {
  2002. padding-top: 32px !important;
  2003. }
  2004. .padding-right-none {
  2005. padding-right: 0 !important;
  2006. }
  2007. .padding-right-half {
  2008. padding-right: 16px !important;
  2009. }
  2010. .padding-right-default {
  2011. padding-right: 32px !important;
  2012. }
  2013. .padding-bottom-none {
  2014. padding-bottom: 0 !important;
  2015. }
  2016. .padding-bottom-half {
  2017. padding-bottom: 16px !important;
  2018. }
  2019. .padding-bottom-default {
  2020. padding-bottom: 32px !important;
  2021. }
  2022. .padding-left-none {
  2023. padding-left: 0 !important;
  2024. }
  2025. .padding-left-half {
  2026. padding-left: 16px !important;
  2027. }
  2028. .padding-left-default {
  2029. padding-left: 32px !important;
  2030. }
  2031. /**
  2032. * Components
  2033. * - Similar to Blocks but exist outside of the "current" editor context
  2034. */
  2035. /*
  2036. * Components
  2037. * - Similar to Blocks but exist outside of the "current" editor context
  2038. */
  2039. .site-branding {
  2040. color: #6E6E6E;
  2041. }
  2042. .site-title {
  2043. color: #111111;
  2044. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2045. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2046. letter-spacing: normal;
  2047. line-height: 1;
  2048. }
  2049. .site-title a {
  2050. color: currentColor;
  2051. font-weight: 700;
  2052. }
  2053. .site-title a:link, .site-title a:visited {
  2054. color: currentColor;
  2055. }
  2056. .site-title a:hover {
  2057. color: #23883D;
  2058. }
  2059. .site-description {
  2060. color: currentColor;
  2061. font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  2062. font-family: var(--font-base, "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif);
  2063. }
  2064. body:not(.fse-enabled) .site-title {
  2065. font-size: 1.728rem;
  2066. }
  2067. body:not(.fse-enabled) .site-description {
  2068. font-size: 0.83333rem;
  2069. }
  2070. .main-navigation {
  2071. color: #111111;
  2072. }
  2073. .main-navigation > div {
  2074. display: none;
  2075. }
  2076. .main-navigation #toggle-menu {
  2077. display: inline-block;
  2078. margin: 0;
  2079. }
  2080. .main-navigation #toggle:checked ~ div {
  2081. display: block;
  2082. }
  2083. .main-navigation #toggle:focus + #toggle-menu {
  2084. background-color: #195f2b;
  2085. outline: inherit;
  2086. text-decoration: underline;
  2087. }
  2088. .main-navigation .dropdown-icon.close {
  2089. display: none;
  2090. }
  2091. .main-navigation #toggle:checked + #toggle-menu .open {
  2092. display: none;
  2093. }
  2094. .main-navigation #toggle:checked + #toggle-menu .close {
  2095. display: inline;
  2096. }
  2097. @media only screen and (min-width: 560px) {
  2098. .main-navigation > div {
  2099. display: block;
  2100. }
  2101. .main-navigation #toggle-menu {
  2102. display: none;
  2103. }
  2104. .main-navigation > div > ul > li > ul {
  2105. display: none;
  2106. }
  2107. }
  2108. .main-navigation > div > ul {
  2109. display: flex;
  2110. flex-wrap: wrap;
  2111. list-style: none;
  2112. margin: 0;
  2113. max-width: none;
  2114. padding-right: 0;
  2115. position: relative;
  2116. /* Sub-menus Flyout */
  2117. }
  2118. .main-navigation > div > ul ul {
  2119. padding-right: 0;
  2120. }
  2121. .main-navigation > div > ul li {
  2122. display: block;
  2123. position: relative;
  2124. width: 100%;
  2125. z-index: 1;
  2126. }
  2127. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2128. cursor: pointer;
  2129. z-index: 99999;
  2130. }
  2131. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2132. cursor: pointer;
  2133. z-index: 99999;
  2134. }
  2135. @media only screen and (min-width: 560px) {
  2136. .main-navigation > div > ul li {
  2137. display: inherit;
  2138. width: inherit;
  2139. /* Submenu display */
  2140. }
  2141. .main-navigation > div > ul li:hover > ul,
  2142. .main-navigation > div > ul li[focus-within] > ul,
  2143. .main-navigation > div > ul li ul:hover,
  2144. .main-navigation > div > ul li ul:focus {
  2145. visibility: visible;
  2146. opacity: 1;
  2147. display: block;
  2148. }
  2149. .main-navigation > div > ul li:hover > ul,
  2150. .main-navigation > div > ul li:focus-within > ul,
  2151. .main-navigation > div > ul li ul:hover,
  2152. .main-navigation > div > ul li ul:focus {
  2153. visibility: visible;
  2154. opacity: 1;
  2155. display: block;
  2156. }
  2157. }
  2158. @media only screen and (min-width: 560px) {
  2159. .main-navigation > div > ul > li > a {
  2160. line-height: 1;
  2161. }
  2162. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2163. content: '';
  2164. display: block;
  2165. height: 0;
  2166. width: 0;
  2167. }
  2168. .main-navigation > div > ul > li > a:before {
  2169. margin-bottom: -0.12em;
  2170. }
  2171. .main-navigation > div > ul > li > a:after {
  2172. margin-top: -0.11em;
  2173. }
  2174. .main-navigation > div > ul > li:first-of-type > a {
  2175. padding-right: 0;
  2176. }
  2177. .main-navigation > div > ul > li:last-of-type > a {
  2178. padding-left: 0;
  2179. }
  2180. }
  2181. .main-navigation > div > ul > li > .sub-menu {
  2182. margin: 0;
  2183. position: relative;
  2184. }
  2185. @media only screen and (min-width: 560px) {
  2186. .main-navigation > div > ul > li > .sub-menu {
  2187. background: #FFFFFF;
  2188. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  2189. right: 0;
  2190. top: 100%;
  2191. min-width: max-content;
  2192. opacity: 0;
  2193. position: absolute;
  2194. transition: all 0.5s ease;
  2195. visibility: hidden;
  2196. }
  2197. }
  2198. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2199. width: 100%;
  2200. }
  2201. .main-navigation a {
  2202. color: #23883D;
  2203. display: block;
  2204. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2205. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2206. font-weight: 700;
  2207. padding: 8px 0;
  2208. }
  2209. @media only screen and (min-width: 560px) {
  2210. .main-navigation a {
  2211. padding: 16px;
  2212. }
  2213. }
  2214. .main-navigation a:link, .main-navigation a:visited {
  2215. color: #23883D;
  2216. }
  2217. .main-navigation a:hover {
  2218. color: #195f2b;
  2219. }
  2220. .main-navigation .sub-menu {
  2221. list-style: none;
  2222. margin-right: 0;
  2223. /* Reset the counter for each UL */
  2224. counter-reset: nested-list;
  2225. }
  2226. .main-navigation .sub-menu .menu-item a {
  2227. padding-top: 8px;
  2228. padding-bottom: 8px;
  2229. }
  2230. .main-navigation .sub-menu .menu-item a::before {
  2231. /* Increment the dashes */
  2232. counter-increment: nested-list;
  2233. /* Insert dashes with spaces in between */
  2234. content: "– " counters(nested-list, "– ", none);
  2235. }
  2236. @media only screen and (min-width: 560px) {
  2237. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2238. content: "\00a0\25BC";
  2239. display: inline-block;
  2240. font-size: 0.69444rem;
  2241. height: inherit;
  2242. width: inherit;
  2243. }
  2244. }
  2245. .main-navigation .hide-visually {
  2246. position: absolute !important;
  2247. clip: rect(1px, 1px, 1px, 1px);
  2248. padding: 0 !important;
  2249. border: 0 !important;
  2250. height: 1px !important;
  2251. width: 1px !important;
  2252. overflow: hidden;
  2253. }
  2254. body:not(.fse-enabled) .main-navigation a {
  2255. font-size: 1rem;
  2256. }
  2257. .social-navigation > div > ul {
  2258. align-content: center;
  2259. display: flex;
  2260. list-style: none;
  2261. margin: 0;
  2262. padding-right: 0;
  2263. }
  2264. .social-navigation > div > ul > li:first-of-type > a {
  2265. padding-right: 0;
  2266. }
  2267. .social-navigation > div > ul > li:last-of-type > a {
  2268. padding-left: 0;
  2269. }
  2270. .social-navigation a {
  2271. color: #111111;
  2272. display: inline-block;
  2273. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2274. }
  2275. .social-navigation a:hover {
  2276. color: #23883D;
  2277. }
  2278. .social-navigation svg {
  2279. fill: currentColor;
  2280. vertical-align: middle;
  2281. }
  2282. .site-footer {
  2283. overflow: hidden;
  2284. }
  2285. @media only screen and (min-width: 640px) {
  2286. .site-footer {
  2287. align-items: flex-end;
  2288. display: flex;
  2289. flex-wrap: wrap;
  2290. justify-content: space-between;
  2291. }
  2292. }
  2293. .site-info {
  2294. color: #6E6E6E;
  2295. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2296. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2297. font-size: 0.83333rem;
  2298. }
  2299. @media only screen and (min-width: 640px) {
  2300. .site-info {
  2301. order: 1;
  2302. flex: 1 0 50%;
  2303. margin-top: 0;
  2304. margin-bottom: 0;
  2305. }
  2306. }
  2307. .site-info .site-name {
  2308. font-weight: bold;
  2309. }
  2310. .site-info a {
  2311. color: currentColor;
  2312. }
  2313. .site-info a:link, .site-info a:visited {
  2314. color: currentColor;
  2315. }
  2316. .site-info a:hover {
  2317. color: #195f2b;
  2318. }
  2319. .footer-navigation {
  2320. display: inline;
  2321. }
  2322. @media only screen and (min-width: 640px) {
  2323. .footer-navigation {
  2324. flex: 1 0 50%;
  2325. order: 2;
  2326. margin-top: 0;
  2327. margin-bottom: 0;
  2328. text-align: left;
  2329. }
  2330. }
  2331. .footer-navigation > div {
  2332. display: inline;
  2333. }
  2334. .footer-navigation .footer-menu {
  2335. color: #6E6E6E;
  2336. margin: 0;
  2337. padding-right: 0;
  2338. }
  2339. @media only screen and (min-width: 640px) {
  2340. .footer-navigation .footer-menu {
  2341. display: flex;
  2342. flex-wrap: wrap;
  2343. justify-content: flex-end;
  2344. }
  2345. }
  2346. .footer-navigation .footer-menu > li {
  2347. display: inline;
  2348. }
  2349. .footer-navigation .footer-menu > li:first-of-type > a {
  2350. padding-right: 0;
  2351. }
  2352. .footer-navigation .footer-menu > li:last-of-type {
  2353. padding-left: 0;
  2354. }
  2355. .footer-navigation .footer-menu a {
  2356. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2357. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2358. font-weight: 700;
  2359. padding: 16px;
  2360. color: currentColor;
  2361. }
  2362. .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
  2363. color: currentColor;
  2364. }
  2365. .footer-navigation .footer-menu a:hover {
  2366. color: #195f2b;
  2367. }
  2368. body:not(.fse-enabled) .footer-menu a {
  2369. font-size: 0.83333rem;
  2370. }
  2371. .entry-title {
  2372. font-size: 1.728rem;
  2373. letter-spacing: normal;
  2374. line-height: 1.125;
  2375. }
  2376. .entry-meta,
  2377. .entry-footer {
  2378. color: #6E6E6E;
  2379. clear: both;
  2380. float: none;
  2381. font-size: 0.83333rem;
  2382. display: block;
  2383. }
  2384. .entry-meta > span,
  2385. .entry-footer > span {
  2386. display: inline-block;
  2387. margin-left: 16px;
  2388. }
  2389. .entry-meta > span > *,
  2390. .entry-footer > span > * {
  2391. display: inline-block;
  2392. vertical-align: middle;
  2393. }
  2394. .entry-meta > span:last-child,
  2395. .entry-footer > span:last-child {
  2396. margin-left: 0;
  2397. }
  2398. .entry-meta > span .published + .updated,
  2399. .entry-footer > span .published + .updated {
  2400. display: none;
  2401. }
  2402. .entry-meta a,
  2403. .entry-footer a {
  2404. color: currentColor;
  2405. }
  2406. .entry-meta a:hover, .entry-meta a:active,
  2407. .entry-footer a:hover,
  2408. .entry-footer a:active {
  2409. color: #195f2b;
  2410. }
  2411. .entry-meta .svg-icon,
  2412. .entry-footer .svg-icon {
  2413. fill: currentColor;
  2414. position: relative;
  2415. display: inline-block;
  2416. vertical-align: middle;
  2417. margin-left: calc(0.25 * 16px);
  2418. }
  2419. /**
  2420. * Entry Content
  2421. */
  2422. .entry-content p {
  2423. word-wrap: break-word;
  2424. }
  2425. .entry-content .more-link {
  2426. display: block;
  2427. color: inherit;
  2428. }
  2429. .entry-content .more-link:after {
  2430. content: "\02192";
  2431. display: inline-block;
  2432. margin-right: 0.5em;
  2433. }
  2434. .entry-content .more-link:hover {
  2435. text-decoration: none;
  2436. }
  2437. .entry-content > iframe[style] {
  2438. margin: 32px 0 !important;
  2439. max-width: 100% !important;
  2440. }
  2441. @media only screen and (min-width: 560px) {
  2442. .entry-content > iframe[style] {
  2443. max-width: 32px !important;
  2444. }
  2445. }
  2446. .entry-attachment {
  2447. text-align: center;
  2448. }
  2449. /**
  2450. * Post Thumbnails
  2451. */
  2452. .post-thumbnail {
  2453. text-align: center;
  2454. }
  2455. .post-thumbnail .post-thumbnail-inner {
  2456. display: block;
  2457. }
  2458. /**
  2459. * Author
  2460. */
  2461. /* Author description */
  2462. .site-main > article > .author-bio {
  2463. margin-top: calc(2 * 32px);
  2464. }
  2465. .author-bio .author-title {
  2466. font-size: 1.44rem;
  2467. }
  2468. /* Next/Previous navigation */
  2469. .post-navigation .meta-nav {
  2470. font-size: 0.83333rem;
  2471. }
  2472. .post-navigation .post-title {
  2473. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2474. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2475. font-size: 1.44rem;
  2476. font-weight: 600;
  2477. }
  2478. .post-navigation .nav-next,
  2479. .post-navigation .nav-previous {
  2480. margin-top: 32px;
  2481. margin-bottom: 32px;
  2482. }
  2483. .post-navigation .nav-next:first-child,
  2484. .post-navigation .nav-previous:first-child {
  2485. margin-top: 0;
  2486. }
  2487. .post-navigation .nav-next:last-child,
  2488. .post-navigation .nav-previous:last-child {
  2489. margin-bottom: 0;
  2490. }
  2491. .pagination .nav-links {
  2492. justify-content: start;
  2493. margin: 0 calc(-0.66 * 16px);
  2494. }
  2495. .pagination .nav-links > * {
  2496. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2497. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2498. font-size: 1.2rem;
  2499. font-weight: 600;
  2500. padding-right: calc(0.66 * 16px);
  2501. padding-left: calc(0.66 * 16px);
  2502. }
  2503. .pagination .nav-links .svg-icon {
  2504. display: inline-block;
  2505. vertical-align: middle;
  2506. }
  2507. @media only screen and (min-width: 560px) {
  2508. .nav-links {
  2509. display: flex;
  2510. justify-content: space-between;
  2511. }
  2512. .nav-links .nav-next,
  2513. .nav-links .nav-previous {
  2514. flex: 0 1 auto;
  2515. margin-bottom: inherit;
  2516. margin-top: inherit;
  2517. max-width: calc(50% - (0.5 * 16px));
  2518. }
  2519. .nav-links .nav-next {
  2520. text-align: left;
  2521. }
  2522. }
  2523. /**
  2524. * Comments Wrapper
  2525. */
  2526. .comments-area > * {
  2527. margin-top: 32px;
  2528. margin-bottom: 32px;
  2529. }
  2530. .comments-area > *:first-child {
  2531. margin-top: 0;
  2532. }
  2533. .comments-area > *:last-child {
  2534. margin-bottom: 0;
  2535. }
  2536. /**
  2537. * Comment Title
  2538. */
  2539. .comments-title {
  2540. font-size: 1.44rem;
  2541. letter-spacing: normal;
  2542. }
  2543. .comment-reply-title {
  2544. font-size: 1.728rem;
  2545. display: flex;
  2546. justify-content: space-between;
  2547. align-items: center;
  2548. }
  2549. .comment-reply-title small {
  2550. font-size: 1rem;
  2551. font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  2552. font-family: var(--font-base, "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif);
  2553. letter-spacing: normal;
  2554. line-height: 1.125;
  2555. }
  2556. /**
  2557. * Comment Lists
  2558. */
  2559. .comment-list {
  2560. border-bottom: 1px solid #CCCCCC;
  2561. padding-right: 0;
  2562. list-style: none;
  2563. }
  2564. .comment-list > li {
  2565. border-top: 1px solid #CCCCCC;
  2566. margin-top: 32px;
  2567. margin-bottom: 32px;
  2568. }
  2569. .comment-list .children {
  2570. list-style: none;
  2571. padding-right: 16px;
  2572. }
  2573. .comment-list .children > li {
  2574. border-top: 1px solid #CCCCCC;
  2575. margin-top: 32px;
  2576. margin-bottom: 32px;
  2577. }
  2578. @media only screen and (min-width: 560px) {
  2579. .comment-list .children {
  2580. padding-right: 32px;
  2581. }
  2582. }
  2583. /**
  2584. * Comment Meta
  2585. */
  2586. .comment-meta {
  2587. margin-left: calc( $avatar-size + (0.5 * 16px));
  2588. }
  2589. @media only screen and (min-width: 560px) {
  2590. .comment-meta {
  2591. margin-left: inherit;
  2592. }
  2593. }
  2594. @media only screen and (min-width: 560px) {
  2595. .comment-meta .comment-author {
  2596. display: flex;
  2597. align-items: center;
  2598. }
  2599. }
  2600. .comment-meta .comment-author .avatar {
  2601. display: block;
  2602. position: absolute;
  2603. left: 0;
  2604. }
  2605. @media only screen and (min-width: 560px) {
  2606. .comment-meta .comment-author .avatar {
  2607. margin-left: 16px;
  2608. display: inherit;
  2609. position: inherit;
  2610. left: inherit;
  2611. }
  2612. }
  2613. .comment-meta .comment-metadata {
  2614. color: #111111;
  2615. }
  2616. .comment-meta .comment-metadata a {
  2617. color: currentColor;
  2618. }
  2619. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  2620. color: #195f2b;
  2621. }
  2622. @media only screen and (min-width: 560px) {
  2623. .comment-meta {
  2624. align-items: center;
  2625. display: flex;
  2626. justify-content: space-between;
  2627. }
  2628. }
  2629. .comment-metadata,
  2630. .reply {
  2631. font-size: 0.69444rem;
  2632. line-height: 1.125;
  2633. }
  2634. .reply {
  2635. text-align: left;
  2636. }
  2637. @media only screen and (min-width: 560px) {
  2638. .reply {
  2639. text-align: right;
  2640. }
  2641. }
  2642. .bypostauthor {
  2643. display: block;
  2644. }
  2645. .says {
  2646. display: none;
  2647. }
  2648. .comment-author .fn,
  2649. .pingback .url,
  2650. .trackback .url {
  2651. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2652. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2653. }
  2654. /**
  2655. * Comment body
  2656. */
  2657. .comment-body {
  2658. position: relative;
  2659. }
  2660. .comment-body > * {
  2661. margin-top: 32px;
  2662. margin-bottom: 32px;
  2663. }
  2664. .comment-content a {
  2665. word-wrap: break-word;
  2666. }
  2667. /**
  2668. * Pingbacks & Trackbacks
  2669. */
  2670. .pingback .comment-body,
  2671. .trackback .comment-body {
  2672. margin-top: 32px;
  2673. margin-bottom: 32px;
  2674. }
  2675. /**
  2676. * Comment Form
  2677. */
  2678. .comment-respond {
  2679. margin-top: calc(2 * 32px);
  2680. }
  2681. .comment-respond > * {
  2682. margin-top: 16px;
  2683. margin-bottom: 16px;
  2684. }
  2685. .comment-respond > *:first-child {
  2686. margin-top: 0;
  2687. }
  2688. .comment-respond > *:last-child {
  2689. margin-bottom: 0;
  2690. }
  2691. .comment-form > p {
  2692. margin-top: 16px;
  2693. margin-bottom: 16px;
  2694. }
  2695. .comment-form > p:first-of-type {
  2696. margin-top: 0;
  2697. }
  2698. .comment-form > p:last-of-type {
  2699. margin-bottom: 0;
  2700. }
  2701. .comment-form > p label,
  2702. .comment-form > p input[type="email"],
  2703. .comment-form > p input[type="text"],
  2704. .comment-form > p input[type="url"],
  2705. .comment-form > p textarea {
  2706. width: 100%;
  2707. }
  2708. .comment-form > p.comment-form-cookies-consent > label {
  2709. width: auto;
  2710. }
  2711. @media only screen and (min-width: 560px) {
  2712. .comment-form > p {
  2713. display: flex;
  2714. }
  2715. .comment-form > p label {
  2716. width: 25%;
  2717. }
  2718. .comment-form > p.comment-form-cookies-consent {
  2719. margin-right: 25%;
  2720. }
  2721. .comment-form > p.comment-form-cookies-consent > label {
  2722. width: auto;
  2723. display: inline-block;
  2724. }
  2725. .comment-form > p input[type="email"],
  2726. .comment-form > p input[type="text"],
  2727. .comment-form > p input[type="url"],
  2728. .comment-form > p textarea {
  2729. width: 75%;
  2730. }
  2731. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  2732. display: block;
  2733. }
  2734. }
  2735. /**
  2736. * Comment Nav
  2737. */
  2738. .comment-navigation a {
  2739. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2740. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2741. font-size: 1.2rem;
  2742. font-weight: 600;
  2743. }
  2744. .widget-area {
  2745. flex: 0 0 100%;
  2746. }
  2747. /* Utilities */
  2748. img#wpstats {
  2749. position: absolute !important;
  2750. clip: rect(0, 0, 0, 0);
  2751. padding: 0 !important;
  2752. border: 0 !important;
  2753. height: 0 !important;
  2754. width: 0 !important;
  2755. overflow: hidden;
  2756. }
  2757. /**
  2758. * Site Pages
  2759. * - Page specific styles
  2760. */
  2761. /**
  2762. * Site Pages
  2763. * - Page specific styles
  2764. */
  2765. .sticky-post {
  2766. color: #FFFFFF;
  2767. background-color: #23883D;
  2768. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2769. font-family: var(--font-headings, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2770. font-weight: bold;
  2771. font-size: 0.83333rem;
  2772. line-height: 1;
  2773. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  2774. }
  2775. .page-title {
  2776. font-size: 1.2rem;
  2777. }
  2778. /**
  2779. * Responsive Logic
  2780. * - Loading this last to respect cascaing rules
  2781. */
  2782. /**
  2783. * Page Layout Styles & Repsonsive Styles
  2784. */
  2785. /* Responsive width-content overrides */
  2786. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2787. .wp-block-pullquote.alignfull > p,
  2788. .wp-block-pullquote.alignwide blockquote,
  2789. .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),
  2790. .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 {
  2791. max-width: 100%;
  2792. margin-right: auto;
  2793. margin-left: auto;
  2794. }
  2795. @media only screen and (min-width: 560px) {
  2796. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2797. .wp-block-pullquote.alignfull > p,
  2798. .wp-block-pullquote.alignwide blockquote,
  2799. .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),
  2800. .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 {
  2801. max-width: calc( 560px - 32px);
  2802. }
  2803. }
  2804. @media only screen and (min-width: 640px) {
  2805. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2806. .wp-block-pullquote.alignfull > p,
  2807. .wp-block-pullquote.alignwide blockquote,
  2808. .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),
  2809. .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 {
  2810. max-width: calc( 640px - 32px);
  2811. }
  2812. }
  2813. @media only screen and (min-width: 782px) {
  2814. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2815. .wp-block-pullquote.alignfull > p,
  2816. .wp-block-pullquote.alignwide blockquote,
  2817. .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),
  2818. .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 {
  2819. max-width: calc( 782px - 32px);
  2820. }
  2821. }
  2822. @media only screen and (min-width: 1024px) {
  2823. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2824. .wp-block-pullquote.alignfull > p,
  2825. .wp-block-pullquote.alignwide blockquote,
  2826. .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),
  2827. .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 {
  2828. max-width: calc( 782px - 32px);
  2829. }
  2830. }
  2831. @media only screen and (min-width: 1280px) {
  2832. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2833. .wp-block-pullquote.alignfull > p,
  2834. .wp-block-pullquote.alignwide blockquote,
  2835. .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),
  2836. .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 {
  2837. max-width: calc( 782px - 32px);
  2838. }
  2839. }
  2840. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
  2841. margin-right: auto;
  2842. margin-left: auto;
  2843. max-width: 100%;
  2844. /* Matches normal width until desktop breakpoint */
  2845. }
  2846. @media only screen and (min-width: 560px) {
  2847. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
  2848. max-width: calc( 560px - 32px);
  2849. }
  2850. }
  2851. @media only screen and (min-width: 640px) {
  2852. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
  2853. max-width: calc( 640px - 32px);
  2854. }
  2855. }
  2856. @media only screen and (min-width: 782px) {
  2857. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
  2858. max-width: calc( 782px - 32px);
  2859. }
  2860. }
  2861. @media only screen and (min-width: 1024px) {
  2862. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
  2863. width: calc(calc( 782px - 32px) + 256px);
  2864. max-width: calc(100% - 32px);
  2865. }
  2866. }
  2867. @media only screen and (min-width: 1280px) {
  2868. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
  2869. width: calc(calc( 782px - 32px) + 256px);
  2870. max-width: calc(100% - 32px);
  2871. }
  2872. }
  2873. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide, #colophon {
  2874. width: calc(100% + 256px);
  2875. max-width: 100%;
  2876. margin-right: auto;
  2877. margin-left: auto;
  2878. }
  2879. @media only screen and (min-width: 560px) {
  2880. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide, #colophon {
  2881. width: calc(calc( 560px - 32px) + 256px);
  2882. max-width: 100%;
  2883. }
  2884. }
  2885. @media only screen and (min-width: 640px) {
  2886. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide, #colophon {
  2887. width: calc(calc( 640px - 32px) + 256px);
  2888. max-width: 100%;
  2889. }
  2890. }
  2891. @media only screen and (min-width: 782px) {
  2892. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide, #colophon {
  2893. width: calc(calc( 782px - 32px) + 256px);
  2894. max-width: 100%;
  2895. }
  2896. }
  2897. @media only screen and (min-width: 1024px) {
  2898. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide, #colophon {
  2899. width: calc(calc( 782px - 32px) + 256px);
  2900. max-width: 100%;
  2901. }
  2902. }
  2903. @media only screen and (min-width: 1280px) {
  2904. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide, #colophon {
  2905. width: calc(calc( 782px - 32px) + 256px);
  2906. max-width: 100%;
  2907. }
  2908. }
  2909. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  2910. margin-right: -16px;
  2911. margin-left: -16px;
  2912. width: calc(100% + 32px);
  2913. max-width: calc(100% + 32px);
  2914. /* Letting the box-model do most of the work here. */
  2915. }
  2916. @media only screen and (min-width: 560px) {
  2917. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  2918. margin-right: inherit;
  2919. margin-left: inherit;
  2920. width: inherit;
  2921. max-width: inherit;
  2922. }
  2923. }
  2924. .entry-content > .alignright {
  2925. margin-right: 16px;
  2926. }
  2927. @media only screen and (min-width: 560px) {
  2928. .entry-content > .alignright {
  2929. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  2930. }
  2931. }
  2932. @media only screen and (min-width: 640px) {
  2933. .entry-content > .alignright {
  2934. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  2935. }
  2936. }
  2937. @media only screen and (min-width: 782px) {
  2938. .entry-content > .alignright {
  2939. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2940. }
  2941. }
  2942. @media only screen and (min-width: 1024px) {
  2943. .entry-content > .alignright {
  2944. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2945. }
  2946. }
  2947. @media only screen and (min-width: 1280px) {
  2948. .entry-content > .alignright {
  2949. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2950. }
  2951. }
  2952. .entry-content > .alignleft {
  2953. margin-left: 16px;
  2954. }
  2955. @media only screen and (min-width: 560px) {
  2956. .entry-content > .alignleft {
  2957. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  2958. }
  2959. }
  2960. @media only screen and (min-width: 640px) {
  2961. .entry-content > .alignleft {
  2962. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  2963. }
  2964. }
  2965. @media only screen and (min-width: 782px) {
  2966. .entry-content > .alignleft {
  2967. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2968. }
  2969. }
  2970. @media only screen and (min-width: 1024px) {
  2971. .entry-content > .alignleft {
  2972. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2973. }
  2974. }
  2975. @media only screen and (min-width: 1280px) {
  2976. .entry-content > .alignleft {
  2977. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2978. }
  2979. }
  2980. /**
  2981. * Vendors
  2982. * - Styles for 3rd party plugins and WP extensions
  2983. */
  2984. /**
  2985. * Vendors
  2986. * - 3rd-party compatibility styles
  2987. */
  2988. /**
  2989. * Subscription Form
  2990. */
  2991. .wp-block-jetpack-subscriptions form > * {
  2992. margin-top: 21.312px;
  2993. margin-bottom: 21.312px;
  2994. }
  2995. @media only screen and (min-width: 560px) {
  2996. .wp-block-jetpack-subscriptions form > * {
  2997. margin-top: 32px;
  2998. margin-bottom: 32px;
  2999. }
  3000. }
  3001. .wp-block-jetpack-subscriptions form > *:first-child {
  3002. margin-top: 0;
  3003. }
  3004. .wp-block-jetpack-subscriptions form > *:last-child {
  3005. margin-bottom: 0;
  3006. }
  3007. /**
  3008. * Cookies & Consents Banner
  3009. */
  3010. body .widget_eu_cookie_law_widget {
  3011. background: transparent;
  3012. bottom: 0;
  3013. right: 0;
  3014. padding: 8px;
  3015. left: 0;
  3016. }
  3017. body .widget_eu_cookie_law_widget.widget.top {
  3018. bottom: auto;
  3019. top: 0;
  3020. }
  3021. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3022. background: #FFFFFF;
  3023. border: 1px solid #CCCCCC;
  3024. color: #111111;
  3025. font-size: 0.83333rem;
  3026. line-height: inherit;
  3027. padding: 16px;
  3028. }
  3029. @media (max-width: 600px) {
  3030. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3031. padding-bottom: 80px;
  3032. }
  3033. }
  3034. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3035. background: #111111;
  3036. border-color: #020202;
  3037. color: #FFFFFF;
  3038. }
  3039. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3040. background: #FFFFFF;
  3041. color: #111111;
  3042. }
  3043. 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 {
  3044. background: #CCCCCC;
  3045. }
  3046. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3047. margin: 0;
  3048. margin-right: 32px;
  3049. }
  3050. @media (max-width: 600px) {
  3051. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3052. bottom: 16px;
  3053. right: 16px;
  3054. margin: 0;
  3055. }
  3056. }
  3057. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3058. top: 32px;
  3059. }
  3060. @media (max-width: 782px) {
  3061. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3062. top: 46px;
  3063. }
  3064. }
  3065. /**
  3066. * Mailchimp Subscription Form
  3067. */
  3068. .wp-block-jetpack-mailchimp p {
  3069. margin-top: 21.312px;
  3070. margin-bottom: 21.312px;
  3071. }
  3072. @media only screen and (min-width: 560px) {
  3073. .wp-block-jetpack-mailchimp p {
  3074. margin-top: 32px;
  3075. margin-bottom: 32px;
  3076. }
  3077. }
  3078. .wp-block-jetpack-mailchimp p:first-child {
  3079. margin-top: 0;
  3080. }
  3081. .wp-block-jetpack-mailchimp p:last-child {
  3082. margin-bottom: 0;
  3083. }
  3084. .wp-block-jetpack-mailchimp input[type=email] {
  3085. width: 100%;
  3086. }
  3087. #wp-block-jetpack-mailchimp_consent-text {
  3088. font-size: 0.83333rem;
  3089. }
  3090. /**
  3091. * Child Theme Extra Styles
  3092. */
  3093. /**
  3094. * Extra Child Theme Styles
  3095. */
  3096. a {
  3097. text-decoration: none;
  3098. }
  3099. .wp-block-cover a,
  3100. .wp-block-cover-image a,
  3101. .wp-block-media-text a,
  3102. p:not(.site-title) a {
  3103. text-decoration: underline;
  3104. }
  3105. .wp-block-cover a.wp-block-button__link, .wp-block-cover a:hover,
  3106. .wp-block-cover-image a.wp-block-button__link,
  3107. .wp-block-cover-image a:hover,
  3108. .wp-block-media-text a.wp-block-button__link,
  3109. .wp-block-media-text a:hover,
  3110. p:not(.site-title) a.wp-block-button__link,
  3111. p:not(.site-title) a:hover {
  3112. text-decoration: none;
  3113. }
  3114. .site-branding,
  3115. .main-navigation,
  3116. .entry-header,
  3117. .entry-footer,
  3118. .page-title,
  3119. .author-title,
  3120. .comments-title,
  3121. .comment-reply-title,
  3122. .logged-in-as,
  3123. .comment-notes {
  3124. text-align: center;
  3125. }
  3126. .comment-reply-title {
  3127. display: inherit;
  3128. }
  3129. .comment .comment-reply-title {
  3130. display: flex;
  3131. }
  3132. .main-navigation > div {
  3133. text-align: right;
  3134. }
  3135. .main-navigation > div > ul,
  3136. .social-navigation > div > ul,
  3137. .pagination .nav-links {
  3138. justify-content: center;
  3139. }
  3140. /**
  3141. * Header
  3142. */
  3143. #masthead {
  3144. margin-left: auto;
  3145. margin-right: auto;
  3146. padding-top: 32px;
  3147. padding-bottom: 32px;
  3148. }
  3149. @media only screen and (min-width: 560px) {
  3150. #masthead {
  3151. padding-top: 64px;
  3152. padding-bottom: 48px;
  3153. }
  3154. }
  3155. .site-logo + .site-title {
  3156. margin-top: 8px;
  3157. }
  3158. .site-title + .site-description {
  3159. margin-top: 8px;
  3160. }
  3161. /**
  3162. * Navigation
  3163. */
  3164. @media only screen and (min-width: 560px) {
  3165. .site-header > *.main-navigation {
  3166. margin-bottom: 0;
  3167. }
  3168. .site-header > *.main-navigation > div > ul > li > .sub-menu {
  3169. border: 1px solid #CCCCCC;
  3170. border-radius: 5px;
  3171. box-shadow: none;
  3172. box-sizing: content-box;
  3173. }
  3174. }
  3175. @media only screen and (min-width: 560px) {
  3176. .site-header > *.social-navigation {
  3177. margin-top: 0;
  3178. }
  3179. }
  3180. /**
  3181. * Main
  3182. */
  3183. #main {
  3184. padding-top: 0;
  3185. }
  3186. .site-main > article > .entry-header {
  3187. margin-top: 21.312px;
  3188. }
  3189. @media only screen and (min-width: 560px) {
  3190. .site-main > article > .entry-header {
  3191. margin-top: 32px;
  3192. }
  3193. }
  3194. .entry-title a,
  3195. .page-title a,
  3196. .a8c-posts-list .a8c-posts-list-item__title a {
  3197. color: inherit;
  3198. text-decoration: none;
  3199. }
  3200. .entry-title a:active, .entry-title a:focus, .entry-title a:hover,
  3201. .page-title a:active,
  3202. .page-title a:focus,
  3203. .page-title a:hover,
  3204. .a8c-posts-list .a8c-posts-list-item__title a:active,
  3205. .a8c-posts-list .a8c-posts-list-item__title a:focus,
  3206. .a8c-posts-list .a8c-posts-list-item__title a:hover {
  3207. color: #23883D;
  3208. }
  3209. .sticky-post,
  3210. .a8c-posts-list .a8c-posts-list-item__featured span {
  3211. padding: 4px 10.56px;
  3212. }
  3213. /**
  3214. * Next/Previous navigation
  3215. */
  3216. .post-navigation .meta-nav {
  3217. color: #6E6E6E;
  3218. }
  3219. .post-navigation .post-title {
  3220. font-size: 1.2rem;
  3221. line-height: 1.125;
  3222. }
  3223. /**
  3224. * Comments
  3225. */
  3226. .logged-in-as,
  3227. .comment-notes,
  3228. .comment-form-cookies-consent {
  3229. font-size: 0.83333rem;
  3230. }
  3231. .comment-form-cookies-consent input[type=checkbox] + label {
  3232. line-height: 1.6;
  3233. }
  3234. .comment-notes {
  3235. color: #6E6E6E;
  3236. }
  3237. .comment-form > p:not(.comment-form-cookies-consent) label {
  3238. font-weight: 700;
  3239. }
  3240. .comment-respond .form-submit {
  3241. display: flex;
  3242. justify-content: flex-end;
  3243. }
  3244. /**
  3245. * Blocks
  3246. */
  3247. .a8c-posts-list {
  3248. text-align: center;
  3249. }
  3250. .a8c-posts-list-item__excerpt {
  3251. text-align: right;
  3252. }
  3253. .wp-block-cover h1,
  3254. .wp-block-cover-image h1 {
  3255. font-size: 2.98598rem;
  3256. }
  3257. .wp-block-cover h2,
  3258. .wp-block-cover-image h2 {
  3259. font-size: 2.48832rem;
  3260. }
  3261. .wp-block-cover h3,
  3262. .wp-block-cover-image h3 {
  3263. font-size: 2.0736rem;
  3264. }
  3265. .wp-block-cover h4,
  3266. .wp-block-cover-image h4 {
  3267. font-size: 1.728rem;
  3268. }
  3269. .wp-block-cover h5,
  3270. .wp-block-cover-image h5 {
  3271. font-size: 1.44rem;
  3272. }
  3273. .wp-block-cover h6,
  3274. .wp-block-cover-image h6 {
  3275. font-size: 1.2rem;
  3276. }
  3277. @media only screen and (min-width: 560px) {
  3278. .wp-block-cover,
  3279. .wp-block-cover-image {
  3280. min-height: 60vh;
  3281. }
  3282. }
  3283. @media only screen and (min-width: 782px) {
  3284. .wp-block-cover,
  3285. .wp-block-cover-image {
  3286. min-height: 80vh;
  3287. }
  3288. }
  3289. /**
  3290. * Widgets
  3291. */
  3292. .widget select {
  3293. max-width: 100%;
  3294. }
  3295. .widget-title {
  3296. font-size: 1.44rem;
  3297. margin-bottom: 16px;
  3298. }
  3299. .widget_archive ul,
  3300. .widget_categories ul,
  3301. .widget_links ul,
  3302. .widget_meta ul,
  3303. .widget_nav_menu ul,
  3304. .widget_pages ul,
  3305. .widget_recent_comments ul,
  3306. .widget_recent_entries ul,
  3307. .widget_rss ul,
  3308. .widget_rss_links ul,
  3309. .widget_top-posts ul,
  3310. .widget_authors ul,
  3311. .widget_jp_blogs_i_follow ul,
  3312. .widget_top-click ul,
  3313. .widget_upcoming_events_widget ul {
  3314. padding-right: 0;
  3315. margin-left: 0;
  3316. list-style: none;
  3317. }
  3318. .widget_archive ul li,
  3319. .widget_categories ul li,
  3320. .widget_links ul li,
  3321. .widget_meta ul li,
  3322. .widget_nav_menu ul li,
  3323. .widget_pages ul li,
  3324. .widget_recent_comments ul li,
  3325. .widget_recent_entries ul li,
  3326. .widget_rss ul li,
  3327. .widget_rss_links ul li,
  3328. .widget_top-posts ul li,
  3329. .widget_authors ul li,
  3330. .widget_jp_blogs_i_follow ul li,
  3331. .widget_top-click ul li,
  3332. .widget_upcoming_events_widget ul li {
  3333. color: #6E6E6E;
  3334. font-weight: 700;
  3335. margin-top: 16px;
  3336. margin-bottom: 16px;
  3337. }
  3338. .widget_archive ul ul,
  3339. .widget_categories ul ul,
  3340. .widget_links ul ul,
  3341. .widget_meta ul ul,
  3342. .widget_nav_menu ul ul,
  3343. .widget_pages ul ul,
  3344. .widget_recent_comments ul ul,
  3345. .widget_recent_entries ul ul,
  3346. .widget_rss ul ul,
  3347. .widget_rss_links ul ul,
  3348. .widget_top-posts ul ul,
  3349. .widget_authors ul ul,
  3350. .widget_jp_blogs_i_follow ul ul,
  3351. .widget_top-click ul ul,
  3352. .widget_upcoming_events_widget ul ul {
  3353. counter-reset: submenu;
  3354. }
  3355. .widget_archive ul ul > li > a::before,
  3356. .widget_categories ul ul > li > a::before,
  3357. .widget_links ul ul > li > a::before,
  3358. .widget_meta ul ul > li > a::before,
  3359. .widget_nav_menu ul ul > li > a::before,
  3360. .widget_pages ul ul > li > a::before,
  3361. .widget_recent_comments ul ul > li > a::before,
  3362. .widget_recent_entries ul ul > li > a::before,
  3363. .widget_rss ul ul > li > a::before,
  3364. .widget_rss_links ul ul > li > a::before,
  3365. .widget_top-posts ul ul > li > a::before,
  3366. .widget_authors ul ul > li > a::before,
  3367. .widget_jp_blogs_i_follow ul ul > li > a::before,
  3368. .widget_top-click ul ul > li > a::before,
  3369. .widget_upcoming_events_widget ul ul > li > a::before {
  3370. font-weight: normal;
  3371. content: "– " counters(submenu, "– ", none);
  3372. counter-increment: submenu;
  3373. }
  3374. .widget_tag_cloud .tagcloud {
  3375. font-weight: 700;
  3376. }
  3377. .widget_search .search-field {
  3378. width: 100%;
  3379. }
  3380. @media only screen and (min-width: 560px) {
  3381. .widget_search .search-field {
  3382. width: auto;
  3383. }
  3384. }
  3385. .widget_search .search-submit {
  3386. display: block;
  3387. margin-top: 1rem;
  3388. }
  3389. .widget_calendar .calendar_wrap {
  3390. text-align: center;
  3391. }
  3392. .widget_calendar .calendar_wrap table td,
  3393. .widget_calendar .calendar_wrap table th {
  3394. border: none;
  3395. }
  3396. .widget_calendar .calendar_wrap a {
  3397. text-decoration: underline;
  3398. }
  3399. .widget_links li,
  3400. .widget_jp_blogs_i_follow li,
  3401. .widget_rss_links li {
  3402. font-family: inherit;
  3403. font-family: var(--font-base, inherit);
  3404. }
  3405. /**
  3406. * Footer
  3407. */
  3408. /**
  3409. * Footer Navigation
  3410. */
  3411. .footer-navigation .footer-menu a {
  3412. padding: 0 8px;
  3413. }
  3414. .footer-navigation .footer-menu > li:last-of-type {
  3415. margin-left: -8px;
  3416. }