style-rtl.css 110 KB

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