style-rtl.css 86 KB

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