style.css 119 KB

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