style-rtl.css 104 KB

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