style-rtl.css 121 KB

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