style.css 96 KB

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