style.css 105 KB

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