style-rtl.css 109 KB

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