style-rtl.css 86 KB

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