style-rtl.css 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Stow
  4. Theme URI: https://wordpress.com/theme/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.29
  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, wpcom-fse
  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: #444;
  145. --wp--preset--color--foreground-low-contrast: #767676;
  146. --wp--preset--color--foreground-high-contrast: #111;
  147. --wp--preset--color--background: #fff;
  148. --wp--preset--color--background-low-contrast: #ddd;
  149. --wp--preset--color--background-high-contrast: #fafafa;
  150. --wp--preset--color--tertiary: #ddd;
  151. --wp--preset--color--border: #ddd;
  152. --wp--preset--color--border-low-contrast: #aaa;
  153. --wp--preset--color--border-high-contrast: #fafafa;
  154. --wp--preset--color--text-selection: #ffdce0;
  155. --wp--preset--color--alert-success: #8bc34a;
  156. --wp--preset--color--alert-info: #03a9f4;
  157. --wp--preset--color--alert-warning: #ffc107;
  158. --wp--preset--color--alert-error: #f25f70;
  159. --wp--preset--color--black: black;
  160. --wp--preset--color--white: white;
  161. }
  162. /**
  163. * Child Theme Name
  164. */
  165. /**
  166. * Redefine Sass map values for child theme output.
  167. * - See: style-child-theme.scss
  168. */
  169. /**
  170. * Global
  171. */
  172. /**
  173. * Elements
  174. */
  175. /**
  176. * Button
  177. */
  178. /**
  179. * Cover
  180. */
  181. /**
  182. * Heading
  183. */
  184. /**
  185. * List
  186. */
  187. /**
  188. * Pullquote
  189. */
  190. /**
  191. * Quote
  192. */
  193. /**
  194. * Separator
  195. */
  196. /**
  197. * Header
  198. */
  199. /**
  200. * Footer
  201. */
  202. /**
  203. * Base
  204. * - Reset the browser
  205. */
  206. /**
  207. * Base
  208. * - Reset the browser
  209. */
  210. /**
  211. * Button Placeholder style
  212. * - Since buttons appear in various blocks,
  213. * let’s use a placeholder to keep them all
  214. * in-sync
  215. */
  216. button[data-load-more-btn],
  217. .button, button,
  218. input[type="submit"],
  219. .wp-block-button__link,
  220. .wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  221. line-height: 1;
  222. color: var(--wp--preset--color--background);
  223. cursor: pointer;
  224. font-weight: 600;
  225. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  226. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  227. font-size: 0.69444rem;
  228. background-color: var(--wp--preset--color--secondary);
  229. border-radius: 9px;
  230. border-width: 0;
  231. text-decoration: none;
  232. padding: 16px 16px;
  233. }
  234. button[data-load-more-btn]:before,
  235. .button:before, button:before,
  236. input[type="submit"]:before,
  237. .wp-block-button__link:before,
  238. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after,
  239. .button:after, button:after,
  240. input[type="submit"]:after,
  241. .wp-block-button__link:after,
  242. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  243. content: '';
  244. display: block;
  245. height: 0;
  246. width: 0;
  247. }
  248. button[data-load-more-btn]:before,
  249. .button:before, button:before,
  250. input[type="submit"]:before,
  251. .wp-block-button__link:before,
  252. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  253. margin-bottom: -0.12em;
  254. }
  255. button[data-load-more-btn]:after,
  256. .button:after, button:after,
  257. input[type="submit"]:after,
  258. .wp-block-button__link:after,
  259. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  260. margin-top: -0.11em;
  261. }
  262. .button:not(.has-background):hover, button:not(.has-background):hover,
  263. input:not(.has-background):hover[type="submit"],
  264. .wp-block-button__link:not(.has-background):hover,
  265. .wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover,
  266. .button:focus, button:focus,
  267. input:focus[type="submit"],
  268. .wp-block-button__link:focus,
  269. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus,
  270. .has-focus.button, button.has-focus,
  271. input.has-focus[type="submit"],
  272. .has-focus.wp-block-button__link,
  273. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  274. color: var(--wp--preset--color--background);
  275. background-color: var(--wp--preset--color--secondary-hover);
  276. }
  277. /**
  278. * Onsale Placeholder style
  279. * - Since buttons appear in various blocks,
  280. * let’s use a placeholder to keep them all
  281. * in-sync
  282. */
  283. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  284. /* Document
  285. ========================================================================== */
  286. /**
  287. * 1. Correct the line height in all browsers.
  288. * 2. Prevent adjustments of font size after orientation changes in iOS.
  289. */
  290. html {
  291. line-height: 1.15;
  292. /* 1 */
  293. -webkit-text-size-adjust: 100%;
  294. /* 2 */
  295. }
  296. /* Sections
  297. ========================================================================== */
  298. /**
  299. * Remove the margin in all browsers.
  300. */
  301. body {
  302. margin: 0;
  303. }
  304. /**
  305. * Render the `main` element consistently in IE.
  306. */
  307. main {
  308. display: block;
  309. }
  310. /**
  311. * Correct the font size and margin on `h1` elements within `section` and
  312. * `article` contexts in Chrome, Firefox, and Safari.
  313. */
  314. h1 {
  315. font-size: 2em;
  316. margin: 0.67em 0;
  317. }
  318. /* Grouping content
  319. ========================================================================== */
  320. /**
  321. * 1. Add the correct box sizing in Firefox.
  322. * 2. Show the overflow in Edge and IE.
  323. */
  324. hr {
  325. box-sizing: content-box;
  326. /* 1 */
  327. height: 0;
  328. /* 1 */
  329. overflow: visible;
  330. /* 2 */
  331. }
  332. /**
  333. * 1. Correct the inheritance and scaling of font size in all browsers.
  334. * 2. Correct the odd `em` font sizing in all browsers.
  335. */
  336. pre {
  337. font-family: monospace, monospace;
  338. /* 1 */
  339. font-size: 1em;
  340. /* 2 */
  341. }
  342. /* Text-level semantics
  343. ========================================================================== */
  344. /**
  345. * Remove the gray background on active links in IE 10.
  346. */
  347. a {
  348. background-color: transparent;
  349. }
  350. /**
  351. * 1. Remove the bottom border in Chrome 57-
  352. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  353. */
  354. abbr[title] {
  355. border-bottom: none;
  356. /* 1 */
  357. text-decoration: underline;
  358. /* 2 */
  359. text-decoration: underline dotted;
  360. /* 2 */
  361. }
  362. /**
  363. * Add the correct font weight in Chrome, Edge, and Safari.
  364. */
  365. b,
  366. strong {
  367. font-weight: bolder;
  368. }
  369. /**
  370. * 1. Correct the inheritance and scaling of font size in all browsers.
  371. * 2. Correct the odd `em` font sizing in all browsers.
  372. */
  373. code,
  374. kbd,
  375. samp {
  376. font-family: monospace, monospace;
  377. /* 1 */
  378. font-size: 1em;
  379. /* 2 */
  380. }
  381. /**
  382. * Add the correct font size in all browsers.
  383. */
  384. small {
  385. font-size: 80%;
  386. }
  387. /**
  388. * Prevent `sub` and `sup` elements from affecting the line height in
  389. * all browsers.
  390. */
  391. sub,
  392. sup {
  393. font-size: 75%;
  394. line-height: 0;
  395. position: relative;
  396. vertical-align: baseline;
  397. }
  398. sub {
  399. bottom: -0.25em;
  400. }
  401. sup {
  402. top: -0.5em;
  403. }
  404. /* 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. /* Center-align getty image embeds */
  1072. .getty.embed.image {
  1073. display: block !important;
  1074. }
  1075. /**
  1076. * Blocks
  1077. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  1078. * spacing with CSS-variables overrides
  1079. * - In the future the Block styles may get compiled to individual .css
  1080. * files and conditionally loaded
  1081. */
  1082. /**
  1083. * Blocks
  1084. * - These styles replace key Gutenberg Block styles with font, color, and
  1085. * spacing with CSS-variables overrides
  1086. * - In the future the Block styles may get compiled to individual .css
  1087. * files and conditionally loaded
  1088. */
  1089. .wp-block-audio {
  1090. min-width: inherit;
  1091. }
  1092. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  1093. min-width: 300px;
  1094. }
  1095. .wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
  1096. margin-bottom: 16px;
  1097. }
  1098. .wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
  1099. margin-left: 32px;
  1100. }
  1101. .wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
  1102. margin-right: 32px;
  1103. }
  1104. .wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
  1105. padding: 32px;
  1106. }
  1107. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1108. margin-top: 0;
  1109. margin-bottom: 64px;
  1110. }
  1111. @media only screen and (min-width: 560px) {
  1112. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1113. margin-bottom: 96px;
  1114. }
  1115. }
  1116. .wp-block-newspack-blocks-homepage-articles .article-section-title {
  1117. font-size: 1rem;
  1118. margin-bottom: 16px;
  1119. }
  1120. .wp-block-newspack-blocks-homepage-articles .article-section-title + article {
  1121. margin-top: 0;
  1122. }
  1123. .wp-block-newspack-blocks-homepage-articles article {
  1124. display: block;
  1125. /* Vertical margins logic between posts */
  1126. margin-top: 64px;
  1127. margin-bottom: 64px;
  1128. }
  1129. @media only screen and (min-width: 560px) {
  1130. .wp-block-newspack-blocks-homepage-articles article {
  1131. margin-top: 96px;
  1132. margin-bottom: 96px;
  1133. }
  1134. }
  1135. .wp-block-newspack-blocks-homepage-articles article:first-child {
  1136. margin-top: 0;
  1137. }
  1138. .wp-block-newspack-blocks-homepage-articles article:last-child {
  1139. margin-bottom: 96px;
  1140. }
  1141. .wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
  1142. width: auto;
  1143. }
  1144. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
  1145. /* Vertical margins logic between post details */
  1146. margin-top: 16px;
  1147. margin-bottom: 16px;
  1148. }
  1149. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
  1150. margin-top: 0;
  1151. }
  1152. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
  1153. margin-bottom: 0;
  1154. }
  1155. .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1156. color: var(--wp--preset--color--primary);
  1157. }
  1158. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1159. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1160. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1161. color: currentColor;
  1162. }
  1163. .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1164. color: var(--wp--preset--color--primary-hover);
  1165. text-decoration: underline;
  1166. }
  1167. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1168. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1169. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1170. color: currentColor;
  1171. }
  1172. @media only screen and (min-width: 560px) {
  1173. .wp-block-newspack-blocks-homepage-articles article .more-link {
  1174. margin-top: 16px;
  1175. }
  1176. }
  1177. .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1178. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1179. color: var(--wp--preset--color--foreground-low-contrast);
  1180. font-size: 0.83333rem;
  1181. }
  1182. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1183. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1184. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
  1185. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1186. [class*="background-color"]:not(.has-background-background-color)
  1187. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1188. [style*="background-color"]
  1189. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1190. color: currentColor;
  1191. }
  1192. .wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
  1193. .wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
  1194. vertical-align: top;
  1195. }
  1196. .wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
  1197. .wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
  1198. margin-left: 16px;
  1199. }
  1200. .wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
  1201. .wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
  1202. display: none;
  1203. }
  1204. .wp-block-newspack-blocks-homepage-articles article .entry-meta a,
  1205. .wp-block-newspack-blocks-homepage-articles article .cat-links a {
  1206. color: currentColor;
  1207. text-decoration: underline;
  1208. }
  1209. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1210. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1211. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1212. color: var(--wp--preset--color--primary-hover);
  1213. text-decoration: none;
  1214. }
  1215. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1216. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1217. [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,
  1218. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1219. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
  1220. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1221. [class*="background-color"]:not(.has-background-background-color)
  1222. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1223. [style*="background-color"]
  1224. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
  1225. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1226. [class*="background-color"]:not(.has-background-background-color)
  1227. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1228. [style*="background-color"]
  1229. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1230. color: currentColor;
  1231. }
  1232. button[data-load-more-btn],
  1233. .button {
  1234. display: inline-block;
  1235. }
  1236. .has-background:not(.has-background-background-color) button[data-load-more-btn],
  1237. [class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
  1238. [style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color)
  1239. .button,
  1240. [class*="background-color"]:not(.has-background-background-color)
  1241. .button,
  1242. [style*="background-color"]
  1243. .button {
  1244. background-color: transparent;
  1245. border: 2px solid currentColor;
  1246. color: currentColor;
  1247. }
  1248. /**
  1249. * Button
  1250. */
  1251. /**
  1252. * Block Options
  1253. */
  1254. .wp-block-button.is-style-outline.wp-block-button__link,
  1255. .wp-block-button.is-style-outline .wp-block-button__link {
  1256. border: 2px solid currentcolor;
  1257. padding: 14px 16px;
  1258. }
  1259. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
  1260. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
  1261. background: transparent;
  1262. }
  1263. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
  1264. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1265. color: var(--wp--preset--color--secondary);
  1266. }
  1267. .wp-block-button.is-style-outline.wp-block-button__link:active,
  1268. .wp-block-button.is-style-outline .wp-block-button__link:active {
  1269. color: var(--wp--preset--color--secondary);
  1270. }
  1271. .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,
  1272. .wp-block-button.is-style-outline .wp-block-button__link:hover,
  1273. .wp-block-button.is-style-outline .wp-block-button__link:focus,
  1274. .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  1275. color: var(--wp--preset--color--secondary-hover);
  1276. }
  1277. .has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
  1278. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1279. color: var(--wp--preset--color--background);
  1280. }
  1281. .wp-block-button.is-style-squared,
  1282. .wp-block-button.is-style-squared .wp-block-button__link {
  1283. border-radius: 0;
  1284. }
  1285. .wp-block-code {
  1286. color: var(--wp--preset--color--foreground);
  1287. font-size: 0.83333rem;
  1288. padding: 16px;
  1289. border-color: var(--wp--preset--color--border);
  1290. }
  1291. .wp-block-code pre {
  1292. color: var(--wp--preset--color--foreground);
  1293. }
  1294. .wp-block-columns {
  1295. /**
  1296. * Block Options
  1297. */
  1298. }
  1299. .wp-block-columns .wp-block-column > * {
  1300. margin-top: 21.312px;
  1301. margin-bottom: 21.312px;
  1302. }
  1303. @media only screen and (min-width: 560px) {
  1304. .wp-block-columns .wp-block-column > * {
  1305. margin-top: 32px;
  1306. margin-bottom: 32px;
  1307. }
  1308. }
  1309. .wp-block-columns .wp-block-column > *:first-child {
  1310. margin-top: 0;
  1311. }
  1312. .wp-block-columns .wp-block-column > *:last-child {
  1313. margin-bottom: 0;
  1314. }
  1315. .wp-block-columns .wp-block-column:last-child {
  1316. margin-bottom: 0;
  1317. }
  1318. .wp-block-columns .wp-block-column:not(:last-child) {
  1319. margin-bottom: 21.312px;
  1320. }
  1321. @media only screen and (min-width: 560px) {
  1322. .wp-block-columns .wp-block-column:not(:last-child) {
  1323. margin-bottom: 32px;
  1324. }
  1325. }
  1326. @media only screen and (min-width: 782px) {
  1327. .wp-block-columns .wp-block-column:not(:last-child) {
  1328. /* Resetting margins to match _block-container.scss */
  1329. margin-bottom: 0;
  1330. }
  1331. }
  1332. .wp-block-columns.alignfull {
  1333. padding-right: 16px;
  1334. padding-left: 16px;
  1335. }
  1336. .wp-block-columns.alignfull:not(:first-child) {
  1337. margin-top: 32px;
  1338. }
  1339. .wp-block-columns.alignfull:not(:last-child) {
  1340. margin-bottom: 32px;
  1341. }
  1342. .wp-block-cover,
  1343. .wp-block-cover-image {
  1344. background-color: var(--wp--preset--color--foreground);
  1345. min-height: 480px;
  1346. margin-top: inherit;
  1347. margin-bottom: inherit;
  1348. /* Treating H2 separately to account for legacy /core styles */
  1349. /**
  1350. * Block Options
  1351. */
  1352. }
  1353. .wp-block-cover.has-background-dim,
  1354. .wp-block-cover-image.has-background-dim {
  1355. background-color: var(--wp--preset--color--foreground);
  1356. }
  1357. .wp-block-cover .wp-block-cover__inner-container,
  1358. .wp-block-cover .wp-block-cover-image-text,
  1359. .wp-block-cover .wp-block-cover-text,
  1360. .wp-block-cover-image .wp-block-cover__inner-container,
  1361. .wp-block-cover-image .wp-block-cover-image-text,
  1362. .wp-block-cover-image .wp-block-cover-text {
  1363. margin-top: 32px;
  1364. margin-bottom: 32px;
  1365. }
  1366. .wp-block-cover h2,
  1367. .wp-block-cover-image h2 {
  1368. font-size: 1.728rem;
  1369. letter-spacing: normal;
  1370. line-height: 1.125;
  1371. max-width: inherit;
  1372. text-align: inherit;
  1373. padding: 0;
  1374. }
  1375. .wp-block-cover h2.has-text-align-left,
  1376. .wp-block-cover-image h2.has-text-align-left {
  1377. text-align: right;
  1378. }
  1379. .wp-block-cover h2.has-text-align-center,
  1380. .wp-block-cover-image h2.has-text-align-center {
  1381. text-align: center;
  1382. }
  1383. .wp-block-cover h2.has-text-align-right,
  1384. .wp-block-cover-image h2.has-text-align-right {
  1385. text-align: left;
  1386. }
  1387. .wp-block-cover .wp-block-cover__inner-container,
  1388. .wp-block-cover-image .wp-block-cover__inner-container {
  1389. width: calc(100% - 64px);
  1390. }
  1391. .wp-block-cover .wp-block-cover__inner-container > *,
  1392. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1393. margin-top: 21.312px;
  1394. margin-bottom: 21.312px;
  1395. }
  1396. @media only screen and (min-width: 560px) {
  1397. .wp-block-cover .wp-block-cover__inner-container > *,
  1398. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1399. margin-top: 32px;
  1400. margin-bottom: 32px;
  1401. }
  1402. }
  1403. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1404. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1405. margin-top: 0;
  1406. }
  1407. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1408. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1409. margin-bottom: 0;
  1410. }
  1411. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1412. .wp-block-cover-image.alignleft,
  1413. .wp-block-cover-image.alignright {
  1414. margin-top: 0;
  1415. }
  1416. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1417. .wp-block-cover-image.alignleft > *,
  1418. .wp-block-cover-image.alignright > * {
  1419. margin-top: calc(2 * 32px);
  1420. margin-bottom: calc(2 * 32px);
  1421. padding-right: 16px;
  1422. padding-left: 16px;
  1423. width: 100%;
  1424. }
  1425. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1426. .wp-block-cover-image.has-left-content,
  1427. .wp-block-cover-image.has-right-content {
  1428. justify-content: center;
  1429. }
  1430. .wp-block-file .wp-block-file__button {
  1431. background-color: var(--wp--preset--color--secondary);
  1432. color: var(--wp--preset--color--background);
  1433. font-size: 0.83333rem;
  1434. margin-right: 16px;
  1435. margin-left: 16px;
  1436. }
  1437. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1438. display: inherit;
  1439. }
  1440. .wp-block-file a.wp-block-file__button:active,
  1441. .wp-block-file a.wp-block-file__button:focus,
  1442. .wp-block-file a.wp-block-file__button:hover,
  1443. .wp-block-file a.wp-block-file__button:visited {
  1444. color: var(--wp--preset--color--background);
  1445. opacity: .85;
  1446. }
  1447. .wp-block-gallery {
  1448. margin: 0;
  1449. }
  1450. .wp-block-gallery .blocks-gallery-image figcaption,
  1451. .wp-block-gallery .blocks-gallery-item figcaption {
  1452. margin: 0;
  1453. color: var(--wp--preset--color--white);
  1454. font-size: 0.69444rem;
  1455. }
  1456. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1457. max-width: 50%;
  1458. }
  1459. .wp-block-group .wp-block-group__inner-container {
  1460. margin-right: auto;
  1461. margin-left: auto;
  1462. }
  1463. .wp-block-group .wp-block-group__inner-container > * {
  1464. margin-top: 21.312px;
  1465. margin-bottom: 21.312px;
  1466. }
  1467. @media only screen and (min-width: 560px) {
  1468. .wp-block-group .wp-block-group__inner-container > * {
  1469. margin-top: 32px;
  1470. margin-bottom: 32px;
  1471. }
  1472. }
  1473. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1474. margin-top: 0;
  1475. }
  1476. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1477. margin-bottom: 0;
  1478. }
  1479. .wp-block-group.has-background {
  1480. padding: 21.312px;
  1481. }
  1482. @media only screen and (min-width: 560px) {
  1483. .wp-block-group.has-background {
  1484. padding: 32px;
  1485. }
  1486. }
  1487. .wp-block-group.alignfull {
  1488. padding-right: 16px;
  1489. padding-left: 16px;
  1490. }
  1491. h1, .h1,
  1492. h2, .h2,
  1493. h3, .h3,
  1494. h4, .h4,
  1495. h5, .h5,
  1496. h6, .h6 {
  1497. font-family: "Oswald", sans-serif;
  1498. font-family: var(--font-headings, "Oswald", sans-serif);
  1499. font-weight: 300;
  1500. clear: both;
  1501. }
  1502. h1, .h1 {
  1503. font-size: 2.0736rem;
  1504. letter-spacing: normal;
  1505. line-height: 1.125;
  1506. }
  1507. h2, .h2 {
  1508. font-size: 1.728rem;
  1509. letter-spacing: normal;
  1510. line-height: 1.125;
  1511. }
  1512. h3, .h3 {
  1513. font-size: 1.44rem;
  1514. letter-spacing: normal;
  1515. line-height: 1.125;
  1516. }
  1517. h4, .h4 {
  1518. font-size: 1.2rem;
  1519. letter-spacing: normal;
  1520. line-height: 1.125;
  1521. }
  1522. h5, .h5 {
  1523. font-size: 1rem;
  1524. letter-spacing: normal;
  1525. line-height: 1.125;
  1526. }
  1527. h6, .h6 {
  1528. font-size: 0.83333rem;
  1529. letter-spacing: normal;
  1530. line-height: 1.125;
  1531. }
  1532. .wp-block-image {
  1533. text-align: center;
  1534. }
  1535. .wp-block-image figcaption {
  1536. color: var(--wp--preset--color--foreground-low-contrast);
  1537. font-size: 0.69444rem;
  1538. margin-top: calc(0.5 * 16px);
  1539. margin-bottom: 16px;
  1540. text-align: center;
  1541. }
  1542. .entry-content > *[class="wp-block-image"],
  1543. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1544. margin-top: 0;
  1545. margin-bottom: 0;
  1546. }
  1547. .entry-content > *[class="wp-block-image"] + *,
  1548. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1549. margin-top: 0;
  1550. }
  1551. img {
  1552. height: auto;
  1553. max-width: 100%;
  1554. vertical-align: middle;
  1555. }
  1556. .wp-block-latest-comments {
  1557. padding-right: 0;
  1558. }
  1559. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1560. font-size: 0.83333rem;
  1561. line-height: 1.78;
  1562. /* Vertical margins logic */
  1563. margin-top: 32px;
  1564. margin-bottom: 32px;
  1565. }
  1566. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1567. margin-top: 0;
  1568. }
  1569. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1570. margin-bottom: 0;
  1571. }
  1572. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1573. font-family: "Oswald", sans-serif;
  1574. font-family: var(--font-headings, "Oswald", sans-serif);
  1575. }
  1576. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1577. color: var(--wp--preset--color--foreground-low-contrast);
  1578. font-size: 0.83333rem;
  1579. }
  1580. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1581. font-size: 0.83333rem;
  1582. line-height: 1.78;
  1583. margin: 0;
  1584. }
  1585. .wp-block-latest-posts {
  1586. padding-right: 0;
  1587. }
  1588. .wp-block-latest-posts > li {
  1589. word-wrap: break-word;
  1590. /* Vertical margins logic */
  1591. margin-top: 32px;
  1592. margin-bottom: 32px;
  1593. }
  1594. .wp-block-latest-posts > li:first-child {
  1595. margin-top: 0;
  1596. }
  1597. .wp-block-latest-posts > li:last-child {
  1598. margin-bottom: 0;
  1599. }
  1600. .wp-block-latest-posts > li > a {
  1601. font-family: "Oswald", sans-serif;
  1602. font-family: var(--font-headings, "Oswald", sans-serif);
  1603. font-size: 1.2rem;
  1604. font-weight: 300;
  1605. line-height: 1.125;
  1606. }
  1607. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1608. color: var(--wp--preset--color--foreground-low-contrast);
  1609. font-size: 0.69444rem;
  1610. line-height: 1.78;
  1611. }
  1612. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1613. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1614. color: currentColor;
  1615. }
  1616. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1617. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1618. font-size: 0.83333rem;
  1619. line-height: 1.78;
  1620. margin: 0;
  1621. }
  1622. .wp-block-latest-posts.alignfull {
  1623. padding-right: 16px;
  1624. padding-left: 16px;
  1625. }
  1626. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1627. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1628. padding-right: 0;
  1629. padding-left: 0;
  1630. }
  1631. .gallery-item {
  1632. display: inline-block;
  1633. text-align: center;
  1634. vertical-align: top;
  1635. width: 100%;
  1636. }
  1637. .gallery-item a {
  1638. display: block;
  1639. }
  1640. .gallery-columns-2 .gallery-item {
  1641. max-width: 50%;
  1642. }
  1643. .gallery-columns-3 .gallery-item {
  1644. max-width: 33.33%;
  1645. }
  1646. .gallery-columns-4 .gallery-item {
  1647. max-width: 25%;
  1648. }
  1649. .gallery-columns-5 .gallery-item {
  1650. max-width: 20%;
  1651. }
  1652. .gallery-columns-6 .gallery-item {
  1653. max-width: 16.66%;
  1654. }
  1655. .gallery-columns-7 .gallery-item {
  1656. max-width: 14.28%;
  1657. }
  1658. .gallery-columns-8 .gallery-item {
  1659. max-width: 12.5%;
  1660. }
  1661. .gallery-columns-9 .gallery-item {
  1662. max-width: 11.11%;
  1663. }
  1664. .gallery-caption {
  1665. display: block;
  1666. }
  1667. ul,
  1668. ol {
  1669. font-family: "Source Sans Pro", Arial, sans-serif;
  1670. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1671. margin: 0;
  1672. padding-right: 32px;
  1673. }
  1674. ul.aligncenter,
  1675. ol.aligncenter {
  1676. list-style-position: inside;
  1677. padding: 0;
  1678. }
  1679. ul.alignright,
  1680. ol.alignright {
  1681. list-style-position: inside;
  1682. text-align: left;
  1683. padding: 0;
  1684. }
  1685. ul {
  1686. list-style-type: disc;
  1687. }
  1688. ol {
  1689. list-style-type: decimal;
  1690. }
  1691. dt {
  1692. font-family: "Oswald", sans-serif;
  1693. font-family: var(--font-headings, "Oswald", sans-serif);
  1694. font-weight: bold;
  1695. }
  1696. dd {
  1697. margin: 0;
  1698. padding-right: 32px;
  1699. }
  1700. .wp-block-media-text {
  1701. /**
  1702. * Block Options
  1703. */
  1704. }
  1705. .wp-block-media-text .wp-block-media-text__content {
  1706. padding: 16px;
  1707. }
  1708. @media only screen and (min-width: 640px) {
  1709. .wp-block-media-text .wp-block-media-text__content {
  1710. padding: 32px;
  1711. }
  1712. }
  1713. .wp-block-media-text .wp-block-media-text__content > * {
  1714. margin-top: 21.312px;
  1715. margin-bottom: 21.312px;
  1716. }
  1717. @media only screen and (min-width: 560px) {
  1718. .wp-block-media-text .wp-block-media-text__content > * {
  1719. margin-top: 32px;
  1720. margin-bottom: 32px;
  1721. }
  1722. }
  1723. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1724. margin-top: 0;
  1725. }
  1726. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1727. margin-bottom: 0;
  1728. }
  1729. @media only screen and (min-width: 560px) {
  1730. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1731. padding-top: 32px;
  1732. padding-bottom: 32px;
  1733. }
  1734. }
  1735. p.has-background {
  1736. padding: 16px 16px;
  1737. }
  1738. .a8c-posts-list__listing {
  1739. list-style: none;
  1740. margin: 0;
  1741. padding: 0;
  1742. }
  1743. .a8c-posts-list__listing:not(:last-child) {
  1744. margin-bottom: calc(3 * 32px);
  1745. }
  1746. .a8c-posts-list-item__featured span {
  1747. color: var(--wp--preset--color--background);
  1748. background-color: var(--wp--preset--color--primary);
  1749. font-family: "Oswald", sans-serif;
  1750. font-family: var(--font-headings, "Oswald", sans-serif);
  1751. font-weight: bold;
  1752. font-size: 0.83333rem;
  1753. line-height: 1;
  1754. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1755. }
  1756. .a8c-posts-list__item {
  1757. display: block;
  1758. /* Vertical margins logic between posts */
  1759. margin-top: calc(3 * 32px);
  1760. margin-bottom: calc(3 * 32px);
  1761. }
  1762. .a8c-posts-list__item:first-child {
  1763. margin-top: 0;
  1764. }
  1765. .a8c-posts-list__item:last-child {
  1766. margin-bottom: 0;
  1767. }
  1768. .a8c-posts-list__item .entry > * {
  1769. /* Vertical margins logic between post details */
  1770. margin-top: 16px;
  1771. margin-bottom: 16px;
  1772. }
  1773. .a8c-posts-list__item .entry > *:first-child {
  1774. margin-top: 0;
  1775. }
  1776. .a8c-posts-list__item .entry > *:last-child {
  1777. margin-bottom: 0;
  1778. }
  1779. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1780. color: var(--wp--preset--color--foreground-low-contrast);
  1781. font-size: 0.83333rem;
  1782. }
  1783. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1784. color: currentColor;
  1785. }
  1786. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1787. color: var(--wp--preset--color--primary-hover);
  1788. }
  1789. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1790. margin-right: 16px;
  1791. }
  1792. .a8c-posts-list__view-all {
  1793. display: inline-block;
  1794. }
  1795. .wp-block-pullquote {
  1796. border-top-color: var(--wp--preset--color--border);
  1797. border-top-width: 4px;
  1798. border-bottom-color: var(--wp--preset--color--border);
  1799. border-bottom-width: 4px;
  1800. color: var(--wp--preset--color--foreground);
  1801. }
  1802. .wp-block-pullquote blockquote p {
  1803. font-family: "Source Sans Pro", Arial, sans-serif;
  1804. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1805. font-size: 1.2rem;
  1806. letter-spacing: normal;
  1807. line-height: 1.125;
  1808. }
  1809. .wp-block-pullquote.is-style-solid-color blockquote p {
  1810. font-size: 1.2rem;
  1811. }
  1812. .wp-block-pullquote a {
  1813. color: currentColor;
  1814. }
  1815. .wp-block-pullquote .wp-block-pullquote__citation,
  1816. .wp-block-pullquote cite,
  1817. .wp-block-pullquote footer {
  1818. color: var(--wp--preset--color--foreground-low-contrast);
  1819. font-size: 0.83333rem;
  1820. letter-spacing: normal;
  1821. }
  1822. .wp-block-pullquote blockquote {
  1823. padding-right: 0;
  1824. }
  1825. .wp-block-pullquote.is-style-solid-color {
  1826. color: var(--wp--preset--color--background);
  1827. }
  1828. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1829. .wp-block-pullquote.is-style-solid-color cite,
  1830. .wp-block-pullquote.is-style-solid-color footer {
  1831. color: currentColor;
  1832. }
  1833. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  1834. background-color: var(--wp--preset--color--primary);
  1835. }
  1836. .wp-block-quote {
  1837. border-right-color: var(--wp--preset--color--primary);
  1838. margin: 32px 0;
  1839. padding-right: 16px;
  1840. /**
  1841. * Block Options
  1842. */
  1843. }
  1844. .wp-block-quote > * {
  1845. margin-top: 16px;
  1846. margin-bottom: 16px;
  1847. }
  1848. .wp-block-quote > *:first-child {
  1849. margin-top: 0;
  1850. }
  1851. .wp-block-quote > *:last-child {
  1852. margin-bottom: 0;
  1853. }
  1854. .wp-block-quote p {
  1855. font-family: "Source Sans Pro", Arial, sans-serif;
  1856. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1857. font-size: 1.2rem;
  1858. letter-spacing: normal;
  1859. line-height: 1.125;
  1860. }
  1861. .wp-block-quote .wp-block-quote__citation,
  1862. .wp-block-quote cite,
  1863. .wp-block-quote footer {
  1864. color: var(--wp--preset--color--foreground-low-contrast);
  1865. font-size: 0.83333rem;
  1866. letter-spacing: normal;
  1867. }
  1868. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1869. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1870. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1871. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1872. .wp-block-quote cite,
  1873. [class*="background-color"]:not(.has-background-background-color)
  1874. .wp-block-quote cite,
  1875. [style*="background-color"]
  1876. .wp-block-quote cite,
  1877. .wp-block-cover[style*="background-image"]
  1878. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1879. .wp-block-quote footer,
  1880. [class*="background-color"]:not(.has-background-background-color)
  1881. .wp-block-quote footer,
  1882. [style*="background-color"]
  1883. .wp-block-quote footer,
  1884. .wp-block-cover[style*="background-image"]
  1885. .wp-block-quote footer {
  1886. color: currentColor;
  1887. }
  1888. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1889. border-left-color: var(--wp--preset--color--primary);
  1890. }
  1891. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1892. /* Resetting margins to match _block-container.scss */
  1893. margin-top: 32px;
  1894. margin-bottom: 32px;
  1895. padding: 0;
  1896. }
  1897. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1898. font-size: 1.44rem;
  1899. letter-spacing: normal;
  1900. line-height: 1.125;
  1901. }
  1902. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1903. .wp-block-quote.is-style-large cite,
  1904. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1905. .wp-block-quote.is-large cite,
  1906. .wp-block-quote.is-large footer {
  1907. color: var(--wp--preset--color--foreground-low-contrast);
  1908. font-size: 0.83333rem;
  1909. letter-spacing: normal;
  1910. }
  1911. .has-background:not(.has-background-background-color) .wp-block-quote,
  1912. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1913. [style*="background-color"] .wp-block-quote,
  1914. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1915. border-color: currentColor;
  1916. }
  1917. .wp-block-search {
  1918. flex-wrap: wrap;
  1919. }
  1920. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  1921. background: var(--wp--preset--color--white);
  1922. color: var(--wp--preset--color--black);
  1923. border: 1px solid var(--wp--preset--color--border);
  1924. border-radius: 3px;
  1925. }
  1926. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  1927. padding: calc( 0.33 * 16px);
  1928. }
  1929. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  1930. padding: 16px 16px;
  1931. }
  1932. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  1933. padding: 0;
  1934. }
  1935. .wp-block-search .wp-block-search__label {
  1936. font-weight: normal;
  1937. }
  1938. .wp-block-search .wp-block-search__input {
  1939. color: var(--wp--preset--color--black);
  1940. border: 1px solid var(--wp--preset--color--border);
  1941. border-radius: 3px;
  1942. padding: calc( 0.33 * 16px);
  1943. font-size: 1rem;
  1944. line-height: 1rem;
  1945. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1946. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1947. max-width: inherit;
  1948. margin-left: calc( .66 * 16px);
  1949. background: var(--wp--preset--color--white);
  1950. }
  1951. .wp-block-search .wp-block-search__input:focus {
  1952. color: var(--wp--preset--color--black);
  1953. border-color: var(--wp--preset--color--border);
  1954. }
  1955. .wp-block-search .wp-block-search__button {
  1956. border: none;
  1957. box-shadow: none;
  1958. }
  1959. .wp-block-search .wp-block-search__button.has-icon {
  1960. transform: scaleX(-1);
  1961. padding: 0;
  1962. min-width: calc(2* 16px + 1rem + 4px);
  1963. min-height: calc(2* 16px + 1rem + 4px);
  1964. }
  1965. .wp-block-search .wp-block-search__button.has-icon svg {
  1966. fill: currentColor;
  1967. width: 29px;
  1968. height: 29px;
  1969. }
  1970. hr {
  1971. border-bottom: 2px solid var(--wp--preset--color--border);
  1972. clear: both;
  1973. margin-right: auto;
  1974. margin-left: auto;
  1975. }
  1976. hr.wp-block-separator {
  1977. border-bottom: 2px solid var(--wp--preset--color--border);
  1978. /**
  1979. * Block Options
  1980. */
  1981. }
  1982. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  1983. max-width: 96px;
  1984. }
  1985. hr.wp-block-separator.is-style-wide {
  1986. border-bottom-width: 2px;
  1987. }
  1988. hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
  1989. background-color: transparent !important;
  1990. }
  1991. hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
  1992. color: currentColor !important;
  1993. }
  1994. hr.wp-block-separator.is-style-dots:before {
  1995. color: var(--wp--preset--color--border);
  1996. font-size: 1.728rem;
  1997. letter-spacing: 0.83333rem;
  1998. padding-right: 0.83333rem;
  1999. }
  2000. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  2001. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  2002. [style*="background-color"] hr.wp-block-separator,
  2003. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  2004. border-color: currentColor;
  2005. }
  2006. .wp-block-jetpack-slideshow ul {
  2007. margin-right: 0;
  2008. margin-left: 0;
  2009. }
  2010. .wp-block-spacer {
  2011. display: block;
  2012. margin-bottom: 0 !important;
  2013. margin-top: 0 !important;
  2014. }
  2015. @media only screen and (max-width: 559px) {
  2016. .wp-block-spacer[style] {
  2017. height: 16px !important;
  2018. }
  2019. }
  2020. .jetpack_subscription_widget input[type="text"] {
  2021. padding: calc( 0.33 * 16px) !important;
  2022. width: 100% !important;
  2023. }
  2024. table,
  2025. .wp-block-table {
  2026. width: 100%;
  2027. min-width: 240px;
  2028. border-collapse: collapse;
  2029. }
  2030. table th,
  2031. .wp-block-table th {
  2032. font-family: "Oswald", sans-serif;
  2033. font-family: var(--font-headings, "Oswald", sans-serif);
  2034. }
  2035. table td,
  2036. table th,
  2037. .wp-block-table td,
  2038. .wp-block-table th {
  2039. padding: calc( 0.5 * 16px);
  2040. border: 1px solid;
  2041. }
  2042. table.is-style-stripes tbody tr:nth-child(odd),
  2043. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  2044. background-color: var(--wp--preset--color--border-low-contrast);
  2045. color: var(--wp--preset--color--foreground);
  2046. }
  2047. .wp-block-video figcaption {
  2048. color: var(--wp--preset--color--foreground-low-contrast);
  2049. font-size: 0.69444rem;
  2050. margin-top: calc(0.5 * 16px);
  2051. margin-bottom: 16px;
  2052. text-align: center;
  2053. }
  2054. * > figure > video {
  2055. max-width: unset;
  2056. width: 100%;
  2057. vertical-align: middle;
  2058. }
  2059. /* Block Alignments */
  2060. /**
  2061. * .alignleft
  2062. */
  2063. .alignleft {
  2064. text-align: left;
  2065. float: left;
  2066. margin-top: 0;
  2067. margin-right: 16px;
  2068. margin-bottom: 32px;
  2069. }
  2070. .entry-content > .alignleft {
  2071. float: left;
  2072. }
  2073. /**
  2074. * .aligncenter
  2075. */
  2076. .aligncenter {
  2077. clear: both;
  2078. display: block;
  2079. float: none;
  2080. margin-left: auto;
  2081. margin-right: auto;
  2082. text-align: center;
  2083. }
  2084. /**
  2085. * .alignright
  2086. */
  2087. .alignright {
  2088. float: right;
  2089. margin-top: 0;
  2090. margin-bottom: 32px;
  2091. margin-left: 16px;
  2092. }
  2093. .entry-content > .alignright {
  2094. float: right;
  2095. }
  2096. .entry-content * > .alignleft + *,
  2097. .entry-content * > .alignright + * {
  2098. margin-top: 0;
  2099. }
  2100. /**
  2101. * .aligndefault
  2102. */
  2103. /**
  2104. * .alignwide
  2105. */
  2106. .alignwide {
  2107. clear: both;
  2108. }
  2109. /**
  2110. * .alignfull
  2111. */
  2112. .alignfull {
  2113. clear: both;
  2114. }
  2115. .has-left-content {
  2116. justify-content: flex-start;
  2117. }
  2118. .has-right-content {
  2119. justify-content: flex-end;
  2120. }
  2121. .has-parallax {
  2122. background-attachment: fixed;
  2123. }
  2124. .has-primary-color {
  2125. color: var(--wp--preset--color--primary);
  2126. }
  2127. .has-secondary-color {
  2128. color: var(--wp--preset--color--secondary);
  2129. }
  2130. .has-foreground-color {
  2131. color: var(--wp--preset--color--foreground);
  2132. }
  2133. .has-foreground-light-color {
  2134. color: var(--wp--preset--color--foreground-low-contrast);
  2135. }
  2136. .has-foreground-dark-color {
  2137. color: var(--wp--preset--color--foreground-high-contrast);
  2138. }
  2139. .has-background-light-color {
  2140. color: var(--wp--preset--color--background-high-contrast);
  2141. }
  2142. .has-background-dark-color {
  2143. color: var(--wp--preset--color--background-low-contrast);
  2144. }
  2145. .has-background-dim,
  2146. .has-background-color {
  2147. color: var(--wp--preset--color--background);
  2148. }
  2149. .has-tertiary-color {
  2150. color: var(--wp--preset--color--tertiary);
  2151. }
  2152. .has-background p:not(.has-text-color),
  2153. .has-background h1:not(.has-text-color),
  2154. .has-background h2:not(.has-text-color),
  2155. .has-background h3:not(.has-text-color),
  2156. .has-background h4:not(.has-text-color),
  2157. .has-background h5:not(.has-text-color),
  2158. .has-background h6:not(.has-text-color) {
  2159. color: currentcolor;
  2160. }
  2161. .has-primary-background-color,
  2162. .has-primary-background-color.has-background-dim {
  2163. background-color: var(--wp--preset--color--primary);
  2164. }
  2165. .has-primary-background-color:not(.has-text-color),
  2166. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  2167. color: var(--wp--preset--color--background);
  2168. }
  2169. .has-secondary-background-color,
  2170. .has-secondary-background-color.has-background-dim {
  2171. background-color: var(--wp--preset--color--secondary);
  2172. }
  2173. .has-secondary-background-color:not(.has-text-color),
  2174. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  2175. color: var(--wp--preset--color--background);
  2176. }
  2177. .has-background-dim,
  2178. .has-foreground-background-color,
  2179. .has-foreground-background-color.has-background-dim {
  2180. background-color: var(--wp--preset--color--foreground);
  2181. }
  2182. .has-background-dim,
  2183. .has-foreground-background-color:not(.has-text-color),
  2184. .has-foreground-background-color.has-background-dim:not(.has-text-color) {
  2185. color: var(--wp--preset--color--background);
  2186. }
  2187. .has-foreground-light-background-color,
  2188. .has-foreground-light-background-color.has-background-dim {
  2189. background-color: var(--wp--preset--color--foreground-low-contrast);
  2190. }
  2191. .has-foreground-light-background-color:not(.has-text-color),
  2192. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  2193. color: var(--wp--preset--color--background);
  2194. }
  2195. .has-foreground-dark-background-color,
  2196. .has-foreground-dark-background-color.has-background-dim {
  2197. background-color: var(--wp--preset--color--foreground-high-contrast);
  2198. }
  2199. .has-foreground-dark-background-color:not(.has-text-color),
  2200. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  2201. color: var(--wp--preset--color--background);
  2202. }
  2203. .has-background-light-background-color,
  2204. .has-background-light-background-color.has-background-dim {
  2205. background-color: var(--wp--preset--color--background-high-contrast);
  2206. }
  2207. .has-background-light-background-color:not(.has-text-color),
  2208. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  2209. color: var(--wp--preset--color--foreground);
  2210. }
  2211. .has-background-dark-background-color,
  2212. .has-background-dark-background-color.has-background-dim {
  2213. background-color: var(--wp--preset--color--background-low-contrast);
  2214. }
  2215. .has-background-dark-background-color:not(.has-text-color),
  2216. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  2217. color: var(--wp--preset--color--foreground);
  2218. }
  2219. .has-background-background-color,
  2220. .has-background-background-color.has-background-dim {
  2221. background-color: var(--wp--preset--color--background);
  2222. }
  2223. .has-background-background-color:not(.has-text-color),
  2224. .has-background-background-color.has-background-dim:not(.has-text-color) {
  2225. color: var(--wp--preset--color--foreground);
  2226. }
  2227. .has-tertiary-background-color,
  2228. .has-tertiary-background-color.has-background-dim {
  2229. background-color: var(--wp--preset--color--tertiary);
  2230. }
  2231. .has-tertiary-background-color:not(.has-text-color),
  2232. .has-tertiary-background-color.has-background-dim:not(.has-text-color) {
  2233. color: var(--wp--preset--color--foreground);
  2234. }
  2235. .is-small-text,
  2236. .has-small-font-size {
  2237. font-size: 0.83333rem;
  2238. }
  2239. .is-regular-text,
  2240. .has-regular-font-size,
  2241. .has-normal-font-size,
  2242. .has-medium-font-size {
  2243. font-size: 1rem;
  2244. }
  2245. .is-large-text,
  2246. .has-large-font-size {
  2247. font-size: 1.44rem;
  2248. line-height: 1.125;
  2249. }
  2250. .is-larger-text,
  2251. .has-larger-font-size,
  2252. .has-huge-font-size {
  2253. font-size: 1.728rem;
  2254. line-height: 1.125;
  2255. }
  2256. .has-drop-cap:not(:focus)::first-letter {
  2257. font-family: "Oswald", sans-serif;
  2258. font-family: var(--font-headings, "Oswald", sans-serif);
  2259. font-size: calc(2 * 2.0736rem);
  2260. font-weight: 300;
  2261. line-height: 0.66;
  2262. text-transform: uppercase;
  2263. font-style: normal;
  2264. float: right;
  2265. margin: 0.1em 0 0 0.1em;
  2266. }
  2267. .has-drop-cap:not(:focus)::after {
  2268. content: "";
  2269. display: table;
  2270. clear: both;
  2271. padding-top: 14px;
  2272. }
  2273. .desktop-only {
  2274. display: none;
  2275. }
  2276. @media only screen and (min-width: 560px) {
  2277. .desktop-only {
  2278. display: block;
  2279. }
  2280. }
  2281. /**
  2282. * Spacing Overrides
  2283. */
  2284. /*
  2285. * Margins
  2286. */
  2287. .margin-top-none {
  2288. margin-top: 0 !important;
  2289. }
  2290. .margin-top-half {
  2291. margin-top: 16px !important;
  2292. }
  2293. .margin-top-default {
  2294. margin-top: 32px !important;
  2295. }
  2296. .margin-right-none {
  2297. margin-right: 0 !important;
  2298. }
  2299. .margin-right-half {
  2300. margin-right: 16px !important;
  2301. }
  2302. .margin-right-default {
  2303. margin-right: 32px !important;
  2304. }
  2305. .margin-bottom-none {
  2306. margin-bottom: 0 !important;
  2307. }
  2308. .margin-bottom-half {
  2309. margin-bottom: 16px !important;
  2310. }
  2311. .margin-bottom-default {
  2312. margin-bottom: 32px !important;
  2313. }
  2314. .margin-left-none {
  2315. margin-left: 0 !important;
  2316. }
  2317. .margin-left-half {
  2318. margin-left: 16px !important;
  2319. }
  2320. .margin-left-default {
  2321. margin-left: 32px !important;
  2322. }
  2323. /*
  2324. * Padding
  2325. */
  2326. .padding-top-none {
  2327. padding-top: 0 !important;
  2328. }
  2329. .padding-top-half {
  2330. padding-top: 16px !important;
  2331. }
  2332. .padding-top-default {
  2333. padding-top: 32px !important;
  2334. }
  2335. .padding-right-none {
  2336. padding-right: 0 !important;
  2337. }
  2338. .padding-right-half {
  2339. padding-right: 16px !important;
  2340. }
  2341. .padding-right-default {
  2342. padding-right: 32px !important;
  2343. }
  2344. .padding-bottom-none {
  2345. padding-bottom: 0 !important;
  2346. }
  2347. .padding-bottom-half {
  2348. padding-bottom: 16px !important;
  2349. }
  2350. .padding-bottom-default {
  2351. padding-bottom: 32px !important;
  2352. }
  2353. .padding-left-none {
  2354. padding-left: 0 !important;
  2355. }
  2356. .padding-left-half {
  2357. padding-left: 16px !important;
  2358. }
  2359. .padding-left-default {
  2360. padding-left: 32px !important;
  2361. }
  2362. /**
  2363. * Components
  2364. * - Similar to Blocks but exist outside of the "current" editor context
  2365. */
  2366. /*
  2367. * Components
  2368. * - Similar to Blocks but exist outside of the "current" editor context
  2369. */
  2370. .site-branding {
  2371. color: var(--wp--preset--color--foreground-low-contrast);
  2372. }
  2373. .site-title {
  2374. color: var(--wp--preset--color--primary);
  2375. font-family: "Oswald", sans-serif;
  2376. font-family: var(--font-headings, "Oswald", sans-serif);
  2377. letter-spacing: normal;
  2378. line-height: 1.3333;
  2379. }
  2380. .site-title a {
  2381. color: currentColor;
  2382. font-weight: 300;
  2383. }
  2384. .site-title a:link, .site-title a:visited {
  2385. color: currentColor;
  2386. }
  2387. .site-title a:hover {
  2388. color: var(--wp--preset--color--primary-hover);
  2389. }
  2390. .site-description {
  2391. color: currentColor;
  2392. font-family: "Source Sans Pro", Arial, sans-serif;
  2393. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  2394. }
  2395. body:not(.fse-enabled) .site-title {
  2396. font-size: 1.2rem;
  2397. }
  2398. body:not(.fse-enabled) .site-description {
  2399. font-size: 0.83333rem;
  2400. }
  2401. .main-navigation {
  2402. color: var(--wp--preset--color--foreground);
  2403. }
  2404. .main-navigation > div {
  2405. display: none;
  2406. }
  2407. .main-navigation #toggle-menu {
  2408. display: inline-block;
  2409. margin: 0;
  2410. }
  2411. .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  2412. display: block;
  2413. }
  2414. .main-navigation #toggle:focus + #toggle-menu {
  2415. background-color: var(--wp--preset--color--primary-hover);
  2416. outline: inherit;
  2417. text-decoration: underline;
  2418. }
  2419. .main-navigation .dropdown-icon.close {
  2420. display: none;
  2421. }
  2422. .main-navigation #toggle:checked + #toggle-menu .open {
  2423. display: none;
  2424. }
  2425. .main-navigation #toggle:checked + #toggle-menu .close {
  2426. display: inline;
  2427. }
  2428. @media only screen and (min-width: 560px) {
  2429. .main-navigation > div {
  2430. display: inline-block;
  2431. }
  2432. .main-navigation #toggle-menu {
  2433. display: none;
  2434. }
  2435. .main-navigation > div > ul > li > ul {
  2436. display: none;
  2437. }
  2438. }
  2439. .main-navigation > div > ul {
  2440. display: flex;
  2441. flex-wrap: wrap;
  2442. list-style: none;
  2443. margin: 0;
  2444. max-width: none;
  2445. padding-right: 0;
  2446. position: relative;
  2447. /* Sub-menus Flyout */
  2448. }
  2449. .main-navigation > div > ul ul {
  2450. padding-right: 0;
  2451. }
  2452. .main-navigation > div > ul li {
  2453. display: block;
  2454. position: relative;
  2455. width: 100%;
  2456. z-index: 1;
  2457. }
  2458. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2459. cursor: pointer;
  2460. z-index: 99999;
  2461. }
  2462. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2463. cursor: pointer;
  2464. z-index: 99999;
  2465. }
  2466. @media only screen and (min-width: 560px) {
  2467. .main-navigation > div > ul li {
  2468. display: inherit;
  2469. width: inherit;
  2470. /* Submenu display */
  2471. }
  2472. .main-navigation > div > ul li:hover > ul,
  2473. .main-navigation > div > ul li[focus-within] > ul,
  2474. .main-navigation > div > ul li ul:hover,
  2475. .main-navigation > div > ul li ul:focus {
  2476. visibility: visible;
  2477. opacity: 1;
  2478. display: block;
  2479. }
  2480. .main-navigation > div > ul li:hover > ul,
  2481. .main-navigation > div > ul li:focus-within > ul,
  2482. .main-navigation > div > ul li ul:hover,
  2483. .main-navigation > div > ul li ul:focus {
  2484. visibility: visible;
  2485. opacity: 1;
  2486. display: block;
  2487. }
  2488. }
  2489. @media only screen and (min-width: 560px) {
  2490. .main-navigation > div > ul > li > a {
  2491. line-height: 1;
  2492. }
  2493. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2494. content: '';
  2495. display: block;
  2496. height: 0;
  2497. width: 0;
  2498. }
  2499. .main-navigation > div > ul > li > a:before {
  2500. margin-bottom: -0.12em;
  2501. }
  2502. .main-navigation > div > ul > li > a:after {
  2503. margin-top: -0.11em;
  2504. }
  2505. .main-navigation > div > ul > li:first-of-type > a {
  2506. padding-right: 0;
  2507. }
  2508. .main-navigation > div > ul > li:last-of-type > a {
  2509. padding-left: 0;
  2510. }
  2511. }
  2512. .main-navigation > div > ul > li > .sub-menu {
  2513. margin: 0;
  2514. position: relative;
  2515. }
  2516. @media only screen and (min-width: 560px) {
  2517. .main-navigation > div > ul > li > .sub-menu {
  2518. background: var(--wp--preset--color--background);
  2519. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  2520. right: 0;
  2521. top: 100%;
  2522. min-width: max-content;
  2523. opacity: 0;
  2524. position: absolute;
  2525. transition: all 0.5s ease;
  2526. visibility: hidden;
  2527. }
  2528. }
  2529. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2530. width: 100%;
  2531. }
  2532. .main-navigation a {
  2533. color: var(--wp--preset--color--primary);
  2534. display: block;
  2535. font-family: "Source Sans Pro", Arial, sans-serif;
  2536. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  2537. font-weight: 700;
  2538. padding: 8px 0;
  2539. }
  2540. @media only screen and (min-width: 560px) {
  2541. .main-navigation a {
  2542. padding: 16px;
  2543. }
  2544. }
  2545. .main-navigation a:link, .main-navigation a:visited {
  2546. color: var(--wp--preset--color--primary);
  2547. }
  2548. .main-navigation a:hover {
  2549. color: var(--wp--preset--color--primary-hover);
  2550. }
  2551. .main-navigation .sub-menu {
  2552. list-style: none;
  2553. margin-right: 0;
  2554. /* Reset the counter for each UL */
  2555. counter-reset: nested-list;
  2556. }
  2557. .main-navigation .sub-menu .menu-item a {
  2558. padding-top: 8px;
  2559. padding-bottom: 8px;
  2560. }
  2561. .main-navigation .sub-menu .menu-item a::before {
  2562. /* Increment the dashes */
  2563. counter-increment: nested-list;
  2564. /* Insert dashes with spaces in between */
  2565. content: "– " counters(nested-list, "– ", none);
  2566. }
  2567. @media only screen and (min-width: 560px) {
  2568. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2569. content: "\00a0\25BC";
  2570. display: inline-block;
  2571. font-size: 0.69444rem;
  2572. height: inherit;
  2573. width: inherit;
  2574. }
  2575. }
  2576. .main-navigation .hide-visually {
  2577. position: absolute !important;
  2578. clip: rect(1px, 1px, 1px, 1px);
  2579. padding: 0 !important;
  2580. border: 0 !important;
  2581. height: 1px !important;
  2582. width: 1px !important;
  2583. overflow: hidden;
  2584. }
  2585. body:not(.fse-enabled) .main-navigation a {
  2586. font-size: 1.2rem;
  2587. }
  2588. .social-navigation > div > ul {
  2589. align-content: center;
  2590. display: flex;
  2591. list-style: none;
  2592. margin: 0;
  2593. padding-right: 0;
  2594. }
  2595. .social-navigation > div > ul > li:first-of-type > a {
  2596. padding-right: 0;
  2597. }
  2598. .social-navigation > div > ul > li:last-of-type > a {
  2599. padding-left: 0;
  2600. }
  2601. .social-navigation a {
  2602. color: var(--wp--preset--color--primary);
  2603. display: inline-block;
  2604. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2605. }
  2606. .social-navigation a:hover {
  2607. color: var(--wp--preset--color--primary-hover);
  2608. }
  2609. .social-navigation svg {
  2610. fill: currentColor;
  2611. vertical-align: middle;
  2612. }
  2613. .site-footer {
  2614. overflow: hidden;
  2615. }
  2616. @media only screen and (min-width: 640px) {
  2617. .site-footer {
  2618. align-items: flex-end;
  2619. display: flex;
  2620. flex-wrap: wrap;
  2621. justify-content: space-between;
  2622. }
  2623. }
  2624. .site-info {
  2625. color: var(--wp--preset--color--primary);
  2626. font-family: "Oswald", sans-serif;
  2627. font-family: var(--font-headings, "Oswald", sans-serif);
  2628. font-size: 0.83333rem;
  2629. }
  2630. @media only screen and (min-width: 640px) {
  2631. .site-info {
  2632. order: 1;
  2633. flex: 1 0 50%;
  2634. margin-top: 0;
  2635. margin-bottom: 0;
  2636. }
  2637. }
  2638. .site-info .site-name {
  2639. font-weight: bold;
  2640. }
  2641. .site-info a {
  2642. color: currentColor;
  2643. }
  2644. .site-info a:link, .site-info a:visited {
  2645. color: currentColor;
  2646. }
  2647. .site-info a:hover {
  2648. color: var(--wp--preset--color--secondary-hover);
  2649. }
  2650. .footer-navigation {
  2651. display: inline;
  2652. }
  2653. @media only screen and (min-width: 640px) {
  2654. .footer-navigation {
  2655. flex: 1 0 50%;
  2656. order: 2;
  2657. margin-top: 0;
  2658. margin-bottom: 0;
  2659. text-align: left;
  2660. }
  2661. }
  2662. .footer-navigation > div {
  2663. display: inline;
  2664. }
  2665. .footer-navigation .footer-menu {
  2666. color: var(--wp--preset--color--primary);
  2667. margin: 0;
  2668. padding-right: 0;
  2669. }
  2670. @media only screen and (min-width: 640px) {
  2671. .footer-navigation .footer-menu {
  2672. display: flex;
  2673. flex-wrap: wrap;
  2674. justify-content: flex-end;
  2675. }
  2676. }
  2677. .footer-navigation .footer-menu > li {
  2678. display: inline;
  2679. }
  2680. .footer-navigation .footer-menu > li:first-of-type > a {
  2681. padding-right: 0;
  2682. }
  2683. .footer-navigation .footer-menu > li:last-of-type {
  2684. padding-left: 0;
  2685. }
  2686. .footer-navigation .footer-menu a {
  2687. font-family: "Source Sans Pro", Arial, sans-serif;
  2688. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  2689. font-weight: 700;
  2690. padding: 16px;
  2691. color: currentColor;
  2692. }
  2693. .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
  2694. color: currentColor;
  2695. }
  2696. .footer-navigation .footer-menu a:hover {
  2697. color: var(--wp--preset--color--secondary-hover);
  2698. }
  2699. body:not(.fse-enabled) .footer-menu a {
  2700. font-size: 0.83333rem;
  2701. }
  2702. .entry-title {
  2703. font-size: 1.728rem;
  2704. letter-spacing: normal;
  2705. line-height: 1.125;
  2706. }
  2707. .entry-meta,
  2708. .entry-footer {
  2709. color: var(--wp--preset--color--foreground-low-contrast);
  2710. clear: both;
  2711. float: none;
  2712. font-size: 0.83333rem;
  2713. display: block;
  2714. }
  2715. .entry-meta > span,
  2716. .entry-footer > span {
  2717. display: inline-block;
  2718. margin-left: 16px;
  2719. }
  2720. .entry-meta > span > *,
  2721. .entry-footer > span > * {
  2722. display: inline-block;
  2723. vertical-align: middle;
  2724. }
  2725. .entry-meta > span:last-child,
  2726. .entry-footer > span:last-child {
  2727. margin-left: 0;
  2728. }
  2729. .entry-meta > span .published + .updated,
  2730. .entry-footer > span .published + .updated {
  2731. display: none;
  2732. }
  2733. .entry-meta a,
  2734. .entry-footer a {
  2735. color: currentColor;
  2736. }
  2737. .entry-meta a:hover, .entry-meta a:active,
  2738. .entry-footer a:hover,
  2739. .entry-footer a:active {
  2740. color: var(--wp--preset--color--primary-hover);
  2741. }
  2742. .entry-meta .svg-icon,
  2743. .entry-footer .svg-icon {
  2744. fill: currentColor;
  2745. position: relative;
  2746. display: inline-block;
  2747. vertical-align: middle;
  2748. margin-left: calc(0.25 * 16px);
  2749. }
  2750. /**
  2751. * Entry Content
  2752. */
  2753. .entry-content p {
  2754. word-wrap: break-word;
  2755. }
  2756. .entry-content .more-link {
  2757. display: block;
  2758. color: inherit;
  2759. margin-top: 16px;
  2760. }
  2761. @media only screen and (min-width: 560px) {
  2762. .entry-content .more-link {
  2763. margin-top: 32px;
  2764. }
  2765. }
  2766. .entry-content .more-link:after {
  2767. content: "←";
  2768. display: inline-block;
  2769. margin-right: 0.5em;
  2770. }
  2771. .entry-content .more-link:hover {
  2772. text-decoration: none;
  2773. }
  2774. .entry-content > iframe,
  2775. .entry-content > iframe[style],
  2776. .entry-content > fb\:post {
  2777. display: block !important;
  2778. margin-right: auto !important;
  2779. margin-left: auto !important;
  2780. overflow: scroll;
  2781. }
  2782. .home.page.hide-homepage-header.hide-homepage-title .entry-content {
  2783. margin-top: 0;
  2784. padding-top: 0;
  2785. }
  2786. .home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
  2787. margin-top: 32px;
  2788. }
  2789. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
  2790. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
  2791. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
  2792. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
  2793. margin-top: -32px;
  2794. }
  2795. .entry-attachment {
  2796. text-align: center;
  2797. }
  2798. /**
  2799. * Post Thumbnails
  2800. */
  2801. .post-thumbnail {
  2802. text-align: center;
  2803. }
  2804. .post-thumbnail .post-thumbnail-inner {
  2805. display: block;
  2806. }
  2807. /**
  2808. * Author
  2809. */
  2810. /* Author description */
  2811. .site-main > article > .author-bio {
  2812. margin-top: calc(2 * 32px);
  2813. }
  2814. .author-bio .author-title {
  2815. font-size: 1.44rem;
  2816. }
  2817. /* Next/Previous navigation */
  2818. .post-navigation .meta-nav {
  2819. font-size: 0.83333rem;
  2820. }
  2821. .post-navigation .post-title {
  2822. font-family: "Oswald", sans-serif;
  2823. font-family: var(--font-headings, "Oswald", sans-serif);
  2824. font-size: 1.44rem;
  2825. font-weight: 600;
  2826. }
  2827. .post-navigation .nav-next,
  2828. .post-navigation .nav-previous {
  2829. margin-top: 32px;
  2830. margin-bottom: 32px;
  2831. }
  2832. .post-navigation .nav-next:first-child,
  2833. .post-navigation .nav-previous:first-child {
  2834. margin-top: 0;
  2835. }
  2836. .post-navigation .nav-next:last-child,
  2837. .post-navigation .nav-previous:last-child {
  2838. margin-bottom: 0;
  2839. }
  2840. .pagination .nav-links {
  2841. justify-content: start;
  2842. margin: 0 calc(-0.66 * 16px);
  2843. }
  2844. .pagination .nav-links > * {
  2845. font-family: "Oswald", sans-serif;
  2846. font-family: var(--font-headings, "Oswald", sans-serif);
  2847. font-size: 1.2rem;
  2848. font-weight: 600;
  2849. padding-right: calc(0.66 * 16px);
  2850. padding-left: calc(0.66 * 16px);
  2851. }
  2852. .pagination .nav-links .svg-icon {
  2853. display: inline-block;
  2854. vertical-align: middle;
  2855. fill: currentColor;
  2856. }
  2857. @media only screen and (min-width: 560px) {
  2858. .nav-links {
  2859. display: flex;
  2860. justify-content: space-between;
  2861. }
  2862. .nav-links .nav-next,
  2863. .nav-links .nav-previous {
  2864. flex: 0 1 auto;
  2865. margin-bottom: inherit;
  2866. margin-top: inherit;
  2867. max-width: calc(50% - (0.5 * 16px));
  2868. }
  2869. .nav-links .nav-next {
  2870. text-align: left;
  2871. }
  2872. }
  2873. /**
  2874. * Comments Wrapper
  2875. */
  2876. .comments-area > * {
  2877. margin-top: 32px;
  2878. margin-bottom: 32px;
  2879. }
  2880. .comments-area > *:first-child {
  2881. margin-top: 0;
  2882. }
  2883. .comments-area > *:last-child {
  2884. margin-bottom: 0;
  2885. }
  2886. /**
  2887. * Comment Title
  2888. */
  2889. .comments-title {
  2890. font-size: 1.44rem;
  2891. letter-spacing: normal;
  2892. }
  2893. .comment-reply-title {
  2894. font-size: 1.728rem;
  2895. display: flex;
  2896. justify-content: space-between;
  2897. align-items: center;
  2898. }
  2899. .comment-reply-title small {
  2900. font-size: 1rem;
  2901. font-family: "Source Sans Pro", Arial, sans-serif;
  2902. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  2903. letter-spacing: normal;
  2904. line-height: 1.125;
  2905. }
  2906. /**
  2907. * Comment Lists
  2908. */
  2909. .comment-list {
  2910. border-bottom: 1px solid var(--wp--preset--color--border);
  2911. padding-right: 0;
  2912. list-style: none;
  2913. }
  2914. .comment-list > li {
  2915. border-top: 1px solid var(--wp--preset--color--border);
  2916. margin-top: 32px;
  2917. margin-bottom: 32px;
  2918. }
  2919. .comment-list .children {
  2920. list-style: none;
  2921. padding-right: 16px;
  2922. }
  2923. .comment-list .children > li {
  2924. border-top: 1px solid var(--wp--preset--color--border);
  2925. margin-top: 32px;
  2926. margin-bottom: 32px;
  2927. }
  2928. @media only screen and (min-width: 560px) {
  2929. .comment-list .children {
  2930. padding-right: 32px;
  2931. }
  2932. }
  2933. /**
  2934. * Comment Meta
  2935. */
  2936. .comment-meta {
  2937. margin-left: calc( 32px + (0.5 * 16px));
  2938. }
  2939. .comment-meta .comment-author {
  2940. line-height: 1.125;
  2941. margin-bottom: 4px;
  2942. padding-left: 40px;
  2943. max-width: calc(100% - 48px);
  2944. }
  2945. @media only screen and (min-width: 560px) {
  2946. .comment-meta .comment-author {
  2947. display: flex;
  2948. align-items: center;
  2949. margin-bottom: 0;
  2950. padding-left: 0;
  2951. }
  2952. }
  2953. .comment-meta .comment-author .fn {
  2954. word-wrap: break-word;
  2955. word-break: break-word;
  2956. hyphens: auto;
  2957. }
  2958. .comment-meta .comment-author .avatar {
  2959. display: block;
  2960. position: absolute;
  2961. left: 0;
  2962. }
  2963. .comment-meta .comment-metadata {
  2964. color: var(--wp--preset--color--foreground);
  2965. padding-left: 40px;
  2966. }
  2967. @media only screen and (min-width: 560px) {
  2968. .comment-meta .comment-metadata {
  2969. padding-left: 0;
  2970. }
  2971. }
  2972. .comment-meta .comment-metadata a {
  2973. color: currentColor;
  2974. }
  2975. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  2976. color: var(--wp--preset--color--primary-hover);
  2977. }
  2978. @media only screen and (min-width: 560px) {
  2979. .comment-meta {
  2980. margin-left: inherit;
  2981. align-items: center;
  2982. display: flex;
  2983. justify-content: space-between;
  2984. }
  2985. .comment-meta .comment-author {
  2986. display: flex;
  2987. align-items: center;
  2988. max-width: inherit;
  2989. flex: 0 1 auto;
  2990. }
  2991. .comment-meta .comment-author .fn {
  2992. padding-left: 16px;
  2993. }
  2994. .comment-meta .comment-author .avatar {
  2995. margin-left: 16px;
  2996. display: inherit;
  2997. position: relative;
  2998. left: inherit;
  2999. }
  3000. .comment-meta .comment-metadata {
  3001. flex: 0 1 auto;
  3002. }
  3003. }
  3004. .comment-metadata,
  3005. .reply {
  3006. font-size: 0.69444rem;
  3007. line-height: 1.125;
  3008. }
  3009. .reply {
  3010. text-align: left;
  3011. }
  3012. @media only screen and (min-width: 560px) {
  3013. .reply {
  3014. text-align: right;
  3015. }
  3016. }
  3017. .bypostauthor {
  3018. display: block;
  3019. }
  3020. .says {
  3021. display: none;
  3022. }
  3023. .comment-author .fn,
  3024. .pingback .url,
  3025. .trackback .url {
  3026. font-family: "Oswald", sans-serif;
  3027. font-family: var(--font-headings, "Oswald", sans-serif);
  3028. }
  3029. /**
  3030. * Comment body
  3031. */
  3032. .comment-body {
  3033. position: relative;
  3034. }
  3035. .comment-body > * {
  3036. margin-top: 32px;
  3037. margin-bottom: 32px;
  3038. }
  3039. .comment-content a {
  3040. word-wrap: break-word;
  3041. }
  3042. /**
  3043. * Pingbacks & Trackbacks
  3044. */
  3045. .pingback .comment-body,
  3046. .trackback .comment-body {
  3047. margin-top: 32px;
  3048. margin-bottom: 32px;
  3049. }
  3050. /**
  3051. * Comment Form
  3052. */
  3053. .comment-respond {
  3054. margin-top: calc(2 * 32px);
  3055. }
  3056. .comment-respond > * {
  3057. margin-top: 16px;
  3058. margin-bottom: 16px;
  3059. }
  3060. .comment-respond > *:first-child {
  3061. margin-top: 0;
  3062. }
  3063. .comment-respond > *:last-child {
  3064. margin-bottom: 0;
  3065. }
  3066. .comment-form > p {
  3067. margin-top: 16px;
  3068. margin-bottom: 16px;
  3069. }
  3070. .comment-form > p:first-of-type {
  3071. margin-top: 0;
  3072. }
  3073. .comment-form > p:last-of-type {
  3074. margin-bottom: 0;
  3075. }
  3076. .comment-form > p label,
  3077. .comment-form > p input[type="email"],
  3078. .comment-form > p input[type="text"],
  3079. .comment-form > p input[type="url"],
  3080. .comment-form > p textarea {
  3081. width: 100%;
  3082. }
  3083. .comment-form > p.comment-form-cookies-consent > label {
  3084. width: auto;
  3085. }
  3086. @media only screen and (min-width: 560px) {
  3087. .comment-form > p {
  3088. display: flex;
  3089. }
  3090. .comment-form > p label {
  3091. width: 25%;
  3092. }
  3093. .comment-form > p.comment-form-cookies-consent {
  3094. margin-right: 25%;
  3095. }
  3096. .comment-form > p.comment-form-cookies-consent > label {
  3097. width: auto;
  3098. display: inline-block;
  3099. }
  3100. .comment-form > p input[type="email"],
  3101. .comment-form > p input[type="text"],
  3102. .comment-form > p input[type="url"],
  3103. .comment-form > p textarea {
  3104. width: 75%;
  3105. }
  3106. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  3107. display: block;
  3108. }
  3109. }
  3110. /**
  3111. * Comment Nav
  3112. */
  3113. .comment-navigation a {
  3114. font-family: "Oswald", sans-serif;
  3115. font-family: var(--font-headings, "Oswald", sans-serif);
  3116. font-size: 1.2rem;
  3117. font-weight: 600;
  3118. }
  3119. .widget-area {
  3120. flex: 0 0 100%;
  3121. }
  3122. /**
  3123. * Site Pages
  3124. * - Page specific styles
  3125. */
  3126. /**
  3127. * Site Pages
  3128. * - Page specific styles
  3129. */
  3130. .sticky-post {
  3131. color: var(--wp--preset--color--background);
  3132. background-color: var(--wp--preset--color--primary);
  3133. font-family: "Oswald", sans-serif;
  3134. font-family: var(--font-headings, "Oswald", sans-serif);
  3135. font-weight: bold;
  3136. font-size: 0.83333rem;
  3137. line-height: 1;
  3138. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  3139. }
  3140. .page-title {
  3141. font-size: 1.2rem;
  3142. }
  3143. /**
  3144. * Responsive Logic
  3145. * - Loading this last to respect cascaing rules
  3146. */
  3147. /**
  3148. * Page Layout Styles & Repsonsive Styles
  3149. */
  3150. /* Responsive width-content overrides */
  3151. .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),
  3152. .entry-content > *:not(.wp-block-button),
  3153. .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 {
  3154. max-width: 100%;
  3155. margin-right: auto;
  3156. margin-left: auto;
  3157. }
  3158. @media only screen and (min-width: 560px) {
  3159. .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),
  3160. .entry-content > *:not(.wp-block-button),
  3161. .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 {
  3162. max-width: calc( 560px - 32px);
  3163. }
  3164. }
  3165. @media only screen and (min-width: 640px) {
  3166. .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),
  3167. .entry-content > *:not(.wp-block-button),
  3168. .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 {
  3169. max-width: calc( 640px - 32px);
  3170. }
  3171. }
  3172. @media only screen and (min-width: 782px) {
  3173. .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),
  3174. .entry-content > *:not(.wp-block-button),
  3175. .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 {
  3176. max-width: calc( 782px - 32px);
  3177. }
  3178. }
  3179. @media only screen and (min-width: 1024px) {
  3180. .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),
  3181. .entry-content > *:not(.wp-block-button),
  3182. .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 {
  3183. max-width: calc( 782px - 32px);
  3184. }
  3185. }
  3186. @media only screen and (min-width: 1280px) {
  3187. .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),
  3188. .entry-content > *:not(.wp-block-button),
  3189. .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 {
  3190. max-width: calc( 782px - 32px);
  3191. }
  3192. }
  3193. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3194. margin-right: auto;
  3195. margin-left: auto;
  3196. max-width: 100%;
  3197. /* Matches normal width until desktop breakpoint */
  3198. }
  3199. @media only screen and (min-width: 560px) {
  3200. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3201. max-width: calc( 560px - 32px);
  3202. }
  3203. }
  3204. @media only screen and (min-width: 640px) {
  3205. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3206. max-width: calc( 640px - 32px);
  3207. }
  3208. }
  3209. @media only screen and (min-width: 782px) {
  3210. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3211. max-width: calc( 782px - 32px);
  3212. }
  3213. }
  3214. @media only screen and (min-width: 1024px) {
  3215. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3216. width: calc(calc( 782px - 32px) + 256px);
  3217. max-width: calc(100% - 32px);
  3218. }
  3219. }
  3220. @media only screen and (min-width: 1280px) {
  3221. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3222. width: calc(calc( 782px - 32px) + 256px);
  3223. max-width: calc(100% - 32px);
  3224. }
  3225. }
  3226. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3227. width: calc(100% + 256px);
  3228. max-width: 100%;
  3229. margin-right: auto;
  3230. margin-left: auto;
  3231. }
  3232. @media only screen and (min-width: 560px) {
  3233. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3234. width: calc(calc( 560px - 32px) + 256px);
  3235. max-width: 100%;
  3236. }
  3237. }
  3238. @media only screen and (min-width: 640px) {
  3239. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3240. width: calc(calc( 640px - 32px) + 256px);
  3241. max-width: 100%;
  3242. }
  3243. }
  3244. @media only screen and (min-width: 782px) {
  3245. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3246. width: calc(calc( 782px - 32px) + 256px);
  3247. max-width: 100%;
  3248. }
  3249. }
  3250. @media only screen and (min-width: 1024px) {
  3251. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3252. width: calc(calc( 782px - 32px) + 256px);
  3253. max-width: 100%;
  3254. }
  3255. }
  3256. @media only screen and (min-width: 1280px) {
  3257. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3258. width: calc(calc( 782px - 32px) + 256px);
  3259. max-width: 100%;
  3260. }
  3261. }
  3262. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3263. margin-right: -16px;
  3264. margin-left: -16px;
  3265. width: calc(100% + 32px);
  3266. max-width: calc(100% + 32px);
  3267. /* Letting the box-model do most of the work here. */
  3268. }
  3269. @media only screen and (min-width: 560px) {
  3270. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3271. margin-right: inherit;
  3272. margin-left: inherit;
  3273. width: inherit;
  3274. max-width: inherit;
  3275. }
  3276. }
  3277. .entry-content > .alignright {
  3278. }
  3279. @media only screen and (min-width: 560px) {
  3280. .entry-content > .alignright {
  3281. /*rtl:ignore*/
  3282. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3283. max-width: calc( 0.5 * calc( 560px - 32px));
  3284. margin-left: 16px;
  3285. }
  3286. }
  3287. @media only screen and (min-width: 640px) {
  3288. .entry-content > .alignright {
  3289. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3290. max-width: calc( 0.5 * calc( 640px - 32px));
  3291. }
  3292. }
  3293. @media only screen and (min-width: 782px) {
  3294. .entry-content > .alignright {
  3295. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3296. max-width: calc( 0.5 * calc( 782px - 32px));
  3297. }
  3298. }
  3299. @media only screen and (min-width: 1024px) {
  3300. .entry-content > .alignright {
  3301. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3302. max-width: calc( 0.5 * calc( 782px - 32px));
  3303. }
  3304. }
  3305. @media only screen and (min-width: 1280px) {
  3306. .entry-content > .alignright {
  3307. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3308. max-width: calc( 0.5 * calc( 782px - 32px));
  3309. }
  3310. }
  3311. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3312. }
  3313. @media only screen and (min-width: 560px) {
  3314. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3315. /*rtl:ignore*/
  3316. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3317. max-width: calc( 0.5 * calc( 560px - 32px));
  3318. margin-right: 16px;
  3319. }
  3320. }
  3321. @media only screen and (min-width: 640px) {
  3322. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3323. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3324. max-width: calc( 0.5 * calc( 640px - 32px));
  3325. }
  3326. }
  3327. @media only screen and (min-width: 782px) {
  3328. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3329. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3330. max-width: calc( 0.5 * calc( 782px - 32px));
  3331. }
  3332. }
  3333. @media only screen and (min-width: 1024px) {
  3334. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3335. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3336. max-width: calc( 0.5 * calc( 782px - 32px));
  3337. }
  3338. }
  3339. @media only screen and (min-width: 1280px) {
  3340. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3341. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3342. max-width: calc( 0.5 * calc( 782px - 32px));
  3343. }
  3344. }
  3345. /**
  3346. * Vendors
  3347. * - Styles for 3rd party plugins and WP extensions
  3348. */
  3349. /**
  3350. * Vendors
  3351. * - 3rd-party compatibility styles
  3352. */
  3353. /**
  3354. * Subscription Form
  3355. */
  3356. .wp-block-jetpack-subscriptions form > * {
  3357. margin-top: 21.312px;
  3358. margin-bottom: 21.312px;
  3359. }
  3360. @media only screen and (min-width: 560px) {
  3361. .wp-block-jetpack-subscriptions form > * {
  3362. margin-top: 32px;
  3363. margin-bottom: 32px;
  3364. }
  3365. }
  3366. .wp-block-jetpack-subscriptions form > *:first-child {
  3367. margin-top: 0;
  3368. }
  3369. .wp-block-jetpack-subscriptions form > *:last-child {
  3370. margin-bottom: 0;
  3371. }
  3372. /**
  3373. * Cookies & Consents Banner
  3374. */
  3375. body .widget_eu_cookie_law_widget {
  3376. background: transparent;
  3377. bottom: 0;
  3378. right: 0;
  3379. padding: 8px;
  3380. left: 0;
  3381. }
  3382. body .widget_eu_cookie_law_widget.widget.top {
  3383. bottom: auto;
  3384. top: 0;
  3385. }
  3386. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3387. background: var(--wp--preset--color--background);
  3388. border: 1px solid var(--wp--preset--color--border);
  3389. color: var(--wp--preset--color--foreground);
  3390. font-size: 0.83333rem;
  3391. line-height: inherit;
  3392. padding: 16px;
  3393. }
  3394. @media (max-width: 600px) {
  3395. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3396. padding-bottom: 80px;
  3397. }
  3398. }
  3399. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3400. background: var(--wp--preset--color--foreground);
  3401. border-color: var(--wp--preset--color--foreground-high-contrast);
  3402. color: var(--wp--preset--color--background);
  3403. }
  3404. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3405. background: var(--wp--preset--color--background);
  3406. color: var(--wp--preset--color--foreground);
  3407. }
  3408. 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 {
  3409. background: var(--wp--preset--color--background-low-contrast);
  3410. }
  3411. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3412. margin: 0;
  3413. margin-right: 32px;
  3414. }
  3415. @media (max-width: 600px) {
  3416. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3417. bottom: 16px;
  3418. right: 16px;
  3419. margin: 0;
  3420. }
  3421. }
  3422. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3423. top: 32px;
  3424. }
  3425. @media (max-width: 782px) {
  3426. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3427. top: 46px;
  3428. }
  3429. }
  3430. /**
  3431. * Mailchimp Subscription Form
  3432. */
  3433. .wp-block-jetpack-mailchimp p {
  3434. margin-top: 21.312px;
  3435. margin-bottom: 21.312px;
  3436. }
  3437. @media only screen and (min-width: 560px) {
  3438. .wp-block-jetpack-mailchimp p {
  3439. margin-top: 32px;
  3440. margin-bottom: 32px;
  3441. }
  3442. }
  3443. .wp-block-jetpack-mailchimp p:first-child {
  3444. margin-top: 0;
  3445. }
  3446. .wp-block-jetpack-mailchimp p:last-child {
  3447. margin-bottom: 0;
  3448. }
  3449. .wp-block-jetpack-mailchimp input[type="email"] {
  3450. width: 100%;
  3451. }
  3452. #wp-block-jetpack-mailchimp_consent-text {
  3453. font-size: 0.83333rem;
  3454. }
  3455. /**
  3456. * Business Hours
  3457. */
  3458. .jetpack-business-hours dd {
  3459. padding-right: 0;
  3460. }
  3461. /**
  3462. * Layout Grid
  3463. */
  3464. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3465. margin-top: 21.312px;
  3466. margin-bottom: 21.312px;
  3467. }
  3468. @media only screen and (min-width: 560px) {
  3469. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3470. margin-top: 32px;
  3471. margin-bottom: 32px;
  3472. }
  3473. }
  3474. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
  3475. margin-top: 0;
  3476. }
  3477. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
  3478. margin-bottom: 0;
  3479. }
  3480. /**
  3481. * Map Block
  3482. */
  3483. .mapboxgl-popup-close-button {
  3484. padding: 6px;
  3485. }
  3486. .wp-block-jetpack-map .mapboxgl-popup h3 {
  3487. padding-top: 15px;
  3488. }
  3489. /**
  3490. * Child Theme Extra Styles
  3491. */
  3492. /**
  3493. * Extra Child Theme Styles
  3494. *
  3495. * 1. General Helper Styles
  3496. * 2. Header
  3497. * 3. Main Wrapper and Content
  3498. * 4. Navigation Menu
  3499. * 5. Archive Pagination and Post Navigation
  3500. * 6. Block Specific Styles
  3501. * 6.1. Column Block
  3502. * 6.2. Quote Block
  3503. * 6.3. Hero Block and Cover Block
  3504. * 6.4. File Block
  3505. * 6.5. Latest Comments Block
  3506. * 6.6. Button Block
  3507. * 6.7. Posts List Block
  3508. * 6.8. Search Block
  3509. * 7. Widgets
  3510. */
  3511. /**
  3512. * 1. General Helper Styles
  3513. */
  3514. body {
  3515. font-weight: 300;
  3516. }
  3517. b,
  3518. strong {
  3519. font-weight: 700;
  3520. }
  3521. .home.page.hide-homepage-title .site-main {
  3522. padding: 0;
  3523. }
  3524. .home.page.hide-homepage-title .site-main article .entry-content {
  3525. margin-top: 0;
  3526. }
  3527. a {
  3528. text-decoration: none;
  3529. }
  3530. .entry-content a:link,
  3531. .entry-content a:active {
  3532. text-decoration: underline;
  3533. }
  3534. .entry-content a:hover,
  3535. .entry-content a:active {
  3536. text-decoration: none;
  3537. }
  3538. .main-navigation {
  3539. text-transform: uppercase;
  3540. }
  3541. .main-navigation > div > ul,
  3542. .social-navigation > div > ul,
  3543. .pagination .nav-links {
  3544. justify-content: center;
  3545. }
  3546. /**
  3547. * 2. Header
  3548. */
  3549. #masthead {
  3550. background-color: var(--wp--preset--color--background);
  3551. padding: 0;
  3552. margin: 0 auto;
  3553. }
  3554. #masthead .site-branding {
  3555. text-align: center;
  3556. background: var(--wp--preset--color--background);
  3557. background-position: center;
  3558. background-repeat: no-repeat;
  3559. background-size: cover;
  3560. text-align: center;
  3561. height: 100%;
  3562. min-height: 72px;
  3563. padding: 3em 0 36px;
  3564. }
  3565. #masthead .social-navigation {
  3566. margin-bottom: 16px;
  3567. }
  3568. #masthead .social-navigation ul li a {
  3569. color: var(--wp--preset--color--secondary);
  3570. }
  3571. #masthead .social-navigation ul li a:hover {
  3572. color: var(--wp--preset--color--secondary-hover);
  3573. }
  3574. body:not(.fse-enabled) .site-title {
  3575. font-size: 2.0736rem;
  3576. }
  3577. body:not(.fse-enabled) .site-description {
  3578. color: var(--wp--preset--color--foreground);
  3579. }
  3580. /**
  3581. * 3. Main Wrapper and Content
  3582. */
  3583. .site {
  3584. margin: 0 auto;
  3585. padding: 0;
  3586. }
  3587. .site-content {
  3588. background-color: var(--wp--preset--color--background);
  3589. }
  3590. #page .entry-header,
  3591. #page .page-header,
  3592. #page .entry-footer,
  3593. #page .a8c-posts-list {
  3594. text-align: center;
  3595. }
  3596. #page .a8c-posts-list-item__excerpt {
  3597. text-align: right;
  3598. }
  3599. /**
  3600. * 4. Navigation
  3601. */
  3602. /**
  3603. * 4.1 Main Navigation
  3604. */
  3605. body:not(.fse-enabled) #site-navigation,
  3606. body:not(.fse-enabled) .main-navigation {
  3607. background-color: var(--wp--preset--color--secondary);
  3608. border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  3609. margin-right: 0;
  3610. margin-left: 0;
  3611. text-align: center;
  3612. }
  3613. body:not(.fse-enabled) #site-navigation > div,
  3614. body:not(.fse-enabled) .main-navigation > div {
  3615. text-align: right;
  3616. }
  3617. body:not(.fse-enabled) #site-navigation.main-navigation > div,
  3618. body:not(.fse-enabled) .main-navigation.main-navigation > div {
  3619. padding-right: 16px;
  3620. padding-left: 16px;
  3621. }
  3622. body:not(.fse-enabled) #site-navigation.main-navigation ul li.current-menu-item a,
  3623. body:not(.fse-enabled) .main-navigation.main-navigation ul li.current-menu-item a {
  3624. color: var(--wp--preset--color--primary);
  3625. }
  3626. body:not(.fse-enabled) #site-navigation.main-navigation ul li a,
  3627. body:not(.fse-enabled) .main-navigation.main-navigation ul li a {
  3628. color: var(--wp--preset--color--background);
  3629. text-decoration: none;
  3630. }
  3631. body:not(.fse-enabled) #site-navigation.main-navigation ul li a:hover,
  3632. body:not(.fse-enabled) .main-navigation.main-navigation ul li a:hover {
  3633. color: var(--wp--preset--color--primary);
  3634. }
  3635. @media only screen and (min-width: 560px) {
  3636. body:not(.fse-enabled) #site-navigation.main-navigation ul li,
  3637. body:not(.fse-enabled) .main-navigation.main-navigation ul li {
  3638. padding-right: 0;
  3639. padding-left: 0;
  3640. list-style-type: disc;
  3641. }
  3642. body:not(.fse-enabled) #site-navigation.main-navigation ul li.current-menu-item a,
  3643. body:not(.fse-enabled) .main-navigation.main-navigation ul li.current-menu-item a {
  3644. color: var(--wp--preset--color--primary);
  3645. }
  3646. body:not(.fse-enabled) #site-navigation.main-navigation ul li a,
  3647. body:not(.fse-enabled) .main-navigation.main-navigation ul li a {
  3648. color: var(--wp--preset--color--background);
  3649. font-size: 0.83333rem;
  3650. }
  3651. body:not(.fse-enabled) #site-navigation.main-navigation ul li a:hover,
  3652. body:not(.fse-enabled) .main-navigation.main-navigation ul li a:hover {
  3653. color: var(--wp--preset--color--primary);
  3654. }
  3655. body:not(.fse-enabled) #site-navigation.main-navigation ul li a::after,
  3656. body:not(.fse-enabled) .main-navigation.main-navigation ul li a::after {
  3657. color: var(--wp--preset--color--background);
  3658. content: " \2022";
  3659. margin-right: 16px;
  3660. display: inline;
  3661. font-size: 1rem;
  3662. opacity: 0.58;
  3663. }
  3664. body:not(.fse-enabled) #site-navigation.main-navigation ul li:last-child a::after,
  3665. body:not(.fse-enabled) .main-navigation.main-navigation ul li:last-child a::after {
  3666. content: "";
  3667. margin-right: 0;
  3668. }
  3669. }
  3670. @media only screen and (min-width: 560px) {
  3671. body:not(.fse-enabled) #site-navigation.main-navigation ul ul,
  3672. body:not(.fse-enabled) .main-navigation.main-navigation ul ul {
  3673. background-color: var(--wp--preset--color--background);
  3674. }
  3675. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li.current-menu-item a,
  3676. body:not(.fse-enabled) .main-navigation.main-navigation ul ul li.current-menu-item a {
  3677. color: var(--wp--preset--color--secondary);
  3678. }
  3679. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li a,
  3680. body:not(.fse-enabled) .main-navigation.main-navigation ul ul li a {
  3681. color: var(--wp--preset--color--primary);
  3682. }
  3683. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li a::after,
  3684. body:not(.fse-enabled) .main-navigation.main-navigation ul ul li a::after {
  3685. content: "";
  3686. }
  3687. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li a:hover,
  3688. body:not(.fse-enabled) .main-navigation.main-navigation ul ul li a:hover {
  3689. color: var(--wp--preset--color--primary-hover);
  3690. }
  3691. body:not(.fse-enabled) #site-navigation.main-navigation ul ul li:hover,
  3692. body:not(.fse-enabled) .main-navigation.main-navigation ul ul li:hover {
  3693. background: var(--wp--preset--color--background-high-contrast);
  3694. }
  3695. }
  3696. body:not(.fse-enabled) #site-navigation.main-navigation .main-menu > li > a,
  3697. body:not(.fse-enabled) .main-navigation.main-navigation .main-menu > li > a {
  3698. padding-right: 0;
  3699. }
  3700. body:not(.fse-enabled) #site-navigation.main-navigation #toggle-menu,
  3701. body:not(.fse-enabled) .main-navigation.main-navigation #toggle-menu {
  3702. border-radius: 0;
  3703. width: 100% !important;
  3704. text-align: center;
  3705. font-size: 1.2rem;
  3706. }
  3707. /**
  3708. * 4.2 Social Navigation
  3709. */
  3710. .social-navigation > div > ul {
  3711. margin-right: 0;
  3712. margin-left: 0;
  3713. }
  3714. /**
  3715. * 5. Archive Pagination and Post Navigation
  3716. */
  3717. .pagination .nav-links > *,
  3718. .post-navigation .post-title {
  3719. font-weight: normal;
  3720. }
  3721. /**
  3722. * 6. Block Specific Styles
  3723. */
  3724. /**
  3725. * 6.1. Column Block
  3726. */
  3727. .wp-block-coblocks-column h1,
  3728. .wp-block-coblocks-column h2,
  3729. .wp-block-coblocks-column h3,
  3730. .wp-block-coblocks-column h4,
  3731. .wp-block-coblocks-column h5,
  3732. .wp-block-coblocks-column h6 {
  3733. margin-bottom: 0.857em;
  3734. }
  3735. .wp-block-coblocks-column a {
  3736. color: var(--wp--preset--color--secondary);
  3737. }
  3738. .wp-block-coblocks-column a:hover {
  3739. color: var(--wp--preset--color--secondary-hover);
  3740. }
  3741. /**
  3742. * 6.2. Quote Block
  3743. */
  3744. .wp-block-quote,
  3745. .wp-block-quote[style*="text-align:center"],
  3746. .wp-block-quote[style*="text-align:right"] {
  3747. border: 1px solid #f2f2f2;
  3748. padding: 16px;
  3749. }
  3750. .wp-block-quote p,
  3751. .wp-block-quote[style*="text-align:center"] p,
  3752. .wp-block-quote[style*="text-align:right"] p {
  3753. font-family: "Source Sans Pro", Arial, sans-serif;
  3754. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  3755. }
  3756. .wp-block-quote cite,
  3757. .wp-block-quote[style*="text-align:center"] cite,
  3758. .wp-block-quote[style*="text-align:right"] cite {
  3759. color: var(--wp--preset--color--secondary);
  3760. }
  3761. /**
  3762. * 6.3. Hero Block and Cover Block
  3763. */
  3764. .wp-block-coblocks-hero__box,
  3765. .wp-block-cover__inner-container {
  3766. padding: 32px;
  3767. }
  3768. .wp-block-coblocks-hero__box h1,
  3769. .wp-block-coblocks-hero__box h2,
  3770. .wp-block-coblocks-hero__box h3,
  3771. .wp-block-coblocks-hero__box h4,
  3772. .wp-block-coblocks-hero__box h5,
  3773. .wp-block-coblocks-hero__box h6,
  3774. .wp-block-cover__inner-container h1,
  3775. .wp-block-cover__inner-container h2,
  3776. .wp-block-cover__inner-container h3,
  3777. .wp-block-cover__inner-container h4,
  3778. .wp-block-cover__inner-container h5,
  3779. .wp-block-cover__inner-container h6 {
  3780. padding: 16px;
  3781. }
  3782. .wp-block-coblocks-hero__box p,
  3783. .wp-block-cover__inner-container p {
  3784. padding: 16px;
  3785. }
  3786. /**
  3787. * 6.4. File Block
  3788. */
  3789. .wp-block-file a.wp-block-file__button {
  3790. text-transform: uppercase;
  3791. line-height: 1;
  3792. color: var(--wp--preset--color--background);
  3793. cursor: pointer;
  3794. font-weight: 600;
  3795. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3796. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  3797. font-size: 0.69444rem;
  3798. background-color: var(--wp--preset--color--secondary);
  3799. border-radius: 9px;
  3800. border-width: 2px;
  3801. padding: 16px 16px;
  3802. display: inline-block;
  3803. }
  3804. .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 {
  3805. color: var(--wp--preset--color--background);
  3806. background-color: var(--wp--preset--color--secondary-hover);
  3807. opacity: 1;
  3808. }
  3809. /**
  3810. * 6.5. Latest Comments Block
  3811. */
  3812. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  3813. font-family: "Source Sans Pro", Arial, sans-serif;
  3814. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  3815. }
  3816. .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  3817. font-size: 0.69444rem;
  3818. }
  3819. /**
  3820. * 6.6. Button Block
  3821. * 6.7. Posts List Block
  3822. * 6.8. Search Block
  3823. */
  3824. .wp-block-button a.wp-block-button__link,
  3825. .a8c-posts-list a.a8c-posts-list__view-all,
  3826. .wp-block-search .wp-block-search__button {
  3827. text-transform: uppercase;
  3828. }
  3829. /**
  3830. * 7. Widgets
  3831. */
  3832. .site-footer .widget-area .widget-title {
  3833. margin-bottom: 0.857em;
  3834. }
  3835. /**
  3836. * 6.1. Blog Posts (Newspack) Block
  3837. */
  3838. .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 {
  3839. text-decoration: none;
  3840. }
  3841. .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 {
  3842. color: var(--wp--preset--color--primary-hover);
  3843. }
  3844. .wp-block-newspack-blocks-homepage-articles article .cat-links a,
  3845. .wp-block-newspack-blocks-homepage-articles article .more-link,
  3846. .wp-block-newspack-blocks-homepage-articles article .entry-meta a {
  3847. text-decoration: none;
  3848. }
  3849. .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,
  3850. .wp-block-newspack-blocks-homepage-articles article .more-link:active,
  3851. .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
  3852. .wp-block-newspack-blocks-homepage-articles article .more-link:hover,
  3853. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  3854. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:focus,
  3855. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover {
  3856. text-decoration: underline;
  3857. }
  3858. .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 {
  3859. color: inherit;
  3860. text-decoration: underline;
  3861. }
  3862. .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 {
  3863. color: inherit;
  3864. }
  3865. .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,
  3866. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
  3867. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
  3868. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  3869. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
  3870. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
  3871. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  3872. text-decoration: underline;
  3873. }
  3874. .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,
  3875. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:active,
  3876. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
  3877. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link:hover,
  3878. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link:active,
  3879. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
  3880. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link:hover {
  3881. color: inherit;
  3882. }
  3883. /**
  3884. * Search block
  3885. */
  3886. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  3887. border-radius: 9px;
  3888. }
  3889. .wp-block-search.wp-block-search__button-inside .wp-block-search__input {
  3890. background: transparent;
  3891. }
  3892. .wp-block-search .wp-block-search__input {
  3893. margin-left: calc(0.1 * 16px);
  3894. border-radius: 9px;
  3895. }
  3896. /**
  3897. * Full Site Editing
  3898. * - Full Site Editing overrides
  3899. */
  3900. .fse-template-part {
  3901. margin-bottom: 0;
  3902. margin-top: 0;
  3903. }
  3904. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  3905. width: 100%;
  3906. }
  3907. .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  3908. color: inherit;
  3909. }
  3910. .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
  3911. justify-content: flex-start;
  3912. }
  3913. .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
  3914. justify-content: center;
  3915. }
  3916. .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
  3917. justify-content: flex-end;
  3918. }
  3919. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3920. padding: 16px 0;
  3921. }
  3922. @media only screen and (min-width: 560px) {
  3923. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3924. padding: 16px;
  3925. }
  3926. }
  3927. .fse-template-part .main-navigation > div > .main-menu.footer-menu > .menu-item-has-children > a::after {
  3928. font-size: 0.6em;
  3929. vertical-align: middle;
  3930. }
  3931. .fse-template-part .wp-block-columns .wp-block-column > * {
  3932. margin: 0 0 5px 0;
  3933. }
  3934. .fse-header > *:first-child:not(.alignfull) {
  3935. margin-top: 21.312px;
  3936. }
  3937. @media only screen and (min-width: 560px) {
  3938. .fse-header > *:first-child:not(.alignfull) {
  3939. margin-top: 32px;
  3940. }
  3941. }
  3942. .fse-footer {
  3943. display: block;
  3944. }
  3945. .fse-footer .site-info {
  3946. margin-top: 21.312px;
  3947. margin-bottom: 21.312px;
  3948. text-align: center;
  3949. }
  3950. @media only screen and (min-width: 560px) {
  3951. .fse-footer .site-info {
  3952. margin-top: 32px;
  3953. margin-bottom: 32px;
  3954. }
  3955. }
  3956. .fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
  3957. padding-bottom: 32px;
  3958. }
  3959. @media only screen and (min-width: 560px) {
  3960. .fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
  3961. padding-bottom: 48px;
  3962. }
  3963. }
  3964. .fse-template-part .wp-block-social-links {
  3965. margin-top: 10px;
  3966. }
  3967. .fse-template-part.fse-footer .main-navigation {
  3968. border-bottom: none;
  3969. }
  3970. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  3971. width: 100%;
  3972. }
  3973. .fse-template-part .main-navigation a {
  3974. text-decoration: none;
  3975. text-transform: uppercase;
  3976. }
  3977. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3978. padding: 0;
  3979. }
  3980. .fse-template-part.fse-header .main-navigation {
  3981. border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  3982. }
  3983. @media only screen and (min-width: 560px) {
  3984. .fse-template-part.fse-header .main-navigation div ul li a::after {
  3985. color: #ffa4ad;
  3986. content: " \2022";
  3987. margin-right: 16px;
  3988. display: inline;
  3989. }
  3990. .fse-template-part.fse-header .main-navigation div ul li:last-child a::after {
  3991. content: "";
  3992. margin-right: 0;
  3993. }
  3994. }
  3995. @media only screen and (max-width: 559px) {
  3996. .fse-template-part {
  3997. max-width: calc( 100% - 32px);
  3998. }
  3999. .fse-template-part .main-navigation > div {
  4000. padding: 0 32px;
  4001. }
  4002. }
  4003. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  4004. padding: 0;
  4005. }
  4006. .fse-template-part .wp-block-cover .site-title a,
  4007. .fse-template-part .wp-block-cover-image .site-title a {
  4008. text-decoration: none;
  4009. }
  4010. .fse-template-part .wp-block-cover .has-background,
  4011. .fse-template-part .wp-block-cover-image .has-background {
  4012. text-shadow: none;
  4013. }