style.css 93 KB

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