style.css 81 KB

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