style-rtl.css 106 KB

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