style.css 107 KB

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