style-rtl.css 114 KB

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