style-rtl.css 101 KB

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