style.css 97 KB

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