style-rtl.css 109 KB

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