style-rtl.css 92 KB

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