style.css 118 KB

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