style.css 105 KB

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