style-rtl.css 124 KB

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