style-rtl.css 106 KB

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