style-rtl.css 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Stow
  4. Theme URI: https://github.com/Automattic/themes/tree/master/stow
  5. Author: Automattic
  6. Author URI: https://automattic.com/
  7. Description: A bold and clean theme - Stow is the ideal choice for creating an online presence for your business.
  8. Requires at least: WordPress 4.9.6
  9. Version: 1.5.9
  10. License: GNU General Public License v2 or later
  11. License URI: LICENSE
  12. Template: varia
  13. Text Domain: stow
  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. Stow 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: #404040;
  141. --wp--preset--color--primary-hover: #f25f70;
  142. --wp--preset--color--secondary: #f25f70;
  143. --wp--preset--color--secondary-hover: #4f4f4f;
  144. --wp--preset--color--foreground: #444444;
  145. --wp--preset--color--foreground-low-contrast: #767676;
  146. --wp--preset--color--foreground-high-contrast: #111111;
  147. --wp--preset--color--background: #ffffff;
  148. --wp--preset--color--background-low-contrast: #DDDDDD;
  149. --wp--preset--color--background-high-contrast: #FAFAFA;
  150. --wp--preset--color--border: #DDDDDD;
  151. --wp--preset--color--border-low-contrast: #AAAAAA;
  152. --wp--preset--color--border-high-contrast: #FAFAFA;
  153. --wp--preset--color--text-selection: #ffdce0;
  154. --wp--preset--color--alert-success:#8bc34a;
  155. --wp--preset--color--alert-info: #03a9f4;
  156. --wp--preset--color--alert-warning: #ffc107;
  157. --wp--preset--color--alert-error: #f25f70;
  158. --wp--preset--color--black: black;
  159. --wp--preset--color--white: white;
  160. }
  161. /**
  162. * Child Theme Name
  163. */
  164. /**
  165. * Redefine Sass map values for child theme output.
  166. * - See: style-child-theme.scss
  167. */
  168. /**
  169. * Global
  170. */
  171. /**
  172. * Elements
  173. */
  174. /**
  175. * Button
  176. */
  177. /**
  178. * Cover
  179. */
  180. /**
  181. * Heading
  182. */
  183. /**
  184. * List
  185. */
  186. /**
  187. * Pullquote
  188. */
  189. /**
  190. * Quote
  191. */
  192. /**
  193. * Separator
  194. */
  195. /**
  196. * Header
  197. */
  198. /**
  199. * Footer
  200. */
  201. /**
  202. * Base
  203. * - Reset the browser
  204. */
  205. /**
  206. * Base
  207. * - Reset the browser
  208. */
  209. /**
  210. * Button Placeholder style
  211. * - Since buttons appear in various blocks,
  212. * let’s use a placeholder to keep them all
  213. * in-sync
  214. */
  215. button[data-load-more-btn], .button, button,
  216. input[type="submit"],
  217. .wp-block-button__link,
  218. .wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  219. line-height: 1;
  220. color: var(--wp--preset--color--background);
  221. cursor: pointer;
  222. font-weight: 600;
  223. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  224. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  225. font-size: 0.69444rem;
  226. background-color: var(--wp--preset--color--secondary);
  227. border-radius: 9px;
  228. border-width: 0;
  229. text-decoration: none;
  230. padding: 16px 16px;
  231. }
  232. button[data-load-more-btn]:before, .button:before, button:before,
  233. input[type="submit"]:before,
  234. .wp-block-button__link:before,
  235. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
  236. input[type="submit"]:after,
  237. .wp-block-button__link:after,
  238. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  239. content: '';
  240. display: block;
  241. height: 0;
  242. width: 0;
  243. }
  244. button[data-load-more-btn]:before, .button:before, button:before,
  245. input[type="submit"]:before,
  246. .wp-block-button__link:before,
  247. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  248. margin-bottom: -0.12em;
  249. }
  250. button[data-load-more-btn]:after, .button:after, button:after,
  251. input[type="submit"]:after,
  252. .wp-block-button__link:after,
  253. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  254. margin-top: -0.11em;
  255. }
  256. .button:not(.has-background):hover, button:not(.has-background):hover,
  257. input:not(.has-background):hover[type="submit"],
  258. .wp-block-button__link:not(.has-background):hover,
  259. .wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
  260. input:focus[type="submit"],
  261. .wp-block-button__link:focus,
  262. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
  263. input.has-focus[type="submit"],
  264. .has-focus.wp-block-button__link,
  265. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  266. color: var(--wp--preset--color--background);
  267. background-color: var(--wp--preset--color--secondary-hover);
  268. }
  269. /**
  270. * Onsale Placeholder style
  271. * - Since buttons appear in various blocks,
  272. * let’s use a placeholder to keep them all
  273. * in-sync
  274. */
  275. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  276. /* Document
  277. ========================================================================== */
  278. /**
  279. * 1. Correct the line height in all browsers.
  280. * 2. Prevent adjustments of font size after orientation changes in iOS.
  281. */
  282. html {
  283. line-height: 1.15;
  284. /* 1 */
  285. -webkit-text-size-adjust: 100%;
  286. /* 2 */
  287. }
  288. /* Sections
  289. ========================================================================== */
  290. /**
  291. * Remove the margin in all browsers.
  292. */
  293. body {
  294. margin: 0;
  295. }
  296. /**
  297. * Render the `main` element consistently in IE.
  298. */
  299. main {
  300. display: block;
  301. }
  302. /**
  303. * Correct the font size and margin on `h1` elements within `section` and
  304. * `article` contexts in Chrome, Firefox, and Safari.
  305. */
  306. h1 {
  307. font-size: 2em;
  308. margin: 0.67em 0;
  309. }
  310. /* Grouping content
  311. ========================================================================== */
  312. /**
  313. * 1. Add the correct box sizing in Firefox.
  314. * 2. Show the overflow in Edge and IE.
  315. */
  316. hr {
  317. box-sizing: content-box;
  318. /* 1 */
  319. height: 0;
  320. /* 1 */
  321. overflow: visible;
  322. /* 2 */
  323. }
  324. /**
  325. * 1. Correct the inheritance and scaling of font size in all browsers.
  326. * 2. Correct the odd `em` font sizing in all browsers.
  327. */
  328. pre {
  329. font-family: monospace, monospace;
  330. /* 1 */
  331. font-size: 1em;
  332. /* 2 */
  333. }
  334. /* Text-level semantics
  335. ========================================================================== */
  336. /**
  337. * Remove the gray background on active links in IE 10.
  338. */
  339. a {
  340. background-color: transparent;
  341. }
  342. /**
  343. * 1. Remove the bottom border in Chrome 57-
  344. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  345. */
  346. abbr[title] {
  347. border-bottom: none;
  348. /* 1 */
  349. text-decoration: underline;
  350. /* 2 */
  351. text-decoration: underline dotted;
  352. /* 2 */
  353. }
  354. /**
  355. * Add the correct font weight in Chrome, Edge, and Safari.
  356. */
  357. b,
  358. strong {
  359. font-weight: bolder;
  360. }
  361. /**
  362. * 1. Correct the inheritance and scaling of font size in all browsers.
  363. * 2. Correct the odd `em` font sizing in all browsers.
  364. */
  365. code,
  366. kbd,
  367. samp {
  368. font-family: monospace, monospace;
  369. /* 1 */
  370. font-size: 1em;
  371. /* 2 */
  372. }
  373. /**
  374. * Add the correct font size in all browsers.
  375. */
  376. small {
  377. font-size: 80%;
  378. }
  379. /**
  380. * Prevent `sub` and `sup` elements from affecting the line height in
  381. * all browsers.
  382. */
  383. sub,
  384. sup {
  385. font-size: 75%;
  386. line-height: 0;
  387. position: relative;
  388. vertical-align: baseline;
  389. }
  390. sub {
  391. bottom: -0.25em;
  392. }
  393. sup {
  394. top: -0.5em;
  395. }
  396. /* Embedded content
  397. ========================================================================== */
  398. /**
  399. * Remove the border on images inside links in IE 10.
  400. */
  401. img {
  402. border-style: none;
  403. }
  404. /* Forms
  405. ========================================================================== */
  406. /**
  407. * 1. Change the font styles in all browsers.
  408. * 2. Remove the margin in Firefox and Safari.
  409. */
  410. button,
  411. input,
  412. optgroup,
  413. select,
  414. textarea {
  415. font-family: inherit;
  416. /* 1 */
  417. font-size: 100%;
  418. /* 1 */
  419. line-height: 1.15;
  420. /* 1 */
  421. margin: 0;
  422. /* 2 */
  423. }
  424. /**
  425. * Show the overflow in IE.
  426. * 1. Show the overflow in Edge.
  427. */
  428. button,
  429. input {
  430. /* 1 */
  431. overflow: visible;
  432. }
  433. /**
  434. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  435. * 1. Remove the inheritance of text transform in Firefox.
  436. */
  437. button,
  438. select {
  439. /* 1 */
  440. text-transform: none;
  441. }
  442. /**
  443. * Correct the inability to style clickable types in iOS and Safari.
  444. */
  445. button,
  446. [type="button"],
  447. [type="reset"],
  448. [type="submit"] {
  449. -webkit-appearance: button;
  450. }
  451. /**
  452. * Remove the inner border and padding in Firefox.
  453. */
  454. button::-moz-focus-inner,
  455. [type="button"]::-moz-focus-inner,
  456. [type="reset"]::-moz-focus-inner,
  457. [type="submit"]::-moz-focus-inner {
  458. border-style: none;
  459. padding: 0;
  460. }
  461. /**
  462. * Restore the focus styles unset by the previous rule.
  463. */
  464. button:-moz-focusring,
  465. [type="button"]:-moz-focusring,
  466. [type="reset"]:-moz-focusring,
  467. [type="submit"]:-moz-focusring {
  468. outline: 1px dotted ButtonText;
  469. }
  470. /**
  471. * Correct the padding in Firefox.
  472. */
  473. fieldset {
  474. padding: 0.35em 0.75em 0.625em;
  475. }
  476. /**
  477. * 1. Correct the text wrapping in Edge and IE.
  478. * 2. Correct the color inheritance from `fieldset` elements in IE.
  479. * 3. Remove the padding so developers are not caught out when they zero out
  480. * `fieldset` elements in all browsers.
  481. */
  482. legend {
  483. box-sizing: border-box;
  484. /* 1 */
  485. color: inherit;
  486. /* 2 */
  487. display: table;
  488. /* 1 */
  489. max-width: 100%;
  490. /* 1 */
  491. padding: 0;
  492. /* 3 */
  493. white-space: normal;
  494. /* 1 */
  495. }
  496. /**
  497. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  498. */
  499. progress {
  500. vertical-align: baseline;
  501. }
  502. /**
  503. * Remove the default vertical scrollbar in IE 10+.
  504. */
  505. textarea {
  506. overflow: auto;
  507. }
  508. /**
  509. * 1. Add the correct box sizing in IE 10.
  510. * 2. Remove the padding in IE 10.
  511. */
  512. [type="checkbox"],
  513. [type="radio"] {
  514. box-sizing: border-box;
  515. /* 1 */
  516. padding: 0;
  517. /* 2 */
  518. }
  519. /**
  520. * Correct the cursor style of increment and decrement buttons in Chrome.
  521. */
  522. [type="number"]::-webkit-inner-spin-button,
  523. [type="number"]::-webkit-outer-spin-button {
  524. height: auto;
  525. }
  526. /**
  527. * 1. Correct the odd appearance in Chrome and Safari.
  528. * 2. Correct the outline style in Safari.
  529. */
  530. [type="search"] {
  531. -webkit-appearance: textfield;
  532. /* 1 */
  533. outline-offset: -2px;
  534. /* 2 */
  535. }
  536. /**
  537. * Remove the inner padding in Chrome and Safari on macOS.
  538. */
  539. [type="search"]::-webkit-search-decoration {
  540. -webkit-appearance: none;
  541. }
  542. /**
  543. * 1. Correct the inability to style clickable types in iOS and Safari.
  544. * 2. Change font properties to `inherit` in Safari.
  545. */
  546. ::-webkit-file-upload-button {
  547. -webkit-appearance: button;
  548. /* 1 */
  549. font: inherit;
  550. /* 2 */
  551. }
  552. /* Interactive
  553. ========================================================================== */
  554. /*
  555. * Add the correct display in Edge, IE 10+, and Firefox.
  556. */
  557. details {
  558. display: block;
  559. }
  560. /*
  561. * Add the correct display in all browsers.
  562. */
  563. summary {
  564. display: list-item;
  565. }
  566. /* Misc
  567. ========================================================================== */
  568. /**
  569. * Add the correct display in IE 10+.
  570. */
  571. template {
  572. display: none;
  573. }
  574. /**
  575. * Add the correct display in IE 10.
  576. */
  577. [hidden] {
  578. display: none;
  579. }
  580. /**
  581. * Reset specific elements to make them easier to style in other contexts.
  582. */
  583. html,
  584. body,
  585. p,
  586. ol,
  587. ul,
  588. li,
  589. dl,
  590. dt,
  591. dd,
  592. blockquote,
  593. figure,
  594. fieldset,
  595. form,
  596. legend,
  597. textarea,
  598. pre,
  599. iframe,
  600. hr,
  601. h1,
  602. h2,
  603. h3,
  604. h4,
  605. h5,
  606. h6 {
  607. padding: 0;
  608. margin: 0;
  609. -moz-osx-font-smoothing: grayscale;
  610. -webkit-font-smoothing: antialiased;
  611. }
  612. /**
  613. * Apply generic border-box to all elements.
  614. * See:
  615. * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  616. */
  617. /**
  618. * Apply border-box across the entire page.
  619. */
  620. html {
  621. box-sizing: border-box;
  622. }
  623. /**
  624. * Relax the definition a bit, to allow components to override it manually.
  625. */
  626. *, *::before, *::after {
  627. box-sizing: inherit;
  628. }
  629. /**
  630. * HTML resets
  631. */
  632. html {
  633. font-size: 15px;
  634. font-family: "Source Sans Pro", Arial, sans-serif;
  635. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  636. line-height: 1.78;
  637. }
  638. @media only screen and (min-width: 560px) {
  639. html {
  640. font-size: 18px;
  641. }
  642. }
  643. body {
  644. font-size: 1rem;
  645. font-weight: normal;
  646. color: var(--wp--preset--color--foreground);
  647. text-align: right;
  648. background-color: var(--wp--preset--color--background);
  649. }
  650. /**
  651. * Links styles
  652. */
  653. a {
  654. color: var(--wp--preset--color--primary);
  655. }
  656. a:hover {
  657. color: var(--wp--preset--color--primary-hover);
  658. }
  659. .has-primary-background-color a:not(.has-text-color) {
  660. color: var(--wp--preset--color--background);
  661. }
  662. button,
  663. a {
  664. cursor: pointer;
  665. }
  666. /* Text meant only for screen readers. */
  667. .screen-reader-text {
  668. border: 0;
  669. clip: rect(1px, 1px, 1px, 1px);
  670. clip-path: inset(50%);
  671. height: 1px;
  672. margin: -1px;
  673. overflow: hidden;
  674. padding: 0;
  675. position: absolute !important;
  676. width: 1px;
  677. word-wrap: normal !important;
  678. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  679. }
  680. .screen-reader-text:focus {
  681. background-color: var(--wp--preset--color--background);
  682. border-radius: 3px;
  683. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  684. clip: auto !important;
  685. clip-path: none;
  686. color: var(--wp--preset--color--foreground);
  687. display: block;
  688. font-size: 1.2rem;
  689. font-weight: bold;
  690. height: auto;
  691. right: 5px;
  692. line-height: normal;
  693. padding: 15px 23px 14px;
  694. text-decoration: none;
  695. top: 5px;
  696. width: auto;
  697. z-index: 100000;
  698. /* Above WP toolbar. */
  699. }
  700. /* Do not show the outline on the skip link target. */
  701. #content[tabindex="-1"]:focus {
  702. outline: 0;
  703. }
  704. .clear:before,
  705. .clear:after,
  706. .entry-content:before,
  707. .entry-content:after,
  708. .comment-content:before,
  709. .comment-content:after,
  710. .site-header:before,
  711. .site-header:after,
  712. .site-content:before,
  713. .site-content:after,
  714. .site-footer:before,
  715. .site-footer:after {
  716. content: "";
  717. display: table;
  718. table-layout: fixed;
  719. }
  720. .clear:after,
  721. .entry-content:after,
  722. .comment-content:after,
  723. .site-header:after,
  724. .site-content:after,
  725. .site-footer:after {
  726. clear: both;
  727. }
  728. /**
  729. * Measure
  730. * - The width of a line of text, in characters, is known as its measure.
  731. */
  732. header *,
  733. main *,
  734. footer * {
  735. max-width: unset;
  736. }
  737. html,
  738. body,
  739. div,
  740. header,
  741. nav,
  742. article,
  743. figure,
  744. hr,
  745. main,
  746. section,
  747. footer {
  748. max-width: none;
  749. }
  750. ::selection {
  751. background-color: var(--wp--preset--color--text-selection);
  752. }
  753. ::-moz-selection {
  754. background-color: var(--wp--preset--color--text-selection);
  755. }
  756. /**
  757. * Layout
  758. * - Structral and responsive styles
  759. */
  760. /**
  761. * Layout
  762. * - Structral and responsive styles
  763. */
  764. /**
  765. * Site Structure
  766. *
  767. * - Set vertical margins and responsive widths on
  768. * top-level wrappers and content wrappers
  769. * - `--global--width-content` is a responsive veriable
  770. * - See: globals/_global-width-responsive.scss
  771. */
  772. /**
  773. * Top Level Wrappers (header, main, footer)
  774. * - Set vertical padding and horizontal margins
  775. */
  776. .site-header,
  777. .site-main,
  778. .site-footer {
  779. padding: 16px 16px;
  780. margin-right: auto;
  781. margin-left: auto;
  782. }
  783. @media only screen and (min-width: 560px) {
  784. .site-header,
  785. .site-main,
  786. .site-footer {
  787. padding-top: 32px;
  788. padding-left: 0;
  789. padding-bottom: 32px;
  790. padding-right: 0;
  791. }
  792. }
  793. /**
  794. * Site-main children wrappers
  795. * - Add double vertical margins here for clearer heirarchy
  796. */
  797. .site-main > * {
  798. margin-top: calc(3 * 32px);
  799. margin-bottom: calc(3 * 32px);
  800. }
  801. .site-main > *:first-child {
  802. margin-top: 0;
  803. }
  804. .site-main > *:last-child {
  805. margin-bottom: 0;
  806. }
  807. /**
  808. * Major content sections (article, author-bio, pagination, comments, etc.)
  809. * - Set a maximum responsive content-width
  810. *
  811. * .responsive-max-width is a group selector replacing the following:
  812. * .site-header,
  813. * .site-main,
  814. * .site-footer
  815. * .entry-header,
  816. * .post-thumbnail,
  817. * .entry-content,
  818. * .entry-footer,
  819. * .author-bio,
  820. * .widget-area
  821. */
  822. /*
  823. * Block & non-gutenberg content wrappers
  824. * - Set margins
  825. */
  826. .entry-header,
  827. .post-thumbnail,
  828. .entry-content,
  829. .entry-footer,
  830. .author-bio,
  831. .widget-area {
  832. margin-top: 32px;
  833. margin-left: auto;
  834. margin-bottom: 32px;
  835. margin-right: auto;
  836. }
  837. /*
  838. * Block & non-gutenberg content wrapper children
  839. * - Sets spacing-vertical margin logic
  840. */
  841. .site-footer > *,
  842. .site-main > article > *,
  843. .site-main > .not-found > *,
  844. .entry-content > *,
  845. .entry-content-child,
  846. .wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
  847. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
  848. [class*="inner-container"] > *,
  849. .widget-area > * {
  850. margin-top: 21.312px;
  851. margin-bottom: 21.312px;
  852. }
  853. @media only screen and (min-width: 560px) {
  854. .site-footer > *,
  855. .site-main > article > *,
  856. .site-main > .not-found > *,
  857. .entry-content > *,
  858. .entry-content-child,
  859. .wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
  860. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
  861. [class*="inner-container"] > *,
  862. .widget-area > * {
  863. margin-top: 32px;
  864. margin-bottom: 32px;
  865. }
  866. }
  867. .site-footer > *:first-child,
  868. .site-main > article > *:first-child,
  869. .site-main > .not-found > *:first-child,
  870. .entry-content > *:first-child,
  871. .entry-content-child:first-child,
  872. .wp-block-premium-content-container .wp-premium-content-logged-out-view > :first-child,
  873. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :first-child,
  874. [class*="inner-container"] > *:first-child,
  875. .widget-area > *:first-child {
  876. margin-top: 0;
  877. }
  878. .site-footer > *:last-child,
  879. .site-main > article > *:last-child,
  880. .site-main > .not-found > *:last-child,
  881. .entry-content > *:last-child,
  882. .entry-content-child:last-child,
  883. .wp-block-premium-content-container .wp-premium-content-logged-out-view > :last-child,
  884. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :last-child,
  885. [class*="inner-container"] > *:last-child,
  886. .widget-area > *:last-child {
  887. margin-bottom: 0;
  888. }
  889. /*
  890. * Block & non-gutenberg content wrapper children
  891. * - Sets spacing-unit margins
  892. */
  893. .site-header > *,
  894. .entry-header > *,
  895. .post-thumbnail > *,
  896. .page-content > *,
  897. .comment-content > *,
  898. .author-bio > *,
  899. .widget-area > .widget > * {
  900. margin-top: 16px;
  901. margin-bottom: 16px;
  902. }
  903. .site-header > *:first-child,
  904. .entry-header > *:first-child,
  905. .post-thumbnail > *:first-child,
  906. .page-content > *:first-child,
  907. .comment-content > *:first-child,
  908. .author-bio > *:first-child,
  909. .widget-area > .widget > *:first-child {
  910. margin-top: 0;
  911. }
  912. .site-header > *:last-child,
  913. .entry-header > *:last-child,
  914. .post-thumbnail > *:last-child,
  915. .page-content > *:last-child,
  916. .comment-content > *:last-child,
  917. .author-bio > *:last-child,
  918. .widget-area > .widget > *:last-child {
  919. margin-bottom: 0;
  920. }
  921. /*
  922. * .entry-content children specific controls
  923. * - Adds special margin overrides for alignment utility classes
  924. */
  925. .entry-content > * {
  926. /* Reset alignleft and alignright margins after alignfull */
  927. }
  928. .entry-content > *.alignleft, .entry-content > *.alignright,
  929. .entry-content > *.alignleft:first-child + *,
  930. .entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
  931. margin-top: 0;
  932. }
  933. .entry-content > *:last-child, .entry-content > *.alignfull {
  934. margin-bottom: 0;
  935. }
  936. .entry-content > *.alignfull + .alignleft {
  937. float: right;
  938. margin-top: 32px;
  939. margin-right: 16px;
  940. margin-left: 16px;
  941. }
  942. .entry-content > *.alignfull + .alignright {
  943. float: left;
  944. margin-top: 32px;
  945. margin-right: 16px;
  946. margin-left: 16px;
  947. }
  948. /**
  949. * Elements
  950. * - Styles for basic HTML elemants
  951. */
  952. /**
  953. * Elements
  954. * - Styles for basic HTML elemants
  955. */
  956. blockquote {
  957. padding-right: 16px;
  958. }
  959. blockquote p {
  960. font-size: 1.2rem;
  961. letter-spacing: normal;
  962. line-height: 1.125;
  963. }
  964. blockquote cite,
  965. blockquote footer {
  966. font-size: 0.83333rem;
  967. letter-spacing: normal;
  968. }
  969. blockquote > * {
  970. margin-top: 16px;
  971. margin-bottom: 16px;
  972. }
  973. blockquote > *:first-child {
  974. margin-top: 0;
  975. }
  976. blockquote > *:last-child {
  977. margin-bottom: 0;
  978. }
  979. blockquote.alignleft, blockquote.alignright {
  980. padding-right: inherit;
  981. }
  982. blockquote.alignleft p, blockquote.alignright p {
  983. font-size: 1rem;
  984. max-width: inherit;
  985. width: inherit;
  986. }
  987. blockquote.alignleft cite,
  988. blockquote.alignleft footer, blockquote.alignright cite,
  989. blockquote.alignright footer {
  990. font-size: 0.69444rem;
  991. letter-spacing: normal;
  992. }
  993. input[type="text"],
  994. input[type="email"],
  995. input[type="url"],
  996. input[type="password"],
  997. input[type="search"],
  998. input[type="number"],
  999. input[type="tel"],
  1000. input[type="range"],
  1001. input[type="date"],
  1002. input[type="month"],
  1003. input[type="week"],
  1004. input[type="time"],
  1005. input[type="datetime"],
  1006. input[type="datetime-local"],
  1007. input[type="color"],
  1008. textarea {
  1009. color: var(--wp--preset--color--black);
  1010. border: 1px solid var(--wp--preset--color--border);
  1011. border-radius: 3px;
  1012. padding: calc( 0.33 * 16px);
  1013. }
  1014. input[type="text"]:focus,
  1015. input[type="email"]:focus,
  1016. input[type="url"]:focus,
  1017. input[type="password"]:focus,
  1018. input[type="search"]:focus,
  1019. input[type="number"]:focus,
  1020. input[type="tel"]:focus,
  1021. input[type="range"]:focus,
  1022. input[type="date"]:focus,
  1023. input[type="month"]:focus,
  1024. input[type="week"]:focus,
  1025. input[type="time"]:focus,
  1026. input[type="datetime"]:focus,
  1027. input[type="datetime-local"]:focus,
  1028. input[type="color"]:focus,
  1029. textarea:focus {
  1030. color: var(--wp--preset--color--black);
  1031. border-color: var(--wp--preset--color--primary-hover);
  1032. }
  1033. select {
  1034. border: 1px solid var(--wp--preset--color--border);
  1035. }
  1036. textarea {
  1037. width: 100%;
  1038. }
  1039. input[type=checkbox] + label {
  1040. display: inline;
  1041. margin-right: 0.5em;
  1042. margin-left: 2em;
  1043. line-height: 1em;
  1044. }
  1045. figcaption {
  1046. color: var(--wp--preset--color--foreground-low-contrast);
  1047. font-size: 0.69444rem;
  1048. margin-top: calc(0.5 * 16px);
  1049. margin-bottom: 16px;
  1050. text-align: center;
  1051. }
  1052. .alignleft figcaption,
  1053. .alignright figcaption {
  1054. margin-bottom: 0;
  1055. }
  1056. /* WP Smiley */
  1057. .page-content .wp-smiley,
  1058. .entry-content .wp-smiley,
  1059. .comment-content .wp-smiley {
  1060. border: none;
  1061. margin-bottom: 0;
  1062. margin-top: 0;
  1063. padding: 0;
  1064. }
  1065. /* Make sure embeds and iframes fit their containers. */
  1066. embed,
  1067. iframe,
  1068. object {
  1069. max-width: 100%;
  1070. }
  1071. /**
  1072. * Blocks
  1073. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  1074. * spacing with CSS-variables overrides
  1075. * - In the future the Block styles may get compiled to individual .css
  1076. * files and conditionally loaded
  1077. */
  1078. /**
  1079. * Blocks
  1080. * - These styles replace key Gutenberg Block styles with font, color, and
  1081. * spacing with CSS-variables overrides
  1082. * - In the future the Block styles may get compiled to individual .css
  1083. * files and conditionally loaded
  1084. */
  1085. .wp-block-audio {
  1086. min-width: inherit;
  1087. }
  1088. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  1089. min-width: 300px;
  1090. }
  1091. .wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
  1092. margin-bottom: 16px;
  1093. }
  1094. .wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
  1095. margin-left: 32px;
  1096. }
  1097. .wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
  1098. margin-right: 32px;
  1099. }
  1100. .wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
  1101. padding: 32px;
  1102. }
  1103. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1104. margin-top: 0;
  1105. margin-bottom: 64px;
  1106. }
  1107. @media only screen and (min-width: 560px) {
  1108. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1109. margin-bottom: 96px;
  1110. }
  1111. }
  1112. .wp-block-newspack-blocks-homepage-articles .article-section-title {
  1113. font-size: 1rem;
  1114. margin-bottom: 16px;
  1115. }
  1116. .wp-block-newspack-blocks-homepage-articles .article-section-title + article {
  1117. margin-top: 0;
  1118. }
  1119. .wp-block-newspack-blocks-homepage-articles article {
  1120. display: block;
  1121. /* Vertical margins logic between posts */
  1122. margin-top: 64px;
  1123. margin-bottom: 64px;
  1124. }
  1125. @media only screen and (min-width: 560px) {
  1126. .wp-block-newspack-blocks-homepage-articles article {
  1127. margin-top: 96px;
  1128. margin-bottom: 96px;
  1129. }
  1130. }
  1131. .wp-block-newspack-blocks-homepage-articles article:first-child {
  1132. margin-top: 0;
  1133. }
  1134. .wp-block-newspack-blocks-homepage-articles article:last-child {
  1135. margin-bottom: 96px;
  1136. }
  1137. .wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
  1138. width: auto;
  1139. }
  1140. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
  1141. /* Vertical margins logic between post details */
  1142. margin-top: 16px;
  1143. margin-bottom: 16px;
  1144. }
  1145. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
  1146. margin-top: 0;
  1147. }
  1148. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
  1149. margin-bottom: 0;
  1150. }
  1151. .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1152. color: var(--wp--preset--color--primary);
  1153. }
  1154. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1155. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1156. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1157. color: currentColor;
  1158. }
  1159. .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1160. color: var(--wp--preset--color--primary-hover);
  1161. text-decoration: underline;
  1162. }
  1163. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1164. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1165. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1166. color: currentColor;
  1167. }
  1168. @media only screen and (min-width: 560px) {
  1169. .wp-block-newspack-blocks-homepage-articles article .more-link {
  1170. margin-top: 16px;
  1171. }
  1172. }
  1173. .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1174. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1175. color: var(--wp--preset--color--foreground-low-contrast);
  1176. font-size: 0.83333rem;
  1177. }
  1178. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1179. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1180. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
  1181. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1182. [class*="background-color"]:not(.has-background-background-color)
  1183. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1184. [style*="background-color"]
  1185. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1186. color: currentColor;
  1187. }
  1188. .wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
  1189. .wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
  1190. vertical-align: top;
  1191. }
  1192. .wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
  1193. .wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
  1194. margin-left: 16px;
  1195. }
  1196. .wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
  1197. .wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
  1198. display: none;
  1199. }
  1200. .wp-block-newspack-blocks-homepage-articles article .entry-meta a,
  1201. .wp-block-newspack-blocks-homepage-articles article .cat-links a {
  1202. color: currentColor;
  1203. text-decoration: underline;
  1204. }
  1205. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1206. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1207. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1208. color: var(--wp--preset--color--primary-hover);
  1209. text-decoration: none;
  1210. }
  1211. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1212. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1213. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1214. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1215. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
  1216. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1217. [class*="background-color"]:not(.has-background-background-color)
  1218. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1219. [style*="background-color"]
  1220. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
  1221. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1222. [class*="background-color"]:not(.has-background-background-color)
  1223. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1224. [style*="background-color"]
  1225. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1226. color: currentColor;
  1227. }
  1228. /**
  1229. * Button Placeholder style
  1230. * - Since buttons appear in various blocks,
  1231. * let’s use a placeholder to keep them all
  1232. * in-sync
  1233. */
  1234. button[data-load-more-btn], .button, button,
  1235. input[type="submit"],
  1236. .wp-block-button__link,
  1237. .wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  1238. line-height: 1;
  1239. color: var(--wp--preset--color--background);
  1240. cursor: pointer;
  1241. font-weight: 600;
  1242. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1243. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1244. font-size: 0.69444rem;
  1245. background-color: var(--wp--preset--color--secondary);
  1246. border-radius: 9px;
  1247. border-width: 0;
  1248. text-decoration: none;
  1249. padding: 16px 16px;
  1250. }
  1251. button[data-load-more-btn]:before, .button:before, button:before,
  1252. input[type="submit"]:before,
  1253. .wp-block-button__link:before,
  1254. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
  1255. input[type="submit"]:after,
  1256. .wp-block-button__link:after,
  1257. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1258. content: '';
  1259. display: block;
  1260. height: 0;
  1261. width: 0;
  1262. }
  1263. button[data-load-more-btn]:before, .button:before, button:before,
  1264. input[type="submit"]:before,
  1265. .wp-block-button__link:before,
  1266. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  1267. margin-bottom: -0.12em;
  1268. }
  1269. button[data-load-more-btn]:after, .button:after, button:after,
  1270. input[type="submit"]:after,
  1271. .wp-block-button__link:after,
  1272. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1273. margin-top: -0.11em;
  1274. }
  1275. .button:not(.has-background):hover, button:not(.has-background):hover,
  1276. input:not(.has-background):hover[type="submit"],
  1277. .wp-block-button__link:not(.has-background):hover,
  1278. .wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
  1279. input:focus[type="submit"],
  1280. .wp-block-button__link:focus,
  1281. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
  1282. input.has-focus[type="submit"],
  1283. .has-focus.wp-block-button__link,
  1284. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  1285. color: var(--wp--preset--color--background);
  1286. background-color: var(--wp--preset--color--secondary-hover);
  1287. }
  1288. /**
  1289. * Onsale Placeholder style
  1290. * - Since buttons appear in various blocks,
  1291. * let’s use a placeholder to keep them all
  1292. * in-sync
  1293. */
  1294. button[data-load-more-btn], .button {
  1295. display: inline-block;
  1296. }
  1297. .has-background:not(.has-background-background-color) button[data-load-more-btn],
  1298. [class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
  1299. [style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color) .button,
  1300. [class*="background-color"]:not(.has-background-background-color) .button,
  1301. [style*="background-color"] .button {
  1302. background-color: transparent;
  1303. border: 2px solid currentColor;
  1304. color: currentColor;
  1305. }
  1306. /**
  1307. * Button
  1308. */
  1309. /**
  1310. * Block Options
  1311. */
  1312. .wp-block-button.is-style-outline.wp-block-button__link,
  1313. .wp-block-button.is-style-outline .wp-block-button__link {
  1314. border: 2px solid currentcolor;
  1315. padding: 14px 16px;
  1316. }
  1317. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
  1318. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
  1319. background: transparent;
  1320. }
  1321. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
  1322. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1323. color: var(--wp--preset--color--secondary);
  1324. }
  1325. .wp-block-button.is-style-outline.wp-block-button__link:active,
  1326. .wp-block-button.is-style-outline .wp-block-button__link:active {
  1327. color: var(--wp--preset--color--secondary);
  1328. }
  1329. .wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
  1330. .wp-block-button.is-style-outline .wp-block-button__link:hover,
  1331. .wp-block-button.is-style-outline .wp-block-button__link:focus,
  1332. .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  1333. color: var(--wp--preset--color--secondary-hover);
  1334. }
  1335. .has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
  1336. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1337. color: var(--wp--preset--color--background);
  1338. }
  1339. .wp-block-button.is-style-squared,
  1340. .wp-block-button.is-style-squared .wp-block-button__link {
  1341. border-radius: 0;
  1342. }
  1343. .wp-block-code {
  1344. color: var(--wp--preset--color--foreground);
  1345. font-size: 0.83333rem;
  1346. padding: 16px;
  1347. border-color: var(--wp--preset--color--border);
  1348. }
  1349. .wp-block-code pre {
  1350. color: var(--wp--preset--color--foreground);
  1351. }
  1352. .wp-block-columns {
  1353. /**
  1354. * Block Options
  1355. */
  1356. }
  1357. .wp-block-columns .wp-block-column > * {
  1358. margin-top: 21.312px;
  1359. margin-bottom: 21.312px;
  1360. }
  1361. @media only screen and (min-width: 560px) {
  1362. .wp-block-columns .wp-block-column > * {
  1363. margin-top: 32px;
  1364. margin-bottom: 32px;
  1365. }
  1366. }
  1367. .wp-block-columns .wp-block-column > *:first-child {
  1368. margin-top: 0;
  1369. }
  1370. .wp-block-columns .wp-block-column > *:last-child {
  1371. margin-bottom: 0;
  1372. }
  1373. .wp-block-columns .wp-block-column:last-child {
  1374. margin-bottom: 0;
  1375. }
  1376. .wp-block-columns .wp-block-column:not(:last-child) {
  1377. margin-bottom: 21.312px;
  1378. }
  1379. @media only screen and (min-width: 560px) {
  1380. .wp-block-columns .wp-block-column:not(:last-child) {
  1381. margin-bottom: 32px;
  1382. }
  1383. }
  1384. @media only screen and (min-width: 782px) {
  1385. .wp-block-columns .wp-block-column:not(:last-child) {
  1386. /* Resetting margins to match _block-container.scss */
  1387. margin-bottom: 0;
  1388. }
  1389. }
  1390. .wp-block-columns.alignfull {
  1391. padding-right: 16px;
  1392. padding-left: 16px;
  1393. }
  1394. .wp-block-columns.alignfull:not(:first-child) {
  1395. margin-top: 32px;
  1396. }
  1397. .wp-block-columns.alignfull:not(:last-child) {
  1398. margin-bottom: 32px;
  1399. }
  1400. .wp-block-cover,
  1401. .wp-block-cover-image {
  1402. background-color: var(--wp--preset--color--foreground);
  1403. min-height: 480px;
  1404. margin-top: inherit;
  1405. margin-bottom: inherit;
  1406. /* Treating H2 separately to account for legacy /core styles */
  1407. /**
  1408. * Block Options
  1409. */
  1410. }
  1411. .wp-block-cover.has-background-dim,
  1412. .wp-block-cover-image.has-background-dim {
  1413. background-color: var(--wp--preset--color--foreground);
  1414. color: var(--wp--preset--color--background);
  1415. }
  1416. .wp-block-cover .wp-block-cover__inner-container,
  1417. .wp-block-cover .wp-block-cover-image-text,
  1418. .wp-block-cover .wp-block-cover-text,
  1419. .wp-block-cover-image .wp-block-cover__inner-container,
  1420. .wp-block-cover-image .wp-block-cover-image-text,
  1421. .wp-block-cover-image .wp-block-cover-text {
  1422. margin-top: 32px;
  1423. margin-bottom: 32px;
  1424. color: currentColor;
  1425. }
  1426. .wp-block-cover h2,
  1427. .wp-block-cover-image h2 {
  1428. font-size: 1.728rem;
  1429. letter-spacing: normal;
  1430. line-height: 1.125;
  1431. max-width: inherit;
  1432. text-align: inherit;
  1433. padding: 0;
  1434. }
  1435. .wp-block-cover h2.has-text-align-left,
  1436. .wp-block-cover-image h2.has-text-align-left {
  1437. text-align: right;
  1438. }
  1439. .wp-block-cover h2.has-text-align-center,
  1440. .wp-block-cover-image h2.has-text-align-center {
  1441. text-align: center;
  1442. }
  1443. .wp-block-cover h2.has-text-align-right,
  1444. .wp-block-cover-image h2.has-text-align-right {
  1445. text-align: left;
  1446. }
  1447. .wp-block-cover .wp-block-cover__inner-container,
  1448. .wp-block-cover-image .wp-block-cover__inner-container {
  1449. width: calc(100% - 64px);
  1450. }
  1451. .wp-block-cover .wp-block-cover__inner-container > *,
  1452. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1453. margin-top: 21.312px;
  1454. margin-bottom: 21.312px;
  1455. }
  1456. @media only screen and (min-width: 560px) {
  1457. .wp-block-cover .wp-block-cover__inner-container > *,
  1458. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1459. margin-top: 32px;
  1460. margin-bottom: 32px;
  1461. }
  1462. }
  1463. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1464. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1465. margin-top: 0;
  1466. }
  1467. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1468. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1469. margin-bottom: 0;
  1470. }
  1471. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1472. .wp-block-cover-image.alignleft,
  1473. .wp-block-cover-image.alignright {
  1474. margin-top: 0;
  1475. }
  1476. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1477. .wp-block-cover-image.alignleft > *,
  1478. .wp-block-cover-image.alignright > * {
  1479. margin-top: calc(2 * 32px);
  1480. margin-bottom: calc(2 * 32px);
  1481. padding-right: 16px;
  1482. padding-left: 16px;
  1483. width: 100%;
  1484. }
  1485. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1486. .wp-block-cover-image.has-left-content,
  1487. .wp-block-cover-image.has-right-content {
  1488. justify-content: center;
  1489. }
  1490. .wp-block-file .wp-block-file__button {
  1491. background-color: var(--wp--preset--color--secondary);
  1492. color: var(--wp--preset--color--background);
  1493. font-size: 0.83333rem;
  1494. margin-right: 16px;
  1495. margin-left: 16px;
  1496. }
  1497. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1498. display: inherit;
  1499. }
  1500. .wp-block-file a.wp-block-file__button:active,
  1501. .wp-block-file a.wp-block-file__button:focus,
  1502. .wp-block-file a.wp-block-file__button:hover,
  1503. .wp-block-file a.wp-block-file__button:visited {
  1504. color: var(--wp--preset--color--background);
  1505. opacity: .85;
  1506. }
  1507. .wp-block-gallery {
  1508. margin: 0;
  1509. }
  1510. .wp-block-gallery .blocks-gallery-image figcaption,
  1511. .wp-block-gallery .blocks-gallery-item figcaption {
  1512. margin: 0;
  1513. color: var(--wp--preset--color--white);
  1514. font-size: 0.69444rem;
  1515. }
  1516. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1517. max-width: 50%;
  1518. }
  1519. .wp-block-group .wp-block-group__inner-container {
  1520. margin-right: auto;
  1521. margin-left: auto;
  1522. }
  1523. .wp-block-group .wp-block-group__inner-container > * {
  1524. margin-top: 21.312px;
  1525. margin-bottom: 21.312px;
  1526. }
  1527. @media only screen and (min-width: 560px) {
  1528. .wp-block-group .wp-block-group__inner-container > * {
  1529. margin-top: 32px;
  1530. margin-bottom: 32px;
  1531. }
  1532. }
  1533. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1534. margin-top: 0;
  1535. }
  1536. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1537. margin-bottom: 0;
  1538. }
  1539. .wp-block-group.has-background {
  1540. padding: 21.312px;
  1541. }
  1542. @media only screen and (min-width: 560px) {
  1543. .wp-block-group.has-background {
  1544. padding: 32px;
  1545. }
  1546. }
  1547. .wp-block-group.alignfull {
  1548. padding-right: 16px;
  1549. padding-left: 16px;
  1550. }
  1551. h1, .h1,
  1552. h2, .h2,
  1553. h3, .h3,
  1554. h4, .h4,
  1555. h5, .h5,
  1556. h6, .h6 {
  1557. font-family: "Oswald", sans-serif;
  1558. font-family: var(--font-headings, "Oswald", sans-serif);
  1559. font-weight: 300;
  1560. clear: both;
  1561. }
  1562. h1, .h1 {
  1563. font-size: 2.0736rem;
  1564. letter-spacing: normal;
  1565. line-height: 1.125;
  1566. }
  1567. h2, .h2 {
  1568. font-size: 1.728rem;
  1569. letter-spacing: normal;
  1570. line-height: 1.125;
  1571. }
  1572. h3, .h3 {
  1573. font-size: 1.44rem;
  1574. letter-spacing: normal;
  1575. line-height: 1.125;
  1576. }
  1577. h4, .h4 {
  1578. font-size: 1.2rem;
  1579. letter-spacing: normal;
  1580. line-height: 1.125;
  1581. }
  1582. h5, .h5 {
  1583. font-size: 1rem;
  1584. letter-spacing: normal;
  1585. line-height: 1.125;
  1586. }
  1587. h6, .h6 {
  1588. font-size: 0.83333rem;
  1589. letter-spacing: normal;
  1590. line-height: 1.125;
  1591. }
  1592. .wp-block-image {
  1593. text-align: center;
  1594. }
  1595. .wp-block-image figcaption {
  1596. color: var(--wp--preset--color--foreground-low-contrast);
  1597. font-size: 0.69444rem;
  1598. margin-top: calc(0.5 * 16px);
  1599. margin-bottom: 16px;
  1600. text-align: center;
  1601. }
  1602. .entry-content > *[class="wp-block-image"],
  1603. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1604. margin-top: 0;
  1605. margin-bottom: 0;
  1606. }
  1607. .entry-content > *[class="wp-block-image"] + *,
  1608. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1609. margin-top: 0;
  1610. }
  1611. img {
  1612. height: auto;
  1613. max-width: 100%;
  1614. vertical-align: middle;
  1615. }
  1616. .wp-block-latest-comments {
  1617. padding-right: 0;
  1618. }
  1619. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1620. font-size: 0.83333rem;
  1621. line-height: 1.78;
  1622. /* Vertical margins logic */
  1623. margin-top: 32px;
  1624. margin-bottom: 32px;
  1625. }
  1626. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1627. margin-top: 0;
  1628. }
  1629. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1630. margin-bottom: 0;
  1631. }
  1632. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1633. font-family: "Oswald", sans-serif;
  1634. font-family: var(--font-headings, "Oswald", sans-serif);
  1635. }
  1636. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1637. color: var(--wp--preset--color--foreground-low-contrast);
  1638. font-size: 0.83333rem;
  1639. }
  1640. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1641. font-size: 0.83333rem;
  1642. line-height: 1.78;
  1643. margin: 0;
  1644. }
  1645. .wp-block-latest-posts {
  1646. padding-right: 0;
  1647. }
  1648. .wp-block-latest-posts > li {
  1649. word-wrap: break-word;
  1650. /* Vertical margins logic */
  1651. margin-top: 32px;
  1652. margin-bottom: 32px;
  1653. }
  1654. .wp-block-latest-posts > li:first-child {
  1655. margin-top: 0;
  1656. }
  1657. .wp-block-latest-posts > li:last-child {
  1658. margin-bottom: 0;
  1659. }
  1660. .wp-block-latest-posts > li > a {
  1661. font-family: "Oswald", sans-serif;
  1662. font-family: var(--font-headings, "Oswald", sans-serif);
  1663. font-size: 1.2rem;
  1664. font-weight: 300;
  1665. line-height: 1.125;
  1666. }
  1667. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1668. color: var(--wp--preset--color--foreground-low-contrast);
  1669. font-size: 0.69444rem;
  1670. line-height: 1.78;
  1671. }
  1672. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1673. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1674. color: currentColor;
  1675. }
  1676. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1677. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1678. font-size: 0.83333rem;
  1679. line-height: 1.78;
  1680. margin: 0;
  1681. }
  1682. .wp-block-latest-posts.alignfull {
  1683. padding-right: 16px;
  1684. padding-left: 16px;
  1685. }
  1686. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1687. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1688. padding-right: 0;
  1689. padding-left: 0;
  1690. }
  1691. .gallery-item {
  1692. display: inline-block;
  1693. text-align: center;
  1694. vertical-align: top;
  1695. width: 100%;
  1696. }
  1697. .gallery-item a {
  1698. display: block;
  1699. }
  1700. .gallery-columns-2 .gallery-item {
  1701. max-width: 50%;
  1702. }
  1703. .gallery-columns-3 .gallery-item {
  1704. max-width: 33.33%;
  1705. }
  1706. .gallery-columns-4 .gallery-item {
  1707. max-width: 25%;
  1708. }
  1709. .gallery-columns-5 .gallery-item {
  1710. max-width: 20%;
  1711. }
  1712. .gallery-columns-6 .gallery-item {
  1713. max-width: 16.66%;
  1714. }
  1715. .gallery-columns-7 .gallery-item {
  1716. max-width: 14.28%;
  1717. }
  1718. .gallery-columns-8 .gallery-item {
  1719. max-width: 12.5%;
  1720. }
  1721. .gallery-columns-9 .gallery-item {
  1722. max-width: 11.11%;
  1723. }
  1724. .gallery-caption {
  1725. display: block;
  1726. }
  1727. ul,
  1728. ol {
  1729. font-family: "Source Sans Pro", Arial, sans-serif;
  1730. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1731. margin: 0;
  1732. padding-right: 32px;
  1733. }
  1734. ul.aligncenter,
  1735. ol.aligncenter {
  1736. list-style-position: inside;
  1737. padding: 0;
  1738. }
  1739. ul.alignright,
  1740. ol.alignright {
  1741. list-style-position: inside;
  1742. text-align: left;
  1743. padding: 0;
  1744. }
  1745. ul {
  1746. list-style-type: disc;
  1747. }
  1748. ol {
  1749. list-style-type: decimal;
  1750. }
  1751. dt {
  1752. font-family: "Oswald", sans-serif;
  1753. font-family: var(--font-headings, "Oswald", sans-serif);
  1754. font-weight: bold;
  1755. }
  1756. dd {
  1757. margin: 0;
  1758. padding-right: 32px;
  1759. }
  1760. .wp-block-media-text {
  1761. /**
  1762. * Block Options
  1763. */
  1764. }
  1765. .wp-block-media-text .wp-block-media-text__content {
  1766. padding: 16px;
  1767. }
  1768. @media only screen and (min-width: 640px) {
  1769. .wp-block-media-text .wp-block-media-text__content {
  1770. padding: 32px;
  1771. }
  1772. }
  1773. .wp-block-media-text .wp-block-media-text__content > * {
  1774. margin-top: 21.312px;
  1775. margin-bottom: 21.312px;
  1776. }
  1777. @media only screen and (min-width: 560px) {
  1778. .wp-block-media-text .wp-block-media-text__content > * {
  1779. margin-top: 32px;
  1780. margin-bottom: 32px;
  1781. }
  1782. }
  1783. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1784. margin-top: 0;
  1785. }
  1786. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1787. margin-bottom: 0;
  1788. }
  1789. @media only screen and (min-width: 560px) {
  1790. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1791. padding-top: 32px;
  1792. padding-bottom: 32px;
  1793. }
  1794. }
  1795. p.has-background {
  1796. padding: 16px 16px;
  1797. }
  1798. .a8c-posts-list__listing {
  1799. list-style: none;
  1800. margin: 0;
  1801. padding: 0;
  1802. }
  1803. .a8c-posts-list__listing:not(:last-child) {
  1804. margin-bottom: calc(3 * 32px);
  1805. }
  1806. .a8c-posts-list-item__featured span {
  1807. color: var(--wp--preset--color--background);
  1808. background-color: var(--wp--preset--color--primary);
  1809. font-family: "Oswald", sans-serif;
  1810. font-family: var(--font-headings, "Oswald", sans-serif);
  1811. font-weight: bold;
  1812. font-size: 0.83333rem;
  1813. line-height: 1;
  1814. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1815. }
  1816. .a8c-posts-list__item {
  1817. display: block;
  1818. /* Vertical margins logic between posts */
  1819. margin-top: calc(3 * 32px);
  1820. margin-bottom: calc(3 * 32px);
  1821. }
  1822. .a8c-posts-list__item:first-child {
  1823. margin-top: 0;
  1824. }
  1825. .a8c-posts-list__item:last-child {
  1826. margin-bottom: 0;
  1827. }
  1828. .a8c-posts-list__item .entry > * {
  1829. /* Vertical margins logic between post details */
  1830. margin-top: 16px;
  1831. margin-bottom: 16px;
  1832. }
  1833. .a8c-posts-list__item .entry > *:first-child {
  1834. margin-top: 0;
  1835. }
  1836. .a8c-posts-list__item .entry > *:last-child {
  1837. margin-bottom: 0;
  1838. }
  1839. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1840. color: var(--wp--preset--color--foreground-low-contrast);
  1841. font-size: 0.83333rem;
  1842. }
  1843. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1844. color: currentColor;
  1845. }
  1846. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1847. color: var(--wp--preset--color--primary-hover);
  1848. }
  1849. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1850. margin-right: 16px;
  1851. }
  1852. .a8c-posts-list__view-all {
  1853. display: inline-block;
  1854. }
  1855. .wp-block-pullquote {
  1856. border-top-color: var(--wp--preset--color--border);
  1857. border-top-width: 4px;
  1858. border-bottom-color: var(--wp--preset--color--border);
  1859. border-bottom-width: 4px;
  1860. color: var(--wp--preset--color--foreground);
  1861. }
  1862. .wp-block-pullquote blockquote p {
  1863. font-family: "Source Sans Pro", Arial, sans-serif;
  1864. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1865. font-size: 1.2rem;
  1866. letter-spacing: normal;
  1867. line-height: 1.125;
  1868. }
  1869. .wp-block-pullquote.is-style-solid-color blockquote p {
  1870. font-size: 1.2rem;
  1871. }
  1872. .wp-block-pullquote a {
  1873. color: currentColor;
  1874. }
  1875. .wp-block-pullquote .wp-block-pullquote__citation,
  1876. .wp-block-pullquote cite,
  1877. .wp-block-pullquote footer {
  1878. color: var(--wp--preset--color--foreground-low-contrast);
  1879. font-size: 0.83333rem;
  1880. letter-spacing: normal;
  1881. }
  1882. .wp-block-pullquote blockquote {
  1883. padding-right: 0;
  1884. }
  1885. .wp-block-pullquote.is-style-solid-color {
  1886. color: var(--wp--preset--color--background);
  1887. }
  1888. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1889. .wp-block-pullquote.is-style-solid-color cite,
  1890. .wp-block-pullquote.is-style-solid-color footer {
  1891. color: currentColor;
  1892. }
  1893. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  1894. background-color: var(--wp--preset--color--primary);
  1895. }
  1896. .wp-block-quote {
  1897. border-right-color: var(--wp--preset--color--primary);
  1898. margin: 32px 0;
  1899. padding-right: 16px;
  1900. /**
  1901. * Block Options
  1902. */
  1903. }
  1904. .wp-block-quote > * {
  1905. margin-top: 16px;
  1906. margin-bottom: 16px;
  1907. }
  1908. .wp-block-quote > *:first-child {
  1909. margin-top: 0;
  1910. }
  1911. .wp-block-quote > *:last-child {
  1912. margin-bottom: 0;
  1913. }
  1914. .wp-block-quote p {
  1915. font-family: "Source Sans Pro", Arial, sans-serif;
  1916. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1917. font-size: 1.2rem;
  1918. letter-spacing: normal;
  1919. line-height: 1.125;
  1920. }
  1921. .wp-block-quote .wp-block-quote__citation,
  1922. .wp-block-quote cite,
  1923. .wp-block-quote footer {
  1924. color: var(--wp--preset--color--foreground-low-contrast);
  1925. font-size: 0.83333rem;
  1926. letter-spacing: normal;
  1927. }
  1928. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1929. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1930. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1931. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1932. .wp-block-quote cite,
  1933. [class*="background-color"]:not(.has-background-background-color)
  1934. .wp-block-quote cite,
  1935. [style*="background-color"]
  1936. .wp-block-quote cite,
  1937. .wp-block-cover[style*="background-image"]
  1938. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1939. .wp-block-quote footer,
  1940. [class*="background-color"]:not(.has-background-background-color)
  1941. .wp-block-quote footer,
  1942. [style*="background-color"]
  1943. .wp-block-quote footer,
  1944. .wp-block-cover[style*="background-image"]
  1945. .wp-block-quote footer {
  1946. color: currentColor;
  1947. }
  1948. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1949. border-left-color: var(--wp--preset--color--primary);
  1950. }
  1951. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1952. /* Resetting margins to match _block-container.scss */
  1953. margin-top: 32px;
  1954. margin-bottom: 32px;
  1955. padding: 0;
  1956. }
  1957. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1958. font-size: 1.44rem;
  1959. letter-spacing: normal;
  1960. line-height: 1.125;
  1961. }
  1962. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1963. .wp-block-quote.is-style-large cite,
  1964. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1965. .wp-block-quote.is-large cite,
  1966. .wp-block-quote.is-large footer {
  1967. color: var(--wp--preset--color--foreground-low-contrast);
  1968. font-size: 0.83333rem;
  1969. letter-spacing: normal;
  1970. }
  1971. .has-background:not(.has-background-background-color) .wp-block-quote,
  1972. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1973. [style*="background-color"] .wp-block-quote,
  1974. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1975. border-color: currentColor;
  1976. }
  1977. .wp-block-search {
  1978. flex-wrap: wrap;
  1979. }
  1980. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  1981. background: var(--wp--preset--color--white);
  1982. color: var(--wp--preset--color--black);
  1983. border: 1px solid var(--wp--preset--color--border);
  1984. border-radius: 3px;
  1985. }
  1986. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  1987. padding: calc( 0.33 * 16px);
  1988. }
  1989. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  1990. padding: 16px 16px;
  1991. }
  1992. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  1993. padding: 0;
  1994. }
  1995. .wp-block-search .wp-block-search__label {
  1996. font-weight: normal;
  1997. }
  1998. .wp-block-search .wp-block-search__input {
  1999. color: var(--wp--preset--color--black);
  2000. border: 1px solid var(--wp--preset--color--border);
  2001. border-radius: 3px;
  2002. padding: calc( 0.33 * 16px);
  2003. font-size: 1rem;
  2004. line-height: 1rem;
  2005. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2006. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  2007. max-width: inherit;
  2008. margin-left: calc( .66 * 16px);
  2009. background: var(--wp--preset--color--white);
  2010. }
  2011. .wp-block-search .wp-block-search__input:focus {
  2012. color: var(--wp--preset--color--black);
  2013. border-color: var(--wp--preset--color--border);
  2014. }
  2015. .wp-block-search .wp-block-search__button {
  2016. border: none;
  2017. box-shadow: none;
  2018. }
  2019. .wp-block-search .wp-block-search__button.has-icon {
  2020. transform: scaleX(-1);
  2021. padding: 0;
  2022. min-width: calc(2* 16px + 1rem + 4px);
  2023. min-height: calc(2* 16px + 1rem + 4px);
  2024. }
  2025. .wp-block-search .wp-block-search__button.has-icon svg {
  2026. fill: currentColor;
  2027. width: 29px;
  2028. height: 29px;
  2029. }
  2030. hr {
  2031. border-bottom: 2px solid var(--wp--preset--color--border);
  2032. clear: both;
  2033. margin-right: auto;
  2034. margin-left: auto;
  2035. }
  2036. hr.wp-block-separator {
  2037. border-bottom: 2px solid var(--wp--preset--color--border);
  2038. /**
  2039. * Block Options
  2040. */
  2041. }
  2042. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  2043. max-width: 96px;
  2044. }
  2045. hr.wp-block-separator.is-style-wide {
  2046. border-bottom-width: 2px;
  2047. }
  2048. hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
  2049. background-color: transparent !important;
  2050. }
  2051. hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
  2052. color: currentColor !important;
  2053. }
  2054. hr.wp-block-separator.is-style-dots:before {
  2055. color: var(--wp--preset--color--border);
  2056. font-size: 1.728rem;
  2057. letter-spacing: 0.83333rem;
  2058. padding-right: 0.83333rem;
  2059. }
  2060. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  2061. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  2062. [style*="background-color"] hr.wp-block-separator,
  2063. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  2064. border-color: currentColor;
  2065. }
  2066. .wp-block-jetpack-slideshow ul {
  2067. margin-right: 0;
  2068. margin-left: 0;
  2069. }
  2070. .wp-block-spacer {
  2071. display: block;
  2072. margin-bottom: 0 !important;
  2073. margin-top: 0 !important;
  2074. }
  2075. @media only screen and (max-width: 559px) {
  2076. .wp-block-spacer[style] {
  2077. height: 16px !important;
  2078. }
  2079. }
  2080. .jetpack_subscription_widget input[type="text"] {
  2081. padding: calc( 0.33 * 16px) !important;
  2082. width: 100% !important;
  2083. }
  2084. table,
  2085. .wp-block-table {
  2086. width: 100%;
  2087. min-width: 240px;
  2088. border-collapse: collapse;
  2089. }
  2090. table th,
  2091. .wp-block-table th {
  2092. font-family: "Oswald", sans-serif;
  2093. font-family: var(--font-headings, "Oswald", sans-serif);
  2094. }
  2095. table td,
  2096. table th,
  2097. .wp-block-table td,
  2098. .wp-block-table th {
  2099. padding: calc( 0.5 * 16px);
  2100. border: 1px solid;
  2101. }
  2102. table.is-style-stripes tbody tr:nth-child(odd),
  2103. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  2104. background-color: var(--wp--preset--color--border-low-contrast);
  2105. color: var(--wp--preset--color--foreground);
  2106. }
  2107. .wp-block-video figcaption {
  2108. color: var(--wp--preset--color--foreground-low-contrast);
  2109. font-size: 0.69444rem;
  2110. margin-top: calc(0.5 * 16px);
  2111. margin-bottom: 16px;
  2112. text-align: center;
  2113. }
  2114. * > figure > video {
  2115. max-width: unset;
  2116. width: 100%;
  2117. vertical-align: middle;
  2118. }
  2119. /* Block Alignments */
  2120. /**
  2121. * .alignleft
  2122. */
  2123. .alignleft {
  2124. text-align: left;
  2125. float: left;
  2126. margin-top: 0;
  2127. margin-right: 16px;
  2128. margin-bottom: 32px;
  2129. }
  2130. .entry-content > .alignleft {
  2131. float: left;
  2132. }
  2133. /**
  2134. * .aligncenter
  2135. */
  2136. .aligncenter {
  2137. clear: both;
  2138. display: block;
  2139. float: none;
  2140. margin-left: auto;
  2141. margin-right: auto;
  2142. text-align: center;
  2143. }
  2144. /**
  2145. * .alignright
  2146. */
  2147. .alignright {
  2148. float: right;
  2149. margin-top: 0;
  2150. margin-bottom: 32px;
  2151. margin-left: 16px;
  2152. }
  2153. .entry-content > .alignright {
  2154. float: right;
  2155. }
  2156. .entry-content * > .alignleft + *,
  2157. .entry-content * > .alignright + * {
  2158. margin-top: 0;
  2159. }
  2160. /**
  2161. * .aligndefault
  2162. */
  2163. /**
  2164. * .alignwide
  2165. */
  2166. .alignwide {
  2167. clear: both;
  2168. }
  2169. /**
  2170. * .alignfull
  2171. */
  2172. .alignfull {
  2173. clear: both;
  2174. }
  2175. .has-left-content {
  2176. justify-content: flex-start;
  2177. }
  2178. .has-right-content {
  2179. justify-content: flex-end;
  2180. }
  2181. .has-parallax {
  2182. background-attachment: fixed;
  2183. }
  2184. .has-primary-color {
  2185. color: var(--wp--preset--color--primary);
  2186. }
  2187. .has-secondary-color {
  2188. color: var(--wp--preset--color--secondary);
  2189. }
  2190. .has-foreground-color {
  2191. color: var(--wp--preset--color--foreground);
  2192. }
  2193. .has-foreground-light-color {
  2194. color: var(--wp--preset--color--foreground-low-contrast);
  2195. }
  2196. .has-foreground-dark-color {
  2197. color: var(--wp--preset--color--foreground-high-contrast);
  2198. }
  2199. .has-background-light-color {
  2200. color: var(--wp--preset--color--background-high-contrast);
  2201. }
  2202. .has-background-dark-color {
  2203. color: var(--wp--preset--color--background-low-contrast);
  2204. }
  2205. .has-background-dim,
  2206. .has-background-color {
  2207. color: var(--wp--preset--color--background);
  2208. }
  2209. .has-background p:not(.has-text-color),
  2210. .has-background h1:not(.has-text-color),
  2211. .has-background h2:not(.has-text-color),
  2212. .has-background h3:not(.has-text-color),
  2213. .has-background h4:not(.has-text-color),
  2214. .has-background h5:not(.has-text-color),
  2215. .has-background h6:not(.has-text-color) {
  2216. color: currentColor;
  2217. }
  2218. .has-primary-background-color,
  2219. .has-primary-background-color.has-background-dim {
  2220. background-color: var(--wp--preset--color--primary);
  2221. }
  2222. .has-primary-background-color:not(.has-text-color),
  2223. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  2224. color: var(--wp--preset--color--background);
  2225. }
  2226. .has-secondary-background-color,
  2227. .has-secondary-background-color.has-background-dim {
  2228. background-color: var(--wp--preset--color--secondary);
  2229. }
  2230. .has-secondary-background-color:not(.has-text-color),
  2231. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  2232. color: var(--wp--preset--color--background);
  2233. }
  2234. .has-background-dim,
  2235. .has-foreground-background-color,
  2236. .has-foreground-background-color.has-background-dim {
  2237. background-color: var(--wp--preset--color--foreground);
  2238. }
  2239. .has-background-dim,
  2240. .has-foreground-background-color,
  2241. .has-foreground-background-color.has-background-dim {
  2242. color: var(--wp--preset--color--background);
  2243. }
  2244. .has-foreground-light-background-color,
  2245. .has-foreground-light-background-color.has-background-dim {
  2246. background-color: var(--wp--preset--color--foreground-low-contrast);
  2247. }
  2248. .has-foreground-light-background-color:not(.has-text-color),
  2249. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  2250. color: var(--wp--preset--color--background);
  2251. }
  2252. .has-foreground-dark-background-color,
  2253. .has-foreground-dark-background-color.has-background-dim {
  2254. background-color: var(--wp--preset--color--foreground-high-contrast);
  2255. }
  2256. .has-foreground-dark-background-color:not(.has-text-color),
  2257. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  2258. color: var(--wp--preset--color--background);
  2259. }
  2260. .has-background-light-background-color,
  2261. .has-background-light-background-color.has-background-dim {
  2262. background-color: var(--wp--preset--color--background-high-contrast);
  2263. }
  2264. .has-background-light-background-color:not(.has-text-color),
  2265. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  2266. color: var(--wp--preset--color--foreground);
  2267. }
  2268. .has-background-dark-background-color,
  2269. .has-background-dark-background-color.has-background-dim {
  2270. background-color: var(--wp--preset--color--background-low-contrast);
  2271. }
  2272. .has-background-dark-background-color:not(.has-text-color),
  2273. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  2274. color: var(--wp--preset--color--foreground);
  2275. }
  2276. .has-background-background-color,
  2277. .has-background-background-color.has-background-dim {
  2278. background-color: var(--wp--preset--color--background);
  2279. color: var(--wp--preset--color--foreground);
  2280. }
  2281. .has-background-background-color:not(.has-text-color),
  2282. .has-background-background-color.has-background-dim:not(.has-text-color) {
  2283. color: var(--wp--preset--color--foreground);
  2284. }
  2285. .is-small-text,
  2286. .has-small-font-size {
  2287. font-size: 0.83333rem;
  2288. }
  2289. .is-regular-text,
  2290. .has-regular-font-size,
  2291. .has-normal-font-size,
  2292. .has-medium-font-size {
  2293. font-size: 1rem;
  2294. }
  2295. .is-large-text,
  2296. .has-large-font-size {
  2297. font-size: 1.44rem;
  2298. line-height: 1.125;
  2299. }
  2300. .is-larger-text,
  2301. .has-larger-font-size,
  2302. .has-huge-font-size {
  2303. font-size: 1.728rem;
  2304. line-height: 1.125;
  2305. }
  2306. .has-drop-cap:not(:focus)::first-letter {
  2307. font-family: "Oswald", sans-serif;
  2308. font-family: var(--font-headings, "Oswald", sans-serif);
  2309. font-size: calc(2 * 2.0736rem);
  2310. font-weight: 300;
  2311. line-height: 0.66;
  2312. text-transform: uppercase;
  2313. font-style: normal;
  2314. float: right;
  2315. margin: 0.1em 0 0 0.1em;
  2316. }
  2317. .has-drop-cap:not(:focus)::after {
  2318. content: "";
  2319. display: table;
  2320. clear: both;
  2321. padding-top: 14px;
  2322. }
  2323. .desktop-only {
  2324. display: none;
  2325. }
  2326. @media only screen and (min-width: 560px) {
  2327. .desktop-only {
  2328. display: block;
  2329. }
  2330. }
  2331. /**
  2332. * Spacing Overrides
  2333. */
  2334. /*
  2335. * Margins
  2336. */
  2337. .margin-top-none {
  2338. margin-top: 0 !important;
  2339. }
  2340. .margin-top-half {
  2341. margin-top: 16px !important;
  2342. }
  2343. .margin-top-default {
  2344. margin-top: 32px !important;
  2345. }
  2346. .margin-right-none {
  2347. margin-right: 0 !important;
  2348. }
  2349. .margin-right-half {
  2350. margin-right: 16px !important;
  2351. }
  2352. .margin-right-default {
  2353. margin-right: 32px !important;
  2354. }
  2355. .margin-bottom-none {
  2356. margin-bottom: 0 !important;
  2357. }
  2358. .margin-bottom-half {
  2359. margin-bottom: 16px !important;
  2360. }
  2361. .margin-bottom-default {
  2362. margin-bottom: 32px !important;
  2363. }
  2364. .margin-left-none {
  2365. margin-left: 0 !important;
  2366. }
  2367. .margin-left-half {
  2368. margin-left: 16px !important;
  2369. }
  2370. .margin-left-default {
  2371. margin-left: 32px !important;
  2372. }
  2373. /*
  2374. * Padding
  2375. */
  2376. .padding-top-none {
  2377. padding-top: 0 !important;
  2378. }
  2379. .padding-top-half {
  2380. padding-top: 16px !important;
  2381. }
  2382. .padding-top-default {
  2383. padding-top: 32px !important;
  2384. }
  2385. .padding-right-none {
  2386. padding-right: 0 !important;
  2387. }
  2388. .padding-right-half {
  2389. padding-right: 16px !important;
  2390. }
  2391. .padding-right-default {
  2392. padding-right: 32px !important;
  2393. }
  2394. .padding-bottom-none {
  2395. padding-bottom: 0 !important;
  2396. }
  2397. .padding-bottom-half {
  2398. padding-bottom: 16px !important;
  2399. }
  2400. .padding-bottom-default {
  2401. padding-bottom: 32px !important;
  2402. }
  2403. .padding-left-none {
  2404. padding-left: 0 !important;
  2405. }
  2406. .padding-left-half {
  2407. padding-left: 16px !important;
  2408. }
  2409. .padding-left-default {
  2410. padding-left: 32px !important;
  2411. }
  2412. /**
  2413. * Components
  2414. * - Similar to Blocks but exist outside of the "current" editor context
  2415. */
  2416. /*
  2417. * Components
  2418. * - Similar to Blocks but exist outside of the "current" editor context
  2419. */
  2420. .site-branding {
  2421. color: var(--wp--preset--color--foreground-low-contrast);
  2422. }
  2423. .site-title {
  2424. color: var(--wp--preset--color--primary);
  2425. font-family: "Oswald", sans-serif;
  2426. font-family: var(--font-headings, "Oswald", sans-serif);
  2427. letter-spacing: normal;
  2428. line-height: 1.3333;
  2429. }
  2430. .site-title a {
  2431. color: currentColor;
  2432. font-weight: 300;
  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-hover);
  2439. }
  2440. .site-description {
  2441. color: currentColor;
  2442. font-family: "Source Sans Pro", Arial, sans-serif;
  2443. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  2444. }
  2445. body:not(.fse-enabled) .site-title {
  2446. font-size: 1.2rem;
  2447. }
  2448. body:not(.fse-enabled) .site-description {
  2449. font-size: 0.83333rem;
  2450. }
  2451. .main-navigation {
  2452. color: var(--wp--preset--color--foreground);
  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--primary-hover);
  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--primary);
  2584. display: block;
  2585. font-family: "Source Sans Pro", Arial, sans-serif;
  2586. font-family: var(--font-base, "Source Sans Pro", 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--primary);
  2597. }
  2598. .main-navigation a:hover {
  2599. color: var(--wp--preset--color--primary-hover);
  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: 1.2rem;
  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--primary);
  2653. display: inline-block;
  2654. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2655. }
  2656. .social-navigation a:hover {
  2657. color: var(--wp--preset--color--primary-hover);
  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--primary);
  2676. font-family: "Oswald", sans-serif;
  2677. font-family: var(--font-headings, "Oswald", 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--secondary-hover);
  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--primary);
  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: "Source Sans Pro", Arial, sans-serif;
  2738. font-family: var(--font-base, "Source Sans Pro", 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--secondary-hover);
  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: "Oswald", sans-serif;
  2873. font-family: var(--font-headings, "Oswald", 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: "Oswald", sans-serif;
  2896. font-family: var(--font-headings, "Oswald", 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: "Source Sans Pro", Arial, sans-serif;
  2952. font-family: var(--font-base, "Source Sans Pro", 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: "Oswald", sans-serif;
  3077. font-family: var(--font-headings, "Oswald", 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: "Oswald", sans-serif;
  3165. font-family: var(--font-headings, "Oswald", 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: "Oswald", sans-serif;
  3194. font-family: var(--font-headings, "Oswald", 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. * Extra Child Theme Styles
  3545. *
  3546. * 1. General Helper Styles
  3547. * 2. Header
  3548. * 3. Main Wrapper and Content
  3549. * 4. Navigation Menu
  3550. * 5. Archive Pagination and Post Navigation
  3551. * 6. Block Specific Styles
  3552. * 6.1. Column Block
  3553. * 6.2. Quote Block
  3554. * 6.3. Hero Block and Cover Block
  3555. * 6.4. File Block
  3556. * 6.5. Latest Comments Block
  3557. * 6.6. Button Block
  3558. * 6.7. Posts List Block
  3559. * 6.8. Search Block
  3560. * 7. Widgets
  3561. */
  3562. /**
  3563. * 1. General Helper Styles
  3564. */
  3565. body {
  3566. font-weight: 300;
  3567. }
  3568. b,
  3569. strong {
  3570. font-weight: 700;
  3571. }
  3572. .home.page.hide-homepage-title .site-main {
  3573. padding: 0;
  3574. }
  3575. .home.page.hide-homepage-title .site-main article .entry-content {
  3576. margin-top: 0;
  3577. }
  3578. a {
  3579. text-decoration: none;
  3580. }
  3581. .main-navigation {
  3582. text-transform: uppercase;
  3583. }
  3584. .main-navigation > div > ul,
  3585. .social-navigation > div > ul,
  3586. .pagination .nav-links {
  3587. justify-content: center;
  3588. }
  3589. /**
  3590. * 2. Header
  3591. */
  3592. #masthead {
  3593. background-color: var(--wp--preset--color--background);
  3594. padding: 0;
  3595. margin: 0 auto;
  3596. }
  3597. #masthead .site-branding {
  3598. text-align: center;
  3599. background: var(--wp--preset--color--background);
  3600. background-position: center;
  3601. background-repeat: no-repeat;
  3602. background-size: cover;
  3603. text-align: center;
  3604. height: 100%;
  3605. min-height: 72px;
  3606. padding: 3em 0 36px;
  3607. }
  3608. #masthead .social-navigation {
  3609. margin-bottom: 16px;
  3610. }
  3611. #masthead .social-navigation ul li a {
  3612. color: var(--wp--preset--color--secondary);
  3613. }
  3614. #masthead .social-navigation ul li a:hover {
  3615. color: var(--wp--preset--color--secondary-hover);
  3616. }
  3617. body:not(.fse-enabled) .site-title {
  3618. font-size: 2.0736rem;
  3619. }
  3620. body:not(.fse-enabled) .site-description {
  3621. color: var(--wp--preset--color--foreground);
  3622. }
  3623. /**
  3624. * 3. Main Wrapper and Content
  3625. */
  3626. .site {
  3627. margin: 0 auto;
  3628. padding: 0;
  3629. }
  3630. .site-content {
  3631. background-color: var(--wp--preset--color--background);
  3632. }
  3633. #page .entry-header,
  3634. #page .page-header,
  3635. #page .entry-footer,
  3636. #page .a8c-posts-list {
  3637. text-align: center;
  3638. }
  3639. #page .a8c-posts-list-item__excerpt {
  3640. text-align: right;
  3641. }
  3642. /**
  3643. * 4. Navigation
  3644. */
  3645. /**
  3646. * 4.1 Main Navigation
  3647. */
  3648. body:not(.fse-enabled) #site-navigation, body:not(.fse-enabled) .main-navigation {
  3649. background-color: var(--wp--preset--color--secondary);
  3650. border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  3651. margin-right: 0;
  3652. margin-left: 0;
  3653. text-align: center;
  3654. }
  3655. body:not(.fse-enabled) #site-navigation > div, body:not(.fse-enabled) .main-navigation > div {
  3656. text-align: right;
  3657. }
  3658. body:not(.fse-enabled) #site-navigation.main-navigation > div, body:not(.fse-enabled) .main-navigation.main-navigation > div {
  3659. padding-right: 16px;
  3660. padding-left: 16px;
  3661. }
  3662. body:not(.fse-enabled) #site-navigation.main-navigation ul li.current-menu-item a, body:not(.fse-enabled) .main-navigation.main-navigation ul li.current-menu-item a {
  3663. color: var(--wp--preset--color--primary);
  3664. }
  3665. body:not(.fse-enabled) #site-navigation.main-navigation ul li a, body:not(.fse-enabled) .main-navigation.main-navigation ul li a {
  3666. color: var(--wp--preset--color--background);
  3667. text-decoration: none;
  3668. }
  3669. body:not(.fse-enabled) #site-navigation.main-navigation ul li a:hover, body:not(.fse-enabled) .main-navigation.main-navigation ul li a:hover {
  3670. color: var(--wp--preset--color--primary);
  3671. }
  3672. @media only screen and (min-width: 560px) {
  3673. body:not(.fse-enabled) #site-navigation.main-navigation ul li, body:not(.fse-enabled) .main-navigation.main-navigation ul li {
  3674. padding-right: 0;
  3675. padding-left: 0;
  3676. list-style-type: disc;
  3677. }
  3678. body:not(.fse-enabled) #site-navigation.main-navigation ul li.current-menu-item a, body:not(.fse-enabled) .main-navigation.main-navigation ul li.current-menu-item a {
  3679. color: var(--wp--preset--color--primary);
  3680. }
  3681. body:not(.fse-enabled) #site-navigation.main-navigation ul li a, body:not(.fse-enabled) .main-navigation.main-navigation ul li a {
  3682. color: var(--wp--preset--color--background);
  3683. font-size: 0.83333rem;
  3684. }
  3685. body:not(.fse-enabled) #site-navigation.main-navigation ul li a:hover, body:not(.fse-enabled) .main-navigation.main-navigation ul li a:hover {
  3686. color: var(--wp--preset--color--primary);
  3687. }
  3688. body:not(.fse-enabled) #site-navigation.main-navigation ul li a::after, body:not(.fse-enabled) .main-navigation.main-navigation ul li a::after {
  3689. color: var(--wp--preset--color--background);
  3690. content: " \2022";
  3691. margin-right: 16px;
  3692. display: inline;
  3693. font-size: 1rem;
  3694. opacity: 0.58;
  3695. }
  3696. body:not(.fse-enabled) #site-navigation.main-navigation ul li:last-child a::after, body:not(.fse-enabled) .main-navigation.main-navigation ul li:last-child a::after {
  3697. content: "";
  3698. margin-right: 0;
  3699. }
  3700. }
  3701. @media only screen and (min-width: 560px) {
  3702. body:not(.fse-enabled) #site-navigation.main-navigation ul ul, body:not(.fse-enabled) .main-navigation.main-navigation ul ul {
  3703. background-color: var(--wp--preset--color--background);
  3704. }
  3705. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li.current-menu-item a, body:not(.fse-enabled) .main-navigation.main-navigation ul ul li.current-menu-item a {
  3706. color: var(--wp--preset--color--secondary);
  3707. }
  3708. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li a, body:not(.fse-enabled) .main-navigation.main-navigation ul ul li a {
  3709. color: var(--wp--preset--color--primary);
  3710. }
  3711. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li a::after, body:not(.fse-enabled) .main-navigation.main-navigation ul ul li a::after {
  3712. content: "";
  3713. }
  3714. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li a:hover, body:not(.fse-enabled) .main-navigation.main-navigation ul ul li a:hover {
  3715. color: var(--wp--preset--color--primary-hover);
  3716. }
  3717. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li:hover, body:not(.fse-enabled) .main-navigation.main-navigation ul ul li:hover {
  3718. background: var(--wp--preset--color--background-high-contrast);
  3719. }
  3720. }
  3721. body:not(.fse-enabled) #site-navigation.main-navigation .main-menu > li > a, body:not(.fse-enabled) .main-navigation.main-navigation .main-menu > li > a {
  3722. padding-right: 0;
  3723. }
  3724. body:not(.fse-enabled) #site-navigation.main-navigation #toggle-menu, body:not(.fse-enabled) .main-navigation.main-navigation #toggle-menu {
  3725. border-radius: 0;
  3726. width: 100% !important;
  3727. text-align: center;
  3728. font-size: 1.2rem;
  3729. }
  3730. /**
  3731. * 4.2 Social Navigation
  3732. */
  3733. .social-navigation > div > ul {
  3734. margin-right: 0;
  3735. margin-left: 0;
  3736. }
  3737. /**
  3738. * 5. Archive Pagination and Post Navigation
  3739. */
  3740. .pagination .nav-links > *,
  3741. .post-navigation .post-title {
  3742. font-weight: normal;
  3743. }
  3744. /**
  3745. * 6. Block Specific Styles
  3746. */
  3747. /**
  3748. * 6.1. Column Block
  3749. */
  3750. .wp-block-coblocks-column h1,
  3751. .wp-block-coblocks-column h2,
  3752. .wp-block-coblocks-column h3,
  3753. .wp-block-coblocks-column h4,
  3754. .wp-block-coblocks-column h5,
  3755. .wp-block-coblocks-column h6 {
  3756. margin-bottom: .857em;
  3757. }
  3758. .wp-block-coblocks-column a {
  3759. color: var(--wp--preset--color--secondary);
  3760. }
  3761. .wp-block-coblocks-column a:hover {
  3762. color: var(--wp--preset--color--secondary-hover);
  3763. }
  3764. /**
  3765. * 6.2. Quote Block
  3766. */
  3767. .wp-block-quote,
  3768. .wp-block-quote[style*="text-align:center"],
  3769. .wp-block-quote[style*="text-align:right"] {
  3770. border: 1px solid #f2f2f2;
  3771. padding: 16px;
  3772. }
  3773. .wp-block-quote p,
  3774. .wp-block-quote[style*="text-align:center"] p,
  3775. .wp-block-quote[style*="text-align:right"] p {
  3776. font-family: "Source Sans Pro", Arial, sans-serif;
  3777. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  3778. }
  3779. .wp-block-quote cite,
  3780. .wp-block-quote[style*="text-align:center"] cite,
  3781. .wp-block-quote[style*="text-align:right"] cite {
  3782. color: var(--wp--preset--color--secondary);
  3783. }
  3784. /**
  3785. * 6.3. Hero Block and Cover Block
  3786. */
  3787. .wp-block-coblocks-hero__box,
  3788. .wp-block-cover__inner-container {
  3789. padding: 32px;
  3790. }
  3791. .wp-block-coblocks-hero__box h1,
  3792. .wp-block-coblocks-hero__box h2,
  3793. .wp-block-coblocks-hero__box h3,
  3794. .wp-block-coblocks-hero__box h4,
  3795. .wp-block-coblocks-hero__box h5,
  3796. .wp-block-coblocks-hero__box h6,
  3797. .wp-block-cover__inner-container h1,
  3798. .wp-block-cover__inner-container h2,
  3799. .wp-block-cover__inner-container h3,
  3800. .wp-block-cover__inner-container h4,
  3801. .wp-block-cover__inner-container h5,
  3802. .wp-block-cover__inner-container h6 {
  3803. padding: 16px;
  3804. }
  3805. .wp-block-coblocks-hero__box p,
  3806. .wp-block-cover__inner-container p {
  3807. padding: 16px;
  3808. }
  3809. /**
  3810. * 6.4. File Block
  3811. */
  3812. .wp-block-file a.wp-block-file__button {
  3813. text-transform: uppercase;
  3814. line-height: 1;
  3815. color: var(--wp--preset--color--background);
  3816. cursor: pointer;
  3817. font-weight: 600;
  3818. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3819. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3820. font-size: 0.69444rem;
  3821. background-color: var(--wp--preset--color--secondary);
  3822. border-radius: 9px;
  3823. border-width: 2px;
  3824. padding: 16px 16px;
  3825. display: inline-block;
  3826. }
  3827. .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited {
  3828. color: var(--wp--preset--color--background);
  3829. background-color: var(--wp--preset--color--secondary-hover);
  3830. opacity: 1;
  3831. }
  3832. /**
  3833. * 6.5. Latest Comments Block
  3834. */
  3835. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  3836. font-family: "Source Sans Pro", Arial, sans-serif;
  3837. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  3838. }
  3839. .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  3840. font-size: 0.69444rem;
  3841. }
  3842. /**
  3843. * 6.6. Button Block
  3844. * 6.7. Posts List Block
  3845. * 6.8. Search Block
  3846. */
  3847. .wp-block-button a.wp-block-button__link,
  3848. .a8c-posts-list a.a8c-posts-list__view-all,
  3849. .wp-block-search .wp-block-search__button {
  3850. text-transform: uppercase;
  3851. }
  3852. /**
  3853. * 7. Widgets
  3854. */
  3855. .site-footer .widget-area .widget-title {
  3856. margin-bottom: .857em;
  3857. }
  3858. /**
  3859. * 6.1. Blog Posts (Newspack) Block
  3860. */
  3861. .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 {
  3862. text-decoration: none;
  3863. }
  3864. .wp-block-newspack-blocks-homepage-articles article .more-link:active, .wp-block-newspack-blocks-homepage-articles article .more-link:focus, .wp-block-newspack-blocks-homepage-articles article .more-link:hover {
  3865. color: var(--wp--preset--color--primary-hover);
  3866. }
  3867. .wp-block-newspack-blocks-homepage-articles article .cat-links a,
  3868. .wp-block-newspack-blocks-homepage-articles article .more-link,
  3869. .wp-block-newspack-blocks-homepage-articles article .entry-meta a {
  3870. text-decoration: none;
  3871. }
  3872. .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,
  3873. .wp-block-newspack-blocks-homepage-articles article .more-link:active,
  3874. .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
  3875. .wp-block-newspack-blocks-homepage-articles article .more-link:hover,
  3876. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  3877. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:focus,
  3878. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover {
  3879. text-decoration: underline;
  3880. }
  3881. .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 {
  3882. color: inherit;
  3883. text-decoration: underline;
  3884. }
  3885. .wp-block-newspack-blocks-homepage-articles.image-alignbehind article .more-link:active, .wp-block-newspack-blocks-homepage-articles.image-alignbehind article .more-link:focus, .wp-block-newspack-blocks-homepage-articles.image-alignbehind article .more-link:hover {
  3886. color: inherit;
  3887. }
  3888. .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,
  3889. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
  3890. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
  3891. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  3892. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
  3893. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
  3894. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  3895. text-decoration: underline;
  3896. }
  3897. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:active, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:focus, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:hover,
  3898. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:active,
  3899. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
  3900. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:hover,
  3901. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link:active,
  3902. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
  3903. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link:hover {
  3904. color: inherit;
  3905. }
  3906. /**
  3907. * Search block
  3908. */
  3909. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  3910. border-radius: 9px;
  3911. }
  3912. .wp-block-search.wp-block-search__button-inside .wp-block-search__input {
  3913. background: transparent;
  3914. }
  3915. .wp-block-search .wp-block-search__input {
  3916. margin-left: calc( .1 * 16px);
  3917. border-radius: 9px;
  3918. }
  3919. /**
  3920. * Full Site Editing
  3921. * - Full Site Editing overrides
  3922. */
  3923. .fse-template-part {
  3924. margin-bottom: 0;
  3925. margin-top: 0;
  3926. }
  3927. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  3928. width: 100%;
  3929. }
  3930. .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  3931. color: inherit;
  3932. }
  3933. .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
  3934. justify-content: flex-start;
  3935. }
  3936. .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
  3937. justify-content: center;
  3938. }
  3939. .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
  3940. justify-content: flex-end;
  3941. }
  3942. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3943. padding: 16px 0;
  3944. }
  3945. @media only screen and (min-width: 560px) {
  3946. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3947. padding: 16px;
  3948. }
  3949. }
  3950. .fse-template-part .main-navigation > div > .main-menu.footer-menu > .menu-item-has-children > a::after {
  3951. font-size: 0.6em;
  3952. vertical-align: middle;
  3953. }
  3954. .fse-template-part .wp-block-columns .wp-block-column > * {
  3955. margin: 0 0 5px 0;
  3956. }
  3957. .fse-header > *:first-child:not(.alignfull) {
  3958. margin-top: 21.312px;
  3959. }
  3960. @media only screen and (min-width: 560px) {
  3961. .fse-header > *:first-child:not(.alignfull) {
  3962. margin-top: 32px;
  3963. }
  3964. }
  3965. .fse-footer {
  3966. display: block;
  3967. }
  3968. .fse-footer .site-info {
  3969. margin-top: 21.312px;
  3970. margin-bottom: 21.312px;
  3971. text-align: center;
  3972. }
  3973. @media only screen and (min-width: 560px) {
  3974. .fse-footer .site-info {
  3975. margin-top: 32px;
  3976. margin-bottom: 32px;
  3977. }
  3978. }
  3979. .fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
  3980. padding-bottom: 32px;
  3981. }
  3982. @media only screen and (min-width: 560px) {
  3983. .fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
  3984. padding-bottom: 48px;
  3985. }
  3986. }
  3987. .fse-template-part .wp-block-social-links {
  3988. margin-top: 10px;
  3989. }
  3990. .fse-template-part.fse-footer .main-navigation {
  3991. border-bottom: none;
  3992. }
  3993. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  3994. width: 100%;
  3995. }
  3996. .fse-template-part .main-navigation a {
  3997. text-decoration: none;
  3998. text-transform: uppercase;
  3999. }
  4000. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  4001. padding: 0;
  4002. }
  4003. .fse-template-part.fse-header .main-navigation {
  4004. border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  4005. }
  4006. @media only screen and (min-width: 560px) {
  4007. .fse-template-part.fse-header .main-navigation div ul li a::after {
  4008. color: #ffa4ad;
  4009. content: " \2022";
  4010. margin-right: 16px;
  4011. display: inline;
  4012. }
  4013. .fse-template-part.fse-header .main-navigation div ul li:last-child a::after {
  4014. content: "";
  4015. margin-right: 0;
  4016. }
  4017. }
  4018. @media only screen and (max-width: 559px) {
  4019. .fse-template-part {
  4020. max-width: calc( 100% - 32px);
  4021. }
  4022. .fse-template-part .main-navigation > div {
  4023. padding: 0 32px;
  4024. }
  4025. }
  4026. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  4027. padding: 0;
  4028. }
  4029. .fse-template-part .wp-block-cover .site-title a,
  4030. .fse-template-part .wp-block-cover-image .site-title a {
  4031. text-decoration: none;
  4032. }
  4033. .fse-template-part .wp-block-cover .has-background,
  4034. .fse-template-part .wp-block-cover-image .has-background {
  4035. text-shadow: none;
  4036. }