style.css 100 KB

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