style-rtl.css 109 KB

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