style-rtl.css 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Coutoire
  4. Theme URI: https://wordpress.com/theme/coutoire
  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.22
  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. /* Center-align getty image embeds */
  1051. .getty.embed.image {
  1052. display: block !important;
  1053. }
  1054. /**
  1055. * Blocks
  1056. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  1057. * spacing with CSS-variables overrides
  1058. * - In the future the Block styles may get compiled to individual .css
  1059. * files and conditionally loaded
  1060. */
  1061. /**
  1062. * Blocks
  1063. * - These styles replace key Gutenberg Block styles with font, color, and
  1064. * spacing with CSS-variables overrides
  1065. * - In the future the Block styles may get compiled to individual .css
  1066. * files and conditionally loaded
  1067. */
  1068. .wp-block-audio {
  1069. min-width: inherit;
  1070. }
  1071. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  1072. min-width: 300px;
  1073. }
  1074. .wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
  1075. margin-bottom: 16px;
  1076. }
  1077. .wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
  1078. margin-left: 32px;
  1079. }
  1080. .wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
  1081. margin-right: 32px;
  1082. }
  1083. .wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
  1084. padding: 32px;
  1085. }
  1086. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1087. margin-top: 0;
  1088. margin-bottom: 64px;
  1089. }
  1090. @media only screen and (min-width: 560px) {
  1091. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1092. margin-bottom: 96px;
  1093. }
  1094. }
  1095. .wp-block-newspack-blocks-homepage-articles .article-section-title {
  1096. font-size: 1rem;
  1097. margin-bottom: 16px;
  1098. }
  1099. .wp-block-newspack-blocks-homepage-articles .article-section-title + article {
  1100. margin-top: 0;
  1101. }
  1102. .wp-block-newspack-blocks-homepage-articles article {
  1103. display: block;
  1104. /* Vertical margins logic between posts */
  1105. margin-top: 64px;
  1106. margin-bottom: 64px;
  1107. }
  1108. @media only screen and (min-width: 560px) {
  1109. .wp-block-newspack-blocks-homepage-articles article {
  1110. margin-top: 96px;
  1111. margin-bottom: 96px;
  1112. }
  1113. }
  1114. .wp-block-newspack-blocks-homepage-articles article:first-child {
  1115. margin-top: 0;
  1116. }
  1117. .wp-block-newspack-blocks-homepage-articles article:last-child {
  1118. margin-bottom: 96px;
  1119. }
  1120. .wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
  1121. width: auto;
  1122. }
  1123. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
  1124. /* Vertical margins logic between post details */
  1125. margin-top: 16px;
  1126. margin-bottom: 16px;
  1127. }
  1128. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
  1129. margin-top: 0;
  1130. }
  1131. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
  1132. margin-bottom: 0;
  1133. }
  1134. .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1135. color: #000000;
  1136. }
  1137. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1138. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1139. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1140. color: currentColor;
  1141. }
  1142. .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1143. color: #FF7A5C;
  1144. text-decoration: underline;
  1145. }
  1146. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1147. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1148. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1149. color: currentColor;
  1150. }
  1151. @media only screen and (min-width: 560px) {
  1152. .wp-block-newspack-blocks-homepage-articles article .more-link {
  1153. margin-top: 16px;
  1154. }
  1155. }
  1156. .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1157. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1158. color: #767676;
  1159. font-size: 0.83333rem;
  1160. }
  1161. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1162. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1163. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
  1164. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1165. [class*="background-color"]:not(.has-background-background-color)
  1166. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1167. [style*="background-color"]
  1168. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1169. color: currentColor;
  1170. }
  1171. .wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
  1172. .wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
  1173. vertical-align: top;
  1174. }
  1175. .wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
  1176. .wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
  1177. margin-left: 16px;
  1178. }
  1179. .wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
  1180. .wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
  1181. display: none;
  1182. }
  1183. .wp-block-newspack-blocks-homepage-articles article .entry-meta a,
  1184. .wp-block-newspack-blocks-homepage-articles article .cat-links a {
  1185. color: currentColor;
  1186. text-decoration: underline;
  1187. }
  1188. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1189. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1190. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1191. color: #FF7A5C;
  1192. text-decoration: none;
  1193. }
  1194. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1195. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1196. [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,
  1197. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1198. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
  1199. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1200. [class*="background-color"]:not(.has-background-background-color)
  1201. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1202. [style*="background-color"]
  1203. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
  1204. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1205. [class*="background-color"]:not(.has-background-background-color)
  1206. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1207. [style*="background-color"]
  1208. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1209. color: currentColor;
  1210. }
  1211. button[data-load-more-btn],
  1212. .button {
  1213. display: inline-block;
  1214. }
  1215. .has-background:not(.has-background-background-color) button[data-load-more-btn],
  1216. [class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
  1217. [style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color)
  1218. .button,
  1219. [class*="background-color"]:not(.has-background-background-color)
  1220. .button,
  1221. [style*="background-color"]
  1222. .button {
  1223. background-color: transparent;
  1224. border: 2px solid currentColor;
  1225. color: currentColor;
  1226. }
  1227. /**
  1228. * Button
  1229. */
  1230. /**
  1231. * Block Options
  1232. */
  1233. .wp-block-button.is-style-outline.wp-block-button__link,
  1234. .wp-block-button.is-style-outline .wp-block-button__link {
  1235. border: 2px solid currentcolor;
  1236. padding: 9.6px 11.6px;
  1237. }
  1238. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
  1239. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
  1240. background: transparent;
  1241. }
  1242. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
  1243. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1244. color: #000000;
  1245. }
  1246. .wp-block-button.is-style-outline.wp-block-button__link:active,
  1247. .wp-block-button.is-style-outline .wp-block-button__link:active {
  1248. color: #000000;
  1249. }
  1250. .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,
  1251. .wp-block-button.is-style-outline .wp-block-button__link:hover,
  1252. .wp-block-button.is-style-outline .wp-block-button__link:focus,
  1253. .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  1254. color: #FF7A5C;
  1255. }
  1256. .has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
  1257. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1258. color: #FFFFFF;
  1259. }
  1260. .wp-block-button.is-style-squared,
  1261. .wp-block-button.is-style-squared .wp-block-button__link {
  1262. border-radius: 0;
  1263. }
  1264. .wp-block-code {
  1265. color: #444444;
  1266. font-size: 0.83333rem;
  1267. padding: 16px;
  1268. border-color: #DDDDDD;
  1269. }
  1270. .wp-block-code pre {
  1271. color: #444444;
  1272. }
  1273. .wp-block-columns {
  1274. /**
  1275. * Block Options
  1276. */
  1277. }
  1278. .wp-block-columns .wp-block-column > * {
  1279. margin-top: 21.312px;
  1280. margin-bottom: 21.312px;
  1281. }
  1282. @media only screen and (min-width: 560px) {
  1283. .wp-block-columns .wp-block-column > * {
  1284. margin-top: 32px;
  1285. margin-bottom: 32px;
  1286. }
  1287. }
  1288. .wp-block-columns .wp-block-column > *:first-child {
  1289. margin-top: 0;
  1290. }
  1291. .wp-block-columns .wp-block-column > *:last-child {
  1292. margin-bottom: 0;
  1293. }
  1294. .wp-block-columns .wp-block-column:last-child {
  1295. margin-bottom: 0;
  1296. }
  1297. .wp-block-columns .wp-block-column:not(:last-child) {
  1298. margin-bottom: 21.312px;
  1299. }
  1300. @media only screen and (min-width: 560px) {
  1301. .wp-block-columns .wp-block-column:not(:last-child) {
  1302. margin-bottom: 32px;
  1303. }
  1304. }
  1305. @media only screen and (min-width: 782px) {
  1306. .wp-block-columns .wp-block-column:not(:last-child) {
  1307. /* Resetting margins to match _block-container.scss */
  1308. margin-bottom: 0;
  1309. }
  1310. }
  1311. .wp-block-columns.alignfull {
  1312. padding-right: 16px;
  1313. padding-left: 16px;
  1314. }
  1315. .wp-block-columns.alignfull:not(:first-child) {
  1316. margin-top: 32px;
  1317. }
  1318. .wp-block-columns.alignfull:not(:last-child) {
  1319. margin-bottom: 32px;
  1320. }
  1321. .wp-block-cover,
  1322. .wp-block-cover-image {
  1323. background-color: #444444;
  1324. min-height: 480px;
  1325. margin-top: inherit;
  1326. margin-bottom: inherit;
  1327. /* Treating H2 separately to account for legacy /core styles */
  1328. /**
  1329. * Block Options
  1330. */
  1331. }
  1332. .wp-block-cover.has-background-dim,
  1333. .wp-block-cover-image.has-background-dim {
  1334. background-color: #444444;
  1335. }
  1336. .wp-block-cover .wp-block-cover__inner-container,
  1337. .wp-block-cover .wp-block-cover-image-text,
  1338. .wp-block-cover .wp-block-cover-text,
  1339. .wp-block-cover-image .wp-block-cover__inner-container,
  1340. .wp-block-cover-image .wp-block-cover-image-text,
  1341. .wp-block-cover-image .wp-block-cover-text {
  1342. margin-top: 32px;
  1343. margin-bottom: 32px;
  1344. }
  1345. .wp-block-cover h2,
  1346. .wp-block-cover-image h2 {
  1347. font-size: 2.48832rem;
  1348. letter-spacing: normal;
  1349. line-height: 1;
  1350. max-width: inherit;
  1351. text-align: inherit;
  1352. padding: 0;
  1353. }
  1354. .wp-block-cover h2.has-text-align-left,
  1355. .wp-block-cover-image h2.has-text-align-left {
  1356. text-align: right;
  1357. }
  1358. .wp-block-cover h2.has-text-align-center,
  1359. .wp-block-cover-image h2.has-text-align-center {
  1360. text-align: center;
  1361. }
  1362. .wp-block-cover h2.has-text-align-right,
  1363. .wp-block-cover-image h2.has-text-align-right {
  1364. text-align: left;
  1365. }
  1366. .wp-block-cover .wp-block-cover__inner-container,
  1367. .wp-block-cover-image .wp-block-cover__inner-container {
  1368. width: calc(100% - 64px);
  1369. }
  1370. .wp-block-cover .wp-block-cover__inner-container > *,
  1371. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1372. margin-top: 21.312px;
  1373. margin-bottom: 21.312px;
  1374. }
  1375. @media only screen and (min-width: 560px) {
  1376. .wp-block-cover .wp-block-cover__inner-container > *,
  1377. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1378. margin-top: 32px;
  1379. margin-bottom: 32px;
  1380. }
  1381. }
  1382. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1383. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1384. margin-top: 0;
  1385. }
  1386. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1387. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1388. margin-bottom: 0;
  1389. }
  1390. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1391. .wp-block-cover-image.alignleft,
  1392. .wp-block-cover-image.alignright {
  1393. margin-top: 0;
  1394. }
  1395. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1396. .wp-block-cover-image.alignleft > *,
  1397. .wp-block-cover-image.alignright > * {
  1398. margin-top: calc(2 * 32px);
  1399. margin-bottom: calc(2 * 32px);
  1400. padding-right: 16px;
  1401. padding-left: 16px;
  1402. width: 100%;
  1403. }
  1404. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1405. .wp-block-cover-image.has-left-content,
  1406. .wp-block-cover-image.has-right-content {
  1407. justify-content: center;
  1408. }
  1409. .wp-block-file .wp-block-file__button {
  1410. background-color: #000000;
  1411. color: #FFFFFF;
  1412. font-size: 0.83333rem;
  1413. margin-right: 16px;
  1414. margin-left: 16px;
  1415. }
  1416. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1417. display: inherit;
  1418. }
  1419. .wp-block-file a.wp-block-file__button:active,
  1420. .wp-block-file a.wp-block-file__button:focus,
  1421. .wp-block-file a.wp-block-file__button:hover,
  1422. .wp-block-file a.wp-block-file__button:visited {
  1423. color: #FFFFFF;
  1424. opacity: .85;
  1425. }
  1426. .wp-block-gallery {
  1427. margin: 0;
  1428. }
  1429. .wp-block-gallery .blocks-gallery-image figcaption,
  1430. .wp-block-gallery .blocks-gallery-item figcaption {
  1431. margin: 0;
  1432. color: #FFFFFF;
  1433. font-size: 0.69444rem;
  1434. }
  1435. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1436. max-width: 50%;
  1437. }
  1438. .wp-block-group .wp-block-group__inner-container {
  1439. margin-right: auto;
  1440. margin-left: auto;
  1441. }
  1442. .wp-block-group .wp-block-group__inner-container > * {
  1443. margin-top: 21.312px;
  1444. margin-bottom: 21.312px;
  1445. }
  1446. @media only screen and (min-width: 560px) {
  1447. .wp-block-group .wp-block-group__inner-container > * {
  1448. margin-top: 32px;
  1449. margin-bottom: 32px;
  1450. }
  1451. }
  1452. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1453. margin-top: 0;
  1454. }
  1455. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1456. margin-bottom: 0;
  1457. }
  1458. .wp-block-group.has-background {
  1459. padding: 21.312px;
  1460. }
  1461. @media only screen and (min-width: 560px) {
  1462. .wp-block-group.has-background {
  1463. padding: 32px;
  1464. }
  1465. }
  1466. .wp-block-group.alignfull {
  1467. padding-right: 16px;
  1468. padding-left: 16px;
  1469. }
  1470. h1, .h1,
  1471. h2, .h2,
  1472. h3, .h3,
  1473. h4, .h4,
  1474. h5, .h5,
  1475. h6, .h6 {
  1476. font-family: "EB Garamond", serif;
  1477. font-family: var(--font-headings, "EB Garamond", serif);
  1478. font-weight: 400;
  1479. clear: both;
  1480. }
  1481. h1, .h1 {
  1482. font-size: 2.98598rem;
  1483. letter-spacing: normal;
  1484. line-height: 1;
  1485. }
  1486. h2, .h2 {
  1487. font-size: 2.48832rem;
  1488. letter-spacing: normal;
  1489. line-height: 1;
  1490. }
  1491. h3, .h3 {
  1492. font-size: 2.0736rem;
  1493. letter-spacing: normal;
  1494. line-height: 1;
  1495. }
  1496. h4, .h4 {
  1497. font-size: 1.728rem;
  1498. letter-spacing: normal;
  1499. line-height: 1;
  1500. }
  1501. h5, .h5 {
  1502. font-size: 1.44rem;
  1503. letter-spacing: normal;
  1504. line-height: 1;
  1505. }
  1506. h6, .h6 {
  1507. font-size: 1.2rem;
  1508. letter-spacing: normal;
  1509. line-height: 1;
  1510. }
  1511. .wp-block-image {
  1512. text-align: center;
  1513. }
  1514. .wp-block-image figcaption {
  1515. color: #767676;
  1516. font-size: 0.69444rem;
  1517. margin-top: calc(0.5 * 16px);
  1518. margin-bottom: 16px;
  1519. text-align: center;
  1520. }
  1521. .entry-content > *[class="wp-block-image"],
  1522. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1523. margin-top: 0;
  1524. margin-bottom: 0;
  1525. }
  1526. .entry-content > *[class="wp-block-image"] + *,
  1527. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1528. margin-top: 0;
  1529. }
  1530. img {
  1531. height: auto;
  1532. max-width: 100%;
  1533. vertical-align: middle;
  1534. }
  1535. .wp-block-latest-comments {
  1536. padding-right: 0;
  1537. }
  1538. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1539. font-size: 0.83333rem;
  1540. line-height: 1.78;
  1541. /* Vertical margins logic */
  1542. margin-top: 32px;
  1543. margin-bottom: 32px;
  1544. }
  1545. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1546. margin-top: 0;
  1547. }
  1548. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1549. margin-bottom: 0;
  1550. }
  1551. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1552. font-family: "EB Garamond", serif;
  1553. font-family: var(--font-headings, "EB Garamond", serif);
  1554. }
  1555. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1556. color: #767676;
  1557. font-size: 0.83333rem;
  1558. }
  1559. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1560. font-size: 0.83333rem;
  1561. line-height: 1.78;
  1562. margin: 0;
  1563. }
  1564. .wp-block-latest-posts {
  1565. padding-right: 0;
  1566. }
  1567. .wp-block-latest-posts > li {
  1568. word-wrap: break-word;
  1569. /* Vertical margins logic */
  1570. margin-top: 32px;
  1571. margin-bottom: 32px;
  1572. }
  1573. .wp-block-latest-posts > li:first-child {
  1574. margin-top: 0;
  1575. }
  1576. .wp-block-latest-posts > li:last-child {
  1577. margin-bottom: 0;
  1578. }
  1579. .wp-block-latest-posts > li > a {
  1580. font-family: "EB Garamond", serif;
  1581. font-family: var(--font-headings, "EB Garamond", serif);
  1582. font-size: 1.728rem;
  1583. font-weight: 400;
  1584. line-height: 1;
  1585. }
  1586. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1587. color: #767676;
  1588. font-size: 0.69444rem;
  1589. line-height: 1.78;
  1590. }
  1591. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1592. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1593. color: currentColor;
  1594. }
  1595. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1596. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1597. font-size: 0.83333rem;
  1598. line-height: 1.78;
  1599. margin: 0;
  1600. }
  1601. .wp-block-latest-posts.alignfull {
  1602. padding-right: 16px;
  1603. padding-left: 16px;
  1604. }
  1605. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1606. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1607. padding-right: 0;
  1608. padding-left: 0;
  1609. }
  1610. .gallery-item {
  1611. display: inline-block;
  1612. text-align: center;
  1613. vertical-align: top;
  1614. width: 100%;
  1615. }
  1616. .gallery-item a {
  1617. display: block;
  1618. }
  1619. .gallery-columns-2 .gallery-item {
  1620. max-width: 50%;
  1621. }
  1622. .gallery-columns-3 .gallery-item {
  1623. max-width: 33.33%;
  1624. }
  1625. .gallery-columns-4 .gallery-item {
  1626. max-width: 25%;
  1627. }
  1628. .gallery-columns-5 .gallery-item {
  1629. max-width: 20%;
  1630. }
  1631. .gallery-columns-6 .gallery-item {
  1632. max-width: 16.66%;
  1633. }
  1634. .gallery-columns-7 .gallery-item {
  1635. max-width: 14.28%;
  1636. }
  1637. .gallery-columns-8 .gallery-item {
  1638. max-width: 12.5%;
  1639. }
  1640. .gallery-columns-9 .gallery-item {
  1641. max-width: 11.11%;
  1642. }
  1643. .gallery-caption {
  1644. display: block;
  1645. }
  1646. ul,
  1647. ol {
  1648. font-family: "Work Sans", sans-serif;
  1649. font-family: var(--font-base, "Work Sans", sans-serif);
  1650. margin: 0;
  1651. padding-right: 32px;
  1652. }
  1653. ul.aligncenter,
  1654. ol.aligncenter {
  1655. list-style-position: inside;
  1656. padding: 0;
  1657. }
  1658. ul.alignright,
  1659. ol.alignright {
  1660. list-style-position: inside;
  1661. text-align: left;
  1662. padding: 0;
  1663. }
  1664. ul {
  1665. list-style-type: disc;
  1666. }
  1667. ol {
  1668. list-style-type: decimal;
  1669. }
  1670. dt {
  1671. font-family: "EB Garamond", serif;
  1672. font-family: var(--font-headings, "EB Garamond", serif);
  1673. font-weight: bold;
  1674. }
  1675. dd {
  1676. margin: 0;
  1677. padding-right: 32px;
  1678. }
  1679. .wp-block-media-text {
  1680. /**
  1681. * Block Options
  1682. */
  1683. }
  1684. .wp-block-media-text .wp-block-media-text__content {
  1685. padding: 16px;
  1686. }
  1687. @media only screen and (min-width: 640px) {
  1688. .wp-block-media-text .wp-block-media-text__content {
  1689. padding: 32px;
  1690. }
  1691. }
  1692. .wp-block-media-text .wp-block-media-text__content > * {
  1693. margin-top: 21.312px;
  1694. margin-bottom: 21.312px;
  1695. }
  1696. @media only screen and (min-width: 560px) {
  1697. .wp-block-media-text .wp-block-media-text__content > * {
  1698. margin-top: 32px;
  1699. margin-bottom: 32px;
  1700. }
  1701. }
  1702. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1703. margin-top: 0;
  1704. }
  1705. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1706. margin-bottom: 0;
  1707. }
  1708. @media only screen and (min-width: 560px) {
  1709. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1710. padding-top: 32px;
  1711. padding-bottom: 32px;
  1712. }
  1713. }
  1714. p.has-background {
  1715. padding: 16px 16px;
  1716. }
  1717. .a8c-posts-list__listing {
  1718. list-style: none;
  1719. margin: 0;
  1720. padding: 0;
  1721. }
  1722. .a8c-posts-list__listing:not(:last-child) {
  1723. margin-bottom: calc(3 * 32px);
  1724. }
  1725. .a8c-posts-list-item__featured span {
  1726. color: #FFFFFF;
  1727. background-color: #000000;
  1728. font-family: "EB Garamond", serif;
  1729. font-family: var(--font-headings, "EB Garamond", serif);
  1730. font-weight: bold;
  1731. font-size: 0.83333rem;
  1732. line-height: 1;
  1733. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1734. }
  1735. .a8c-posts-list__item {
  1736. display: block;
  1737. /* Vertical margins logic between posts */
  1738. margin-top: calc(3 * 32px);
  1739. margin-bottom: calc(3 * 32px);
  1740. }
  1741. .a8c-posts-list__item:first-child {
  1742. margin-top: 0;
  1743. }
  1744. .a8c-posts-list__item:last-child {
  1745. margin-bottom: 0;
  1746. }
  1747. .a8c-posts-list__item .entry > * {
  1748. /* Vertical margins logic between post details */
  1749. margin-top: 16px;
  1750. margin-bottom: 16px;
  1751. }
  1752. .a8c-posts-list__item .entry > *:first-child {
  1753. margin-top: 0;
  1754. }
  1755. .a8c-posts-list__item .entry > *:last-child {
  1756. margin-bottom: 0;
  1757. }
  1758. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1759. color: #767676;
  1760. font-size: 0.83333rem;
  1761. }
  1762. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1763. color: currentColor;
  1764. }
  1765. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1766. color: #FF7A5C;
  1767. }
  1768. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1769. margin-right: 16px;
  1770. }
  1771. .a8c-posts-list__view-all {
  1772. display: inline-block;
  1773. }
  1774. .wp-block-pullquote {
  1775. border-top-color: #DDDDDD;
  1776. border-top-width: 4px;
  1777. border-bottom-color: #DDDDDD;
  1778. border-bottom-width: 4px;
  1779. color: #444444;
  1780. }
  1781. .wp-block-pullquote blockquote p {
  1782. font-family: "EB Garamond", serif;
  1783. font-family: var(--font-headings, "EB Garamond", serif);
  1784. font-size: 1.728rem;
  1785. letter-spacing: normal;
  1786. line-height: 1;
  1787. }
  1788. .wp-block-pullquote.is-style-solid-color blockquote p {
  1789. font-size: 1.728rem;
  1790. }
  1791. .wp-block-pullquote a {
  1792. color: currentColor;
  1793. }
  1794. .wp-block-pullquote .wp-block-pullquote__citation,
  1795. .wp-block-pullquote cite,
  1796. .wp-block-pullquote footer {
  1797. color: #767676;
  1798. font-size: 0.83333rem;
  1799. letter-spacing: normal;
  1800. }
  1801. .wp-block-pullquote blockquote {
  1802. padding-right: 0;
  1803. }
  1804. .wp-block-pullquote.is-style-solid-color {
  1805. color: #FFFFFF;
  1806. }
  1807. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1808. .wp-block-pullquote.is-style-solid-color cite,
  1809. .wp-block-pullquote.is-style-solid-color footer {
  1810. color: currentColor;
  1811. }
  1812. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  1813. background-color: #000000;
  1814. }
  1815. .wp-block-quote {
  1816. border-right-color: #000000;
  1817. margin: 32px 0;
  1818. padding-right: 16px;
  1819. /**
  1820. * Block Options
  1821. */
  1822. }
  1823. .wp-block-quote > * {
  1824. margin-top: 16px;
  1825. margin-bottom: 16px;
  1826. }
  1827. .wp-block-quote > *:first-child {
  1828. margin-top: 0;
  1829. }
  1830. .wp-block-quote > *:last-child {
  1831. margin-bottom: 0;
  1832. }
  1833. .wp-block-quote p {
  1834. font-family: "EB Garamond", serif;
  1835. font-family: var(--font-headings, "EB Garamond", serif);
  1836. font-size: 1.728rem;
  1837. letter-spacing: normal;
  1838. line-height: 1;
  1839. }
  1840. .wp-block-quote .wp-block-quote__citation,
  1841. .wp-block-quote cite,
  1842. .wp-block-quote footer {
  1843. color: #767676;
  1844. font-size: 0.83333rem;
  1845. letter-spacing: normal;
  1846. }
  1847. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1848. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1849. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1850. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1851. .wp-block-quote cite,
  1852. [class*="background-color"]:not(.has-background-background-color)
  1853. .wp-block-quote cite,
  1854. [style*="background-color"]
  1855. .wp-block-quote cite,
  1856. .wp-block-cover[style*="background-image"]
  1857. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1858. .wp-block-quote footer,
  1859. [class*="background-color"]:not(.has-background-background-color)
  1860. .wp-block-quote footer,
  1861. [style*="background-color"]
  1862. .wp-block-quote footer,
  1863. .wp-block-cover[style*="background-image"]
  1864. .wp-block-quote footer {
  1865. color: currentColor;
  1866. }
  1867. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1868. border-left-color: #000000;
  1869. }
  1870. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1871. /* Resetting margins to match _block-container.scss */
  1872. margin-top: 32px;
  1873. margin-bottom: 32px;
  1874. padding: 0;
  1875. }
  1876. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1877. font-size: 2.0736rem;
  1878. letter-spacing: normal;
  1879. line-height: 1;
  1880. }
  1881. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1882. .wp-block-quote.is-style-large cite,
  1883. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1884. .wp-block-quote.is-large cite,
  1885. .wp-block-quote.is-large footer {
  1886. color: #767676;
  1887. font-size: 0.83333rem;
  1888. letter-spacing: normal;
  1889. }
  1890. .has-background:not(.has-background-background-color) .wp-block-quote,
  1891. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1892. [style*="background-color"] .wp-block-quote,
  1893. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1894. border-color: currentColor;
  1895. }
  1896. .wp-block-search {
  1897. flex-wrap: wrap;
  1898. }
  1899. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  1900. background: #FFFFFF;
  1901. color: #000000;
  1902. border: 1px solid #DDDDDD;
  1903. border-radius: 3px;
  1904. }
  1905. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  1906. padding: 16px;
  1907. }
  1908. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  1909. padding: 11.6px 11.6px;
  1910. }
  1911. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  1912. padding: 0;
  1913. }
  1914. .wp-block-search .wp-block-search__label {
  1915. font-weight: normal;
  1916. }
  1917. .wp-block-search .wp-block-search__input {
  1918. color: #000000;
  1919. border: 1px solid #DDDDDD;
  1920. border-radius: 3px;
  1921. padding: 16px;
  1922. font-size: 1rem;
  1923. line-height: 1rem;
  1924. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1925. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1926. max-width: inherit;
  1927. margin-left: calc( .66 * 11.6px);
  1928. background: #FFFFFF;
  1929. }
  1930. .wp-block-search .wp-block-search__input:focus {
  1931. color: #000000;
  1932. border-color: #DDDDDD;
  1933. }
  1934. .wp-block-search .wp-block-search__button {
  1935. border: none;
  1936. box-shadow: none;
  1937. }
  1938. .wp-block-search .wp-block-search__button.has-icon {
  1939. transform: scaleX(-1);
  1940. padding: 0;
  1941. min-width: calc(2* 11.6px + 1rem + 4px);
  1942. min-height: calc(2* 11.6px + 1rem + 4px);
  1943. }
  1944. .wp-block-search .wp-block-search__button.has-icon svg {
  1945. fill: currentColor;
  1946. width: 29px;
  1947. height: 29px;
  1948. }
  1949. hr {
  1950. border-bottom: 2px solid #DDDDDD;
  1951. clear: both;
  1952. margin-right: auto;
  1953. margin-left: auto;
  1954. }
  1955. hr.wp-block-separator {
  1956. border-bottom: 2px solid #DDDDDD;
  1957. /**
  1958. * Block Options
  1959. */
  1960. }
  1961. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  1962. max-width: 96px;
  1963. }
  1964. hr.wp-block-separator.is-style-wide {
  1965. border-bottom-width: 2px;
  1966. }
  1967. hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
  1968. background-color: transparent !important;
  1969. }
  1970. hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
  1971. color: currentColor !important;
  1972. }
  1973. hr.wp-block-separator.is-style-dots:before {
  1974. color: #DDDDDD;
  1975. font-size: 1.728rem;
  1976. letter-spacing: 0.83333rem;
  1977. padding-right: 0.83333rem;
  1978. }
  1979. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  1980. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  1981. [style*="background-color"] hr.wp-block-separator,
  1982. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  1983. border-color: currentColor;
  1984. }
  1985. .wp-block-jetpack-slideshow ul {
  1986. margin-right: 0;
  1987. margin-left: 0;
  1988. }
  1989. .wp-block-spacer {
  1990. display: block;
  1991. margin-bottom: 0 !important;
  1992. margin-top: 0 !important;
  1993. }
  1994. @media only screen and (max-width: 559px) {
  1995. .wp-block-spacer[style] {
  1996. height: 16px !important;
  1997. }
  1998. }
  1999. .jetpack_subscription_widget input[type="text"] {
  2000. padding: 16px !important;
  2001. width: 100% !important;
  2002. }
  2003. table,
  2004. .wp-block-table {
  2005. width: 100%;
  2006. min-width: 240px;
  2007. border-collapse: collapse;
  2008. }
  2009. table th,
  2010. .wp-block-table th {
  2011. font-family: "EB Garamond", serif;
  2012. font-family: var(--font-headings, "EB Garamond", serif);
  2013. }
  2014. table td,
  2015. table th,
  2016. .wp-block-table td,
  2017. .wp-block-table th {
  2018. padding: calc( 0.5 * 16px);
  2019. border: 1px solid;
  2020. }
  2021. table.is-style-stripes tbody tr:nth-child(odd),
  2022. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  2023. background-color: #FAFAFA;
  2024. color: #444444;
  2025. }
  2026. .wp-block-video figcaption {
  2027. color: #767676;
  2028. font-size: 0.69444rem;
  2029. margin-top: calc(0.5 * 16px);
  2030. margin-bottom: 16px;
  2031. text-align: center;
  2032. }
  2033. * > figure > video {
  2034. max-width: unset;
  2035. width: 100%;
  2036. vertical-align: middle;
  2037. }
  2038. /* Block Alignments */
  2039. /**
  2040. * .alignleft
  2041. */
  2042. .alignleft {
  2043. text-align: left;
  2044. float: left;
  2045. margin-top: 0;
  2046. margin-right: 16px;
  2047. margin-bottom: 32px;
  2048. }
  2049. .entry-content > .alignleft {
  2050. float: left;
  2051. }
  2052. /**
  2053. * .aligncenter
  2054. */
  2055. .aligncenter {
  2056. clear: both;
  2057. display: block;
  2058. float: none;
  2059. margin-left: auto;
  2060. margin-right: auto;
  2061. text-align: center;
  2062. }
  2063. /**
  2064. * .alignright
  2065. */
  2066. .alignright {
  2067. float: right;
  2068. margin-top: 0;
  2069. margin-bottom: 32px;
  2070. margin-left: 16px;
  2071. }
  2072. .entry-content > .alignright {
  2073. float: right;
  2074. }
  2075. .entry-content * > .alignleft + *,
  2076. .entry-content * > .alignright + * {
  2077. margin-top: 0;
  2078. }
  2079. /**
  2080. * .aligndefault
  2081. */
  2082. /**
  2083. * .alignwide
  2084. */
  2085. .alignwide {
  2086. clear: both;
  2087. }
  2088. /**
  2089. * .alignfull
  2090. */
  2091. .alignfull {
  2092. clear: both;
  2093. }
  2094. .has-left-content {
  2095. justify-content: flex-start;
  2096. }
  2097. .has-right-content {
  2098. justify-content: flex-end;
  2099. }
  2100. .has-parallax {
  2101. background-attachment: fixed;
  2102. }
  2103. .has-primary-color {
  2104. color: #000000;
  2105. }
  2106. .has-secondary-color {
  2107. color: #FF7A5C;
  2108. }
  2109. .has-foreground-color {
  2110. color: #444444;
  2111. }
  2112. .has-foreground-light-color {
  2113. color: #767676;
  2114. }
  2115. .has-foreground-dark-color {
  2116. color: #111111;
  2117. }
  2118. .has-background-light-color {
  2119. color: #FAFAFA;
  2120. }
  2121. .has-background-dark-color {
  2122. color: #DDDDDD;
  2123. }
  2124. .has-background-dim,
  2125. .has-background-color {
  2126. color: #FFFFFF;
  2127. }
  2128. .has-background p:not(.has-text-color),
  2129. .has-background h1:not(.has-text-color),
  2130. .has-background h2:not(.has-text-color),
  2131. .has-background h3:not(.has-text-color),
  2132. .has-background h4:not(.has-text-color),
  2133. .has-background h5:not(.has-text-color),
  2134. .has-background h6:not(.has-text-color) {
  2135. color: currentcolor;
  2136. }
  2137. .has-primary-background-color,
  2138. .has-primary-background-color.has-background-dim {
  2139. background-color: #000000;
  2140. }
  2141. .has-primary-background-color:not(.has-text-color),
  2142. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  2143. color: #FFFFFF;
  2144. }
  2145. .has-secondary-background-color,
  2146. .has-secondary-background-color.has-background-dim {
  2147. background-color: #FF7A5C;
  2148. }
  2149. .has-secondary-background-color:not(.has-text-color),
  2150. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  2151. color: #FFFFFF;
  2152. }
  2153. .has-background-dim,
  2154. .has-foreground-background-color,
  2155. .has-foreground-background-color.has-background-dim {
  2156. background-color: #444444;
  2157. }
  2158. .has-background-dim,
  2159. .has-foreground-background-color:not(.has-text-color),
  2160. .has-foreground-background-color.has-background-dim:not(.has-text-color) {
  2161. color: #FFFFFF;
  2162. }
  2163. .has-foreground-light-background-color,
  2164. .has-foreground-light-background-color.has-background-dim {
  2165. background-color: #767676;
  2166. }
  2167. .has-foreground-light-background-color:not(.has-text-color),
  2168. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  2169. color: #FFFFFF;
  2170. }
  2171. .has-foreground-dark-background-color,
  2172. .has-foreground-dark-background-color.has-background-dim {
  2173. background-color: #111111;
  2174. }
  2175. .has-foreground-dark-background-color:not(.has-text-color),
  2176. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  2177. color: #FFFFFF;
  2178. }
  2179. .has-background-light-background-color,
  2180. .has-background-light-background-color.has-background-dim {
  2181. background-color: #FAFAFA;
  2182. }
  2183. .has-background-light-background-color:not(.has-text-color),
  2184. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  2185. color: #444444;
  2186. }
  2187. .has-background-dark-background-color,
  2188. .has-background-dark-background-color.has-background-dim {
  2189. background-color: #DDDDDD;
  2190. }
  2191. .has-background-dark-background-color:not(.has-text-color),
  2192. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  2193. color: #444444;
  2194. }
  2195. .has-background-background-color,
  2196. .has-background-background-color.has-background-dim {
  2197. background-color: #FFFFFF;
  2198. }
  2199. .has-background-background-color:not(.has-text-color),
  2200. .has-background-background-color.has-background-dim:not(.has-text-color) {
  2201. color: #444444;
  2202. }
  2203. .is-small-text,
  2204. .has-small-font-size {
  2205. font-size: 0.83333rem;
  2206. }
  2207. .is-regular-text,
  2208. .has-regular-font-size,
  2209. .has-normal-font-size,
  2210. .has-medium-font-size {
  2211. font-size: 1rem;
  2212. }
  2213. .is-large-text,
  2214. .has-large-font-size {
  2215. font-size: 1.44rem;
  2216. line-height: 1;
  2217. }
  2218. .is-larger-text,
  2219. .has-larger-font-size,
  2220. .has-huge-font-size {
  2221. font-size: 1.728rem;
  2222. line-height: 1;
  2223. }
  2224. .has-drop-cap:not(:focus)::first-letter {
  2225. font-family: "EB Garamond", serif;
  2226. font-family: var(--font-headings, "EB Garamond", serif);
  2227. font-size: calc(2 * 2.98598rem);
  2228. font-weight: 400;
  2229. line-height: 0.66;
  2230. text-transform: uppercase;
  2231. font-style: normal;
  2232. float: right;
  2233. margin: 0.1em 0 0 0.1em;
  2234. }
  2235. .has-drop-cap:not(:focus)::after {
  2236. content: "";
  2237. display: table;
  2238. clear: both;
  2239. padding-top: 14px;
  2240. }
  2241. .desktop-only {
  2242. display: none;
  2243. }
  2244. @media only screen and (min-width: 560px) {
  2245. .desktop-only {
  2246. display: block;
  2247. }
  2248. }
  2249. /**
  2250. * Spacing Overrides
  2251. */
  2252. /*
  2253. * Margins
  2254. */
  2255. .margin-top-none {
  2256. margin-top: 0 !important;
  2257. }
  2258. .margin-top-half {
  2259. margin-top: 16px !important;
  2260. }
  2261. .margin-top-default {
  2262. margin-top: 32px !important;
  2263. }
  2264. .margin-right-none {
  2265. margin-right: 0 !important;
  2266. }
  2267. .margin-right-half {
  2268. margin-right: 16px !important;
  2269. }
  2270. .margin-right-default {
  2271. margin-right: 32px !important;
  2272. }
  2273. .margin-bottom-none {
  2274. margin-bottom: 0 !important;
  2275. }
  2276. .margin-bottom-half {
  2277. margin-bottom: 16px !important;
  2278. }
  2279. .margin-bottom-default {
  2280. margin-bottom: 32px !important;
  2281. }
  2282. .margin-left-none {
  2283. margin-left: 0 !important;
  2284. }
  2285. .margin-left-half {
  2286. margin-left: 16px !important;
  2287. }
  2288. .margin-left-default {
  2289. margin-left: 32px !important;
  2290. }
  2291. /*
  2292. * Padding
  2293. */
  2294. .padding-top-none {
  2295. padding-top: 0 !important;
  2296. }
  2297. .padding-top-half {
  2298. padding-top: 16px !important;
  2299. }
  2300. .padding-top-default {
  2301. padding-top: 32px !important;
  2302. }
  2303. .padding-right-none {
  2304. padding-right: 0 !important;
  2305. }
  2306. .padding-right-half {
  2307. padding-right: 16px !important;
  2308. }
  2309. .padding-right-default {
  2310. padding-right: 32px !important;
  2311. }
  2312. .padding-bottom-none {
  2313. padding-bottom: 0 !important;
  2314. }
  2315. .padding-bottom-half {
  2316. padding-bottom: 16px !important;
  2317. }
  2318. .padding-bottom-default {
  2319. padding-bottom: 32px !important;
  2320. }
  2321. .padding-left-none {
  2322. padding-left: 0 !important;
  2323. }
  2324. .padding-left-half {
  2325. padding-left: 16px !important;
  2326. }
  2327. .padding-left-default {
  2328. padding-left: 32px !important;
  2329. }
  2330. /**
  2331. * Components
  2332. * - Similar to Blocks but exist outside of the "current" editor context
  2333. */
  2334. /*
  2335. * Components
  2336. * - Similar to Blocks but exist outside of the "current" editor context
  2337. */
  2338. .site-branding {
  2339. color: #767676;
  2340. }
  2341. .site-title {
  2342. color: #000000;
  2343. font-family: "EB Garamond", serif;
  2344. font-family: var(--font-headings, "EB Garamond", serif);
  2345. letter-spacing: normal;
  2346. line-height: 1;
  2347. }
  2348. .site-title a {
  2349. color: currentColor;
  2350. font-weight: normal;
  2351. }
  2352. .site-title a:link, .site-title a:visited {
  2353. color: currentColor;
  2354. }
  2355. .site-title a:hover {
  2356. color: #FF7A5C;
  2357. }
  2358. .site-description {
  2359. color: currentColor;
  2360. font-family: "EB Garamond", serif;
  2361. font-family: var(--font-headings, "EB Garamond", serif);
  2362. }
  2363. body:not(.fse-enabled) .site-title {
  2364. font-size: 2.48832rem;
  2365. }
  2366. body:not(.fse-enabled) .site-description {
  2367. font-size: 2.48832rem;
  2368. }
  2369. .main-navigation {
  2370. color: #444444;
  2371. }
  2372. .main-navigation > div {
  2373. display: none;
  2374. }
  2375. .main-navigation #toggle-menu {
  2376. display: inline-block;
  2377. margin: 0;
  2378. }
  2379. .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  2380. display: block;
  2381. }
  2382. .main-navigation #toggle:focus + #toggle-menu {
  2383. background-color: #FF7A5C;
  2384. outline: inherit;
  2385. text-decoration: underline;
  2386. }
  2387. .main-navigation .dropdown-icon.close {
  2388. display: none;
  2389. }
  2390. .main-navigation #toggle:checked + #toggle-menu .open {
  2391. display: none;
  2392. }
  2393. .main-navigation #toggle:checked + #toggle-menu .close {
  2394. display: inline;
  2395. }
  2396. @media only screen and (min-width: 560px) {
  2397. .main-navigation > div {
  2398. display: inline-block;
  2399. }
  2400. .main-navigation #toggle-menu {
  2401. display: none;
  2402. }
  2403. .main-navigation > div > ul > li > ul {
  2404. display: none;
  2405. }
  2406. }
  2407. .main-navigation > div > ul {
  2408. display: flex;
  2409. flex-wrap: wrap;
  2410. list-style: none;
  2411. margin: 0;
  2412. max-width: none;
  2413. padding-right: 0;
  2414. position: relative;
  2415. /* Sub-menus Flyout */
  2416. }
  2417. .main-navigation > div > ul ul {
  2418. padding-right: 0;
  2419. }
  2420. .main-navigation > div > ul li {
  2421. display: block;
  2422. position: relative;
  2423. width: 100%;
  2424. z-index: 1;
  2425. }
  2426. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2427. cursor: pointer;
  2428. z-index: 99999;
  2429. }
  2430. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2431. cursor: pointer;
  2432. z-index: 99999;
  2433. }
  2434. @media only screen and (min-width: 560px) {
  2435. .main-navigation > div > ul li {
  2436. display: inherit;
  2437. width: inherit;
  2438. /* Submenu display */
  2439. }
  2440. .main-navigation > div > ul li:hover > ul,
  2441. .main-navigation > div > ul li[focus-within] > ul,
  2442. .main-navigation > div > ul li ul:hover,
  2443. .main-navigation > div > ul li ul:focus {
  2444. visibility: visible;
  2445. opacity: 1;
  2446. display: block;
  2447. }
  2448. .main-navigation > div > ul li:hover > ul,
  2449. .main-navigation > div > ul li:focus-within > ul,
  2450. .main-navigation > div > ul li ul:hover,
  2451. .main-navigation > div > ul li ul:focus {
  2452. visibility: visible;
  2453. opacity: 1;
  2454. display: block;
  2455. }
  2456. }
  2457. @media only screen and (min-width: 560px) {
  2458. .main-navigation > div > ul > li > a {
  2459. line-height: 1;
  2460. }
  2461. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2462. content: '';
  2463. display: block;
  2464. height: 0;
  2465. width: 0;
  2466. }
  2467. .main-navigation > div > ul > li > a:before {
  2468. margin-bottom: -0.12em;
  2469. }
  2470. .main-navigation > div > ul > li > a:after {
  2471. margin-top: -0.11em;
  2472. }
  2473. .main-navigation > div > ul > li:first-of-type > a {
  2474. padding-right: 0;
  2475. }
  2476. .main-navigation > div > ul > li:last-of-type > a {
  2477. padding-left: 0;
  2478. }
  2479. }
  2480. .main-navigation > div > ul > li > .sub-menu {
  2481. margin: 0;
  2482. position: relative;
  2483. }
  2484. @media only screen and (min-width: 560px) {
  2485. .main-navigation > div > ul > li > .sub-menu {
  2486. background: #FFFFFF;
  2487. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  2488. right: 0;
  2489. top: 100%;
  2490. min-width: max-content;
  2491. opacity: 0;
  2492. position: absolute;
  2493. transition: all 0.5s ease;
  2494. visibility: hidden;
  2495. }
  2496. }
  2497. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2498. width: 100%;
  2499. }
  2500. .main-navigation a {
  2501. color: #000000;
  2502. display: block;
  2503. font-family: "Work Sans", sans-serif;
  2504. font-family: var(--font-base, "Work Sans", sans-serif);
  2505. font-weight: 600;
  2506. padding: 5px 0;
  2507. }
  2508. @media only screen and (min-width: 560px) {
  2509. .main-navigation a {
  2510. padding: 10px;
  2511. }
  2512. }
  2513. .main-navigation a:link, .main-navigation a:visited {
  2514. color: #000000;
  2515. }
  2516. .main-navigation a:hover {
  2517. color: #FF7A5C;
  2518. }
  2519. .main-navigation .sub-menu {
  2520. list-style: none;
  2521. margin-right: 0;
  2522. /* Reset the counter for each UL */
  2523. counter-reset: nested-list;
  2524. }
  2525. .main-navigation .sub-menu .menu-item a {
  2526. padding-top: 5px;
  2527. padding-bottom: 5px;
  2528. }
  2529. .main-navigation .sub-menu .menu-item a::before {
  2530. /* Increment the dashes */
  2531. counter-increment: nested-list;
  2532. /* Insert dashes with spaces in between */
  2533. content: "– " counters(nested-list, "– ", none);
  2534. }
  2535. @media only screen and (min-width: 560px) {
  2536. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2537. content: "\00a0\25BC";
  2538. display: inline-block;
  2539. font-size: 0.69444rem;
  2540. height: inherit;
  2541. width: inherit;
  2542. }
  2543. }
  2544. .main-navigation .hide-visually {
  2545. position: absolute !important;
  2546. clip: rect(1px, 1px, 1px, 1px);
  2547. padding: 0 !important;
  2548. border: 0 !important;
  2549. height: 1px !important;
  2550. width: 1px !important;
  2551. overflow: hidden;
  2552. }
  2553. body:not(.fse-enabled) .main-navigation a {
  2554. font-size: 0.83333rem;
  2555. }
  2556. .social-navigation > div > ul {
  2557. align-content: center;
  2558. display: flex;
  2559. list-style: none;
  2560. margin: 0;
  2561. padding-right: 0;
  2562. }
  2563. .social-navigation > div > ul > li:first-of-type > a {
  2564. padding-right: 0;
  2565. }
  2566. .social-navigation > div > ul > li:last-of-type > a {
  2567. padding-left: 0;
  2568. }
  2569. .social-navigation a {
  2570. color: #000000;
  2571. display: inline-block;
  2572. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2573. }
  2574. .social-navigation a:hover {
  2575. color: #FF7A5C;
  2576. }
  2577. .social-navigation svg {
  2578. fill: currentColor;
  2579. vertical-align: middle;
  2580. }
  2581. .site-footer {
  2582. overflow: hidden;
  2583. }
  2584. @media only screen and (min-width: 640px) {
  2585. .site-footer {
  2586. align-items: flex-end;
  2587. display: flex;
  2588. flex-wrap: wrap;
  2589. justify-content: space-between;
  2590. }
  2591. }
  2592. .site-info {
  2593. color: #767676;
  2594. font-family: "Work Sans", sans-serif;
  2595. font-family: var(--font-base, "Work Sans", sans-serif);
  2596. font-size: 0.83333rem;
  2597. }
  2598. @media only screen and (min-width: 640px) {
  2599. .site-info {
  2600. order: 1;
  2601. flex: 1 0 50%;
  2602. margin-top: 0;
  2603. margin-bottom: 0;
  2604. }
  2605. }
  2606. .site-info .site-name {
  2607. font-weight: bold;
  2608. }
  2609. .site-info a {
  2610. color: currentColor;
  2611. }
  2612. .site-info a:link, .site-info a:visited {
  2613. color: currentColor;
  2614. }
  2615. .site-info a:hover {
  2616. color: #FF7A5C;
  2617. }
  2618. .footer-navigation {
  2619. display: inline;
  2620. }
  2621. @media only screen and (min-width: 640px) {
  2622. .footer-navigation {
  2623. flex: 1 0 50%;
  2624. order: 2;
  2625. margin-top: 0;
  2626. margin-bottom: 0;
  2627. text-align: left;
  2628. }
  2629. }
  2630. .footer-navigation > div {
  2631. display: inline;
  2632. }
  2633. .footer-navigation .footer-menu {
  2634. color: #767676;
  2635. margin: 0;
  2636. padding-right: 0;
  2637. }
  2638. @media only screen and (min-width: 640px) {
  2639. .footer-navigation .footer-menu {
  2640. display: flex;
  2641. flex-wrap: wrap;
  2642. justify-content: flex-end;
  2643. }
  2644. }
  2645. .footer-navigation .footer-menu > li {
  2646. display: inline;
  2647. }
  2648. .footer-navigation .footer-menu > li:first-of-type > a {
  2649. padding-right: 0;
  2650. }
  2651. .footer-navigation .footer-menu > li:last-of-type {
  2652. padding-left: 0;
  2653. }
  2654. .footer-navigation .footer-menu a {
  2655. font-family: "Work Sans", sans-serif;
  2656. font-family: var(--font-base, "Work Sans", sans-serif);
  2657. font-weight: 600;
  2658. padding: 10px;
  2659. color: currentColor;
  2660. }
  2661. .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
  2662. color: currentColor;
  2663. }
  2664. .footer-navigation .footer-menu a:hover {
  2665. color: #FF7A5C;
  2666. }
  2667. body:not(.fse-enabled) .footer-menu a {
  2668. font-size: 0.83333rem;
  2669. }
  2670. .entry-title {
  2671. font-size: 2.48832rem;
  2672. letter-spacing: normal;
  2673. line-height: 1;
  2674. }
  2675. .entry-meta,
  2676. .entry-footer {
  2677. color: #767676;
  2678. clear: both;
  2679. float: none;
  2680. font-size: 0.83333rem;
  2681. display: block;
  2682. }
  2683. .entry-meta > span,
  2684. .entry-footer > span {
  2685. display: inline-block;
  2686. margin-left: 16px;
  2687. }
  2688. .entry-meta > span > *,
  2689. .entry-footer > span > * {
  2690. display: inline-block;
  2691. vertical-align: middle;
  2692. }
  2693. .entry-meta > span:last-child,
  2694. .entry-footer > span:last-child {
  2695. margin-left: 0;
  2696. }
  2697. .entry-meta > span .published + .updated,
  2698. .entry-footer > span .published + .updated {
  2699. display: none;
  2700. }
  2701. .entry-meta a,
  2702. .entry-footer a {
  2703. color: currentColor;
  2704. }
  2705. .entry-meta a:hover, .entry-meta a:active,
  2706. .entry-footer a:hover,
  2707. .entry-footer a:active {
  2708. color: #FF7A5C;
  2709. }
  2710. .entry-meta .svg-icon,
  2711. .entry-footer .svg-icon {
  2712. fill: currentColor;
  2713. position: relative;
  2714. display: inline-block;
  2715. vertical-align: middle;
  2716. margin-left: calc(0.25 * 16px);
  2717. }
  2718. /**
  2719. * Entry Content
  2720. */
  2721. .entry-content p {
  2722. word-wrap: break-word;
  2723. }
  2724. .entry-content .more-link {
  2725. display: block;
  2726. color: inherit;
  2727. margin-top: 16px;
  2728. }
  2729. @media only screen and (min-width: 560px) {
  2730. .entry-content .more-link {
  2731. margin-top: 32px;
  2732. }
  2733. }
  2734. .entry-content .more-link:after {
  2735. content: "←";
  2736. display: inline-block;
  2737. margin-right: 0.5em;
  2738. }
  2739. .entry-content .more-link:hover {
  2740. text-decoration: none;
  2741. }
  2742. .entry-content > iframe,
  2743. .entry-content > iframe[style],
  2744. .entry-content > fb\:post {
  2745. display: block !important;
  2746. margin-right: auto !important;
  2747. margin-left: auto !important;
  2748. overflow: scroll;
  2749. }
  2750. .home.page.hide-homepage-header.hide-homepage-title .entry-content {
  2751. margin-top: 0;
  2752. padding-top: 0;
  2753. }
  2754. .home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
  2755. margin-top: 32px;
  2756. }
  2757. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
  2758. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
  2759. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
  2760. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
  2761. margin-top: -32px;
  2762. }
  2763. .entry-attachment {
  2764. text-align: center;
  2765. }
  2766. /**
  2767. * Post Thumbnails
  2768. */
  2769. .post-thumbnail {
  2770. text-align: center;
  2771. }
  2772. .post-thumbnail .post-thumbnail-inner {
  2773. display: block;
  2774. }
  2775. /**
  2776. * Author
  2777. */
  2778. /* Author description */
  2779. .site-main > article > .author-bio {
  2780. margin-top: calc(2 * 32px);
  2781. }
  2782. .author-bio .author-title {
  2783. font-size: 2.0736rem;
  2784. }
  2785. /* Next/Previous navigation */
  2786. .post-navigation .meta-nav {
  2787. font-size: 0.83333rem;
  2788. }
  2789. .post-navigation .post-title {
  2790. font-family: "EB Garamond", serif;
  2791. font-family: var(--font-headings, "EB Garamond", serif);
  2792. font-size: 1.44rem;
  2793. font-weight: 600;
  2794. }
  2795. .post-navigation .nav-next,
  2796. .post-navigation .nav-previous {
  2797. margin-top: 32px;
  2798. margin-bottom: 32px;
  2799. }
  2800. .post-navigation .nav-next:first-child,
  2801. .post-navigation .nav-previous:first-child {
  2802. margin-top: 0;
  2803. }
  2804. .post-navigation .nav-next:last-child,
  2805. .post-navigation .nav-previous:last-child {
  2806. margin-bottom: 0;
  2807. }
  2808. .pagination .nav-links {
  2809. justify-content: start;
  2810. margin: 0 calc(-0.66 * 16px);
  2811. }
  2812. .pagination .nav-links > * {
  2813. font-family: "EB Garamond", serif;
  2814. font-family: var(--font-headings, "EB Garamond", serif);
  2815. font-size: 1.2rem;
  2816. font-weight: 600;
  2817. padding-right: calc(0.66 * 16px);
  2818. padding-left: calc(0.66 * 16px);
  2819. }
  2820. .pagination .nav-links .svg-icon {
  2821. display: inline-block;
  2822. vertical-align: middle;
  2823. fill: currentColor;
  2824. }
  2825. @media only screen and (min-width: 560px) {
  2826. .nav-links {
  2827. display: flex;
  2828. justify-content: space-between;
  2829. }
  2830. .nav-links .nav-next,
  2831. .nav-links .nav-previous {
  2832. flex: 0 1 auto;
  2833. margin-bottom: inherit;
  2834. margin-top: inherit;
  2835. max-width: calc(50% - (0.5 * 16px));
  2836. }
  2837. .nav-links .nav-next {
  2838. text-align: left;
  2839. }
  2840. }
  2841. /**
  2842. * Comments Wrapper
  2843. */
  2844. .comments-area > * {
  2845. margin-top: 32px;
  2846. margin-bottom: 32px;
  2847. }
  2848. .comments-area > *:first-child {
  2849. margin-top: 0;
  2850. }
  2851. .comments-area > *:last-child {
  2852. margin-bottom: 0;
  2853. }
  2854. /**
  2855. * Comment Title
  2856. */
  2857. .comments-title {
  2858. font-size: 2.0736rem;
  2859. letter-spacing: normal;
  2860. }
  2861. .comment-reply-title {
  2862. font-size: 1.728rem;
  2863. display: flex;
  2864. justify-content: space-between;
  2865. align-items: center;
  2866. }
  2867. .comment-reply-title small {
  2868. font-size: 1rem;
  2869. font-family: "Work Sans", sans-serif;
  2870. font-family: var(--font-base, "Work Sans", sans-serif);
  2871. letter-spacing: normal;
  2872. line-height: 1;
  2873. }
  2874. /**
  2875. * Comment Lists
  2876. */
  2877. .comment-list {
  2878. border-bottom: 1px solid #DDDDDD;
  2879. padding-right: 0;
  2880. list-style: none;
  2881. }
  2882. .comment-list > li {
  2883. border-top: 1px solid #DDDDDD;
  2884. margin-top: 32px;
  2885. margin-bottom: 32px;
  2886. }
  2887. .comment-list .children {
  2888. list-style: none;
  2889. padding-right: 16px;
  2890. }
  2891. .comment-list .children > li {
  2892. border-top: 1px solid #DDDDDD;
  2893. margin-top: 32px;
  2894. margin-bottom: 32px;
  2895. }
  2896. @media only screen and (min-width: 560px) {
  2897. .comment-list .children {
  2898. padding-right: 32px;
  2899. }
  2900. }
  2901. /**
  2902. * Comment Meta
  2903. */
  2904. .comment-meta {
  2905. margin-left: calc( 32px + (0.5 * 16px));
  2906. }
  2907. .comment-meta .comment-author {
  2908. line-height: 1;
  2909. margin-bottom: 4px;
  2910. padding-left: 40px;
  2911. max-width: calc(100% - 48px);
  2912. }
  2913. @media only screen and (min-width: 560px) {
  2914. .comment-meta .comment-author {
  2915. display: flex;
  2916. align-items: center;
  2917. margin-bottom: 0;
  2918. padding-left: 0;
  2919. }
  2920. }
  2921. .comment-meta .comment-author .fn {
  2922. word-wrap: break-word;
  2923. word-break: break-word;
  2924. hyphens: auto;
  2925. }
  2926. .comment-meta .comment-author .avatar {
  2927. display: block;
  2928. position: absolute;
  2929. left: 0;
  2930. }
  2931. .comment-meta .comment-metadata {
  2932. color: #444444;
  2933. padding-left: 40px;
  2934. }
  2935. @media only screen and (min-width: 560px) {
  2936. .comment-meta .comment-metadata {
  2937. padding-left: 0;
  2938. }
  2939. }
  2940. .comment-meta .comment-metadata a {
  2941. color: currentColor;
  2942. }
  2943. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  2944. color: #FF7A5C;
  2945. }
  2946. @media only screen and (min-width: 560px) {
  2947. .comment-meta {
  2948. margin-left: inherit;
  2949. align-items: center;
  2950. display: flex;
  2951. justify-content: space-between;
  2952. }
  2953. .comment-meta .comment-author {
  2954. display: flex;
  2955. align-items: center;
  2956. max-width: inherit;
  2957. flex: 0 1 auto;
  2958. }
  2959. .comment-meta .comment-author .fn {
  2960. padding-left: 16px;
  2961. }
  2962. .comment-meta .comment-author .avatar {
  2963. margin-left: 16px;
  2964. display: inherit;
  2965. position: relative;
  2966. left: inherit;
  2967. }
  2968. .comment-meta .comment-metadata {
  2969. flex: 0 1 auto;
  2970. }
  2971. }
  2972. .comment-metadata,
  2973. .reply {
  2974. font-size: 0.69444rem;
  2975. line-height: 1;
  2976. }
  2977. .reply {
  2978. text-align: left;
  2979. }
  2980. @media only screen and (min-width: 560px) {
  2981. .reply {
  2982. text-align: right;
  2983. }
  2984. }
  2985. .bypostauthor {
  2986. display: block;
  2987. }
  2988. .says {
  2989. display: none;
  2990. }
  2991. .comment-author .fn,
  2992. .pingback .url,
  2993. .trackback .url {
  2994. font-family: "EB Garamond", serif;
  2995. font-family: var(--font-headings, "EB Garamond", serif);
  2996. }
  2997. /**
  2998. * Comment body
  2999. */
  3000. .comment-body {
  3001. position: relative;
  3002. }
  3003. .comment-body > * {
  3004. margin-top: 32px;
  3005. margin-bottom: 32px;
  3006. }
  3007. .comment-content a {
  3008. word-wrap: break-word;
  3009. }
  3010. /**
  3011. * Pingbacks & Trackbacks
  3012. */
  3013. .pingback .comment-body,
  3014. .trackback .comment-body {
  3015. margin-top: 32px;
  3016. margin-bottom: 32px;
  3017. }
  3018. /**
  3019. * Comment Form
  3020. */
  3021. .comment-respond {
  3022. margin-top: calc(2 * 32px);
  3023. }
  3024. .comment-respond > * {
  3025. margin-top: 16px;
  3026. margin-bottom: 16px;
  3027. }
  3028. .comment-respond > *:first-child {
  3029. margin-top: 0;
  3030. }
  3031. .comment-respond > *:last-child {
  3032. margin-bottom: 0;
  3033. }
  3034. .comment-form > p {
  3035. margin-top: 16px;
  3036. margin-bottom: 16px;
  3037. }
  3038. .comment-form > p:first-of-type {
  3039. margin-top: 0;
  3040. }
  3041. .comment-form > p:last-of-type {
  3042. margin-bottom: 0;
  3043. }
  3044. .comment-form > p label,
  3045. .comment-form > p input[type="email"],
  3046. .comment-form > p input[type="text"],
  3047. .comment-form > p input[type="url"],
  3048. .comment-form > p textarea {
  3049. width: 100%;
  3050. }
  3051. .comment-form > p.comment-form-cookies-consent > label {
  3052. width: auto;
  3053. }
  3054. @media only screen and (min-width: 560px) {
  3055. .comment-form > p {
  3056. display: flex;
  3057. }
  3058. .comment-form > p label {
  3059. width: 25%;
  3060. }
  3061. .comment-form > p.comment-form-cookies-consent {
  3062. margin-right: 25%;
  3063. }
  3064. .comment-form > p.comment-form-cookies-consent > label {
  3065. width: auto;
  3066. display: inline-block;
  3067. }
  3068. .comment-form > p input[type="email"],
  3069. .comment-form > p input[type="text"],
  3070. .comment-form > p input[type="url"],
  3071. .comment-form > p textarea {
  3072. width: 75%;
  3073. }
  3074. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  3075. display: block;
  3076. }
  3077. }
  3078. /**
  3079. * Comment Nav
  3080. */
  3081. .comment-navigation a {
  3082. font-family: "EB Garamond", serif;
  3083. font-family: var(--font-headings, "EB Garamond", serif);
  3084. font-size: 1.2rem;
  3085. font-weight: 600;
  3086. }
  3087. .widget-area {
  3088. flex: 0 0 100%;
  3089. }
  3090. /**
  3091. * Site Pages
  3092. * - Page specific styles
  3093. */
  3094. /**
  3095. * Site Pages
  3096. * - Page specific styles
  3097. */
  3098. .sticky-post {
  3099. color: #FFFFFF;
  3100. background-color: #000000;
  3101. font-family: "EB Garamond", serif;
  3102. font-family: var(--font-headings, "EB Garamond", serif);
  3103. font-weight: bold;
  3104. font-size: 0.83333rem;
  3105. line-height: 1;
  3106. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  3107. }
  3108. .page-title {
  3109. font-size: 1.728rem;
  3110. }
  3111. /**
  3112. * Responsive Logic
  3113. * - Loading this last to respect cascaing rules
  3114. */
  3115. /**
  3116. * Page Layout Styles & Repsonsive Styles
  3117. */
  3118. /* Responsive width-content overrides */
  3119. .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),
  3120. .entry-content > *:not(.wp-block-button),
  3121. .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 {
  3122. max-width: 100%;
  3123. margin-right: auto;
  3124. margin-left: auto;
  3125. }
  3126. @media only screen and (min-width: 560px) {
  3127. .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),
  3128. .entry-content > *:not(.wp-block-button),
  3129. .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 {
  3130. max-width: calc( 560px - 32px);
  3131. }
  3132. }
  3133. @media only screen and (min-width: 640px) {
  3134. .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),
  3135. .entry-content > *:not(.wp-block-button),
  3136. .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 {
  3137. max-width: calc( 640px - 32px);
  3138. }
  3139. }
  3140. @media only screen and (min-width: 782px) {
  3141. .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),
  3142. .entry-content > *:not(.wp-block-button),
  3143. .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 {
  3144. max-width: calc( 782px - 32px);
  3145. }
  3146. }
  3147. @media only screen and (min-width: 1024px) {
  3148. .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),
  3149. .entry-content > *:not(.wp-block-button),
  3150. .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 {
  3151. max-width: calc( 782px - 32px);
  3152. }
  3153. }
  3154. @media only screen and (min-width: 1280px) {
  3155. .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),
  3156. .entry-content > *:not(.wp-block-button),
  3157. .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 {
  3158. max-width: calc( 782px - 32px);
  3159. }
  3160. }
  3161. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3162. margin-right: auto;
  3163. margin-left: auto;
  3164. max-width: 100%;
  3165. /* Matches normal width until desktop breakpoint */
  3166. }
  3167. @media only screen and (min-width: 560px) {
  3168. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3169. max-width: calc( 560px - 32px);
  3170. }
  3171. }
  3172. @media only screen and (min-width: 640px) {
  3173. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3174. max-width: calc( 640px - 32px);
  3175. }
  3176. }
  3177. @media only screen and (min-width: 782px) {
  3178. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3179. max-width: calc( 782px - 32px);
  3180. }
  3181. }
  3182. @media only screen and (min-width: 1024px) {
  3183. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3184. width: calc(calc( 782px - 32px) + 256px);
  3185. max-width: calc(100% - 32px);
  3186. }
  3187. }
  3188. @media only screen and (min-width: 1280px) {
  3189. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3190. width: calc(calc( 782px - 32px) + 256px);
  3191. max-width: calc(100% - 32px);
  3192. }
  3193. }
  3194. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3195. width: calc(100% + 256px);
  3196. max-width: 100%;
  3197. margin-right: auto;
  3198. margin-left: auto;
  3199. }
  3200. @media only screen and (min-width: 560px) {
  3201. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3202. width: calc(calc( 560px - 32px) + 256px);
  3203. max-width: 100%;
  3204. }
  3205. }
  3206. @media only screen and (min-width: 640px) {
  3207. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3208. width: calc(calc( 640px - 32px) + 256px);
  3209. max-width: 100%;
  3210. }
  3211. }
  3212. @media only screen and (min-width: 782px) {
  3213. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3214. width: calc(calc( 782px - 32px) + 256px);
  3215. max-width: 100%;
  3216. }
  3217. }
  3218. @media only screen and (min-width: 1024px) {
  3219. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3220. width: calc(calc( 782px - 32px) + 256px);
  3221. max-width: 100%;
  3222. }
  3223. }
  3224. @media only screen and (min-width: 1280px) {
  3225. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3226. width: calc(calc( 782px - 32px) + 256px);
  3227. max-width: 100%;
  3228. }
  3229. }
  3230. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3231. margin-right: -16px;
  3232. margin-left: -16px;
  3233. width: calc(100% + 32px);
  3234. max-width: calc(100% + 32px);
  3235. /* Letting the box-model do most of the work here. */
  3236. }
  3237. @media only screen and (min-width: 560px) {
  3238. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3239. margin-right: inherit;
  3240. margin-left: inherit;
  3241. width: inherit;
  3242. max-width: inherit;
  3243. }
  3244. }
  3245. .entry-content > .alignright {
  3246. }
  3247. @media only screen and (min-width: 560px) {
  3248. .entry-content > .alignright {
  3249. /*rtl:ignore*/
  3250. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3251. max-width: calc( 0.5 * calc( 560px - 32px));
  3252. margin-left: 16px;
  3253. }
  3254. }
  3255. @media only screen and (min-width: 640px) {
  3256. .entry-content > .alignright {
  3257. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3258. max-width: calc( 0.5 * calc( 640px - 32px));
  3259. }
  3260. }
  3261. @media only screen and (min-width: 782px) {
  3262. .entry-content > .alignright {
  3263. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3264. max-width: calc( 0.5 * calc( 782px - 32px));
  3265. }
  3266. }
  3267. @media only screen and (min-width: 1024px) {
  3268. .entry-content > .alignright {
  3269. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3270. max-width: calc( 0.5 * calc( 782px - 32px));
  3271. }
  3272. }
  3273. @media only screen and (min-width: 1280px) {
  3274. .entry-content > .alignright {
  3275. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3276. max-width: calc( 0.5 * calc( 782px - 32px));
  3277. }
  3278. }
  3279. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3280. }
  3281. @media only screen and (min-width: 560px) {
  3282. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3283. /*rtl:ignore*/
  3284. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3285. max-width: calc( 0.5 * calc( 560px - 32px));
  3286. margin-right: 16px;
  3287. }
  3288. }
  3289. @media only screen and (min-width: 640px) {
  3290. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3291. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3292. max-width: calc( 0.5 * calc( 640px - 32px));
  3293. }
  3294. }
  3295. @media only screen and (min-width: 782px) {
  3296. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3297. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3298. max-width: calc( 0.5 * calc( 782px - 32px));
  3299. }
  3300. }
  3301. @media only screen and (min-width: 1024px) {
  3302. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3303. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3304. max-width: calc( 0.5 * calc( 782px - 32px));
  3305. }
  3306. }
  3307. @media only screen and (min-width: 1280px) {
  3308. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3309. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3310. max-width: calc( 0.5 * calc( 782px - 32px));
  3311. }
  3312. }
  3313. /**
  3314. * Vendors
  3315. * - Styles for 3rd party plugins and WP extensions
  3316. */
  3317. /**
  3318. * Vendors
  3319. * - 3rd-party compatibility styles
  3320. */
  3321. /**
  3322. * Subscription Form
  3323. */
  3324. .wp-block-jetpack-subscriptions form > * {
  3325. margin-top: 21.312px;
  3326. margin-bottom: 21.312px;
  3327. }
  3328. @media only screen and (min-width: 560px) {
  3329. .wp-block-jetpack-subscriptions form > * {
  3330. margin-top: 32px;
  3331. margin-bottom: 32px;
  3332. }
  3333. }
  3334. .wp-block-jetpack-subscriptions form > *:first-child {
  3335. margin-top: 0;
  3336. }
  3337. .wp-block-jetpack-subscriptions form > *:last-child {
  3338. margin-bottom: 0;
  3339. }
  3340. /**
  3341. * Cookies & Consents Banner
  3342. */
  3343. body .widget_eu_cookie_law_widget {
  3344. background: transparent;
  3345. bottom: 0;
  3346. right: 0;
  3347. padding: 8px;
  3348. left: 0;
  3349. }
  3350. body .widget_eu_cookie_law_widget.widget.top {
  3351. bottom: auto;
  3352. top: 0;
  3353. }
  3354. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3355. background: #FFFFFF;
  3356. border: 1px solid #DDDDDD;
  3357. color: #444444;
  3358. font-size: 0.83333rem;
  3359. line-height: inherit;
  3360. padding: 16px;
  3361. }
  3362. @media (max-width: 600px) {
  3363. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3364. padding-bottom: 80px;
  3365. }
  3366. }
  3367. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3368. background: #444444;
  3369. border-color: #111111;
  3370. color: #FFFFFF;
  3371. }
  3372. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3373. background: #FFFFFF;
  3374. color: #444444;
  3375. }
  3376. 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 {
  3377. background: #DDDDDD;
  3378. }
  3379. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3380. margin: 0;
  3381. margin-right: 32px;
  3382. }
  3383. @media (max-width: 600px) {
  3384. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3385. bottom: 16px;
  3386. right: 16px;
  3387. margin: 0;
  3388. }
  3389. }
  3390. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3391. top: 32px;
  3392. }
  3393. @media (max-width: 782px) {
  3394. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3395. top: 46px;
  3396. }
  3397. }
  3398. /**
  3399. * Mailchimp Subscription Form
  3400. */
  3401. .wp-block-jetpack-mailchimp p {
  3402. margin-top: 21.312px;
  3403. margin-bottom: 21.312px;
  3404. }
  3405. @media only screen and (min-width: 560px) {
  3406. .wp-block-jetpack-mailchimp p {
  3407. margin-top: 32px;
  3408. margin-bottom: 32px;
  3409. }
  3410. }
  3411. .wp-block-jetpack-mailchimp p:first-child {
  3412. margin-top: 0;
  3413. }
  3414. .wp-block-jetpack-mailchimp p:last-child {
  3415. margin-bottom: 0;
  3416. }
  3417. .wp-block-jetpack-mailchimp input[type="email"] {
  3418. width: 100%;
  3419. }
  3420. #wp-block-jetpack-mailchimp_consent-text {
  3421. font-size: 0.83333rem;
  3422. }
  3423. /**
  3424. * Business Hours
  3425. */
  3426. .jetpack-business-hours dd {
  3427. padding-right: 0;
  3428. }
  3429. /**
  3430. * Layout Grid
  3431. */
  3432. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3433. margin-top: 21.312px;
  3434. margin-bottom: 21.312px;
  3435. }
  3436. @media only screen and (min-width: 560px) {
  3437. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3438. margin-top: 32px;
  3439. margin-bottom: 32px;
  3440. }
  3441. }
  3442. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
  3443. margin-top: 0;
  3444. }
  3445. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
  3446. margin-bottom: 0;
  3447. }
  3448. /**
  3449. * Map Block
  3450. */
  3451. .mapboxgl-popup-close-button {
  3452. padding: 6px;
  3453. }
  3454. .wp-block-jetpack-map .mapboxgl-popup h3 {
  3455. padding-top: 15px;
  3456. }
  3457. /**
  3458. * Child Theme Extra Styles
  3459. */
  3460. /**
  3461. * Extra Child Theme Styles
  3462. */
  3463. /**
  3464. * Elements
  3465. */
  3466. html {
  3467. font-size: 17px;
  3468. font-weight: 300;
  3469. }
  3470. body {
  3471. font-weight: 300;
  3472. }
  3473. b,
  3474. strong {
  3475. font-weight: 700;
  3476. }
  3477. a {
  3478. text-decoration-color: #FF7A5C;
  3479. }
  3480. a:hover, a:focus {
  3481. text-decoration: none;
  3482. }
  3483. .site-header a:hover,
  3484. .site-header a:focus {
  3485. background: #FFFFFF;
  3486. }
  3487. /**
  3488. * Components
  3489. */
  3490. .site-title,
  3491. .site-description {
  3492. color: #000000;
  3493. text-transform: uppercase;
  3494. line-height: 1;
  3495. max-width: 100%;
  3496. }
  3497. .site-title a,
  3498. .site-description a {
  3499. color: currentColor;
  3500. padding-right: 5px;
  3501. padding-left: 5px;
  3502. margin-right: -5px;
  3503. margin-left: 5px;
  3504. }
  3505. .main-navigation > div > ul > li > a,
  3506. .entry-content a {
  3507. text-decoration: underline;
  3508. text-decoration-color: #FF7A5C;
  3509. }
  3510. .main-navigation > div > ul > li > a:hover,
  3511. .entry-content a:hover {
  3512. text-decoration: none;
  3513. }
  3514. .main-navigation > div > ul > li > a,
  3515. .social-navigation > div > ul > li > a,
  3516. .footer-navigation .footer-menu > li > a {
  3517. padding-right: 0;
  3518. padding-left: 0;
  3519. }
  3520. .main-navigation {
  3521. text-transform: uppercase;
  3522. }
  3523. .sticky-post {
  3524. text-transform: uppercase;
  3525. font-family: "Work Sans", sans-serif;
  3526. font-family: var(--font-base, "Work Sans", sans-serif);
  3527. }
  3528. #main .page-header {
  3529. margin-top: 32px;
  3530. }
  3531. #main .page-header .page-title {
  3532. font-size: 1rem;
  3533. font-family: "Work Sans", sans-serif;
  3534. font-family: var(--font-base, "Work Sans", sans-serif);
  3535. font-weight: 500;
  3536. text-transform: uppercase;
  3537. line-height: 1;
  3538. }
  3539. .entry-title,
  3540. .author-bio .author-title,
  3541. .post-navigation .post-title,
  3542. .comment-reply-title {
  3543. font-size: 2.48832rem;
  3544. letter-spacing: normal;
  3545. line-height: 1;
  3546. text-transform: uppercase;
  3547. }
  3548. .entry-meta,
  3549. .entry-footer {
  3550. text-transform: uppercase;
  3551. font-weight: 500;
  3552. letter-spacing: .1em;
  3553. }
  3554. .entry-meta > span,
  3555. .entry-footer > span {
  3556. display: inline;
  3557. }
  3558. .entry-meta a,
  3559. .entry-footer a {
  3560. text-decoration-color: currentColor;
  3561. }
  3562. .nav-links .meta-nav {
  3563. text-transform: uppercase;
  3564. font-weight: 500;
  3565. letter-spacing: .1em;
  3566. }
  3567. .post-navigation .post-title {
  3568. font-weight: 300;
  3569. }
  3570. .footer-navigation,
  3571. .footer-navigation .footer-menu a {
  3572. font-weight: 500;
  3573. text-transform: uppercase;
  3574. text-decoration-color: currentColor;
  3575. }
  3576. .site-info a {
  3577. text-decoration-color: currentColor;
  3578. }
  3579. .imprint {
  3580. font-weight: 500;
  3581. }
  3582. .has-drop-cap:not(:focus):first-letter {
  3583. color: #000000;
  3584. }
  3585. /**
  3586. * Blocks
  3587. */
  3588. button,
  3589. .button,
  3590. input[type="submit"],
  3591. a.wp-block-button__link,
  3592. a.wp-block-file__button {
  3593. font-weight: 800;
  3594. text-transform: uppercase;
  3595. text-decoration: none;
  3596. }
  3597. .wp-block-cover .wp-block-cover__inner-container a,
  3598. .wp-block-cover .wp-block-cover-image-text a,
  3599. .wp-block-cover .wp-block-cover-text a,
  3600. .wp-block-cover-image .wp-block-cover__inner-container a,
  3601. .wp-block-cover-image .wp-block-cover-image-text a,
  3602. .wp-block-cover-image .wp-block-cover-text a {
  3603. text-decoration-color: currentColor;
  3604. }
  3605. .wp-block-cover .wp-block-cover__inner-container a:hover, .wp-block-cover .wp-block-cover__inner-container a:active,
  3606. .wp-block-cover .wp-block-cover-image-text a:hover,
  3607. .wp-block-cover .wp-block-cover-image-text a:active,
  3608. .wp-block-cover .wp-block-cover-text a:hover,
  3609. .wp-block-cover .wp-block-cover-text a:active,
  3610. .wp-block-cover-image .wp-block-cover__inner-container a:hover,
  3611. .wp-block-cover-image .wp-block-cover__inner-container a:active,
  3612. .wp-block-cover-image .wp-block-cover-image-text a:hover,
  3613. .wp-block-cover-image .wp-block-cover-image-text a:active,
  3614. .wp-block-cover-image .wp-block-cover-text a:hover,
  3615. .wp-block-cover-image .wp-block-cover-text a:active {
  3616. background-color: transparent;
  3617. }
  3618. .wp-block-latest-posts > li > a {
  3619. text-transform: uppercase;
  3620. }
  3621. .wp-block-newspack-blocks-homepage-articles article .entry-title {
  3622. text-transform: none;
  3623. }
  3624. .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  3625. text-decoration-color: #FF7A5C;
  3626. }
  3627. .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus {
  3628. text-decoration: none;
  3629. }
  3630. @media only screen and (max-width: 559px) {
  3631. .site-header {
  3632. position: relative;
  3633. }
  3634. .site-header .site-branding {
  3635. padding-left: 112px;
  3636. }
  3637. .site-title,
  3638. .site-description {
  3639. font-size: 1.44rem;
  3640. hyphens: auto;
  3641. }
  3642. #toggle-menu {
  3643. position: absolute;
  3644. top: 16px;
  3645. left: 16px;
  3646. }
  3647. }
  3648. @media only screen and (min-width: 560px) {
  3649. .site-header.alignfull {
  3650. align-items: flex-end;
  3651. display: flex;
  3652. flex-wrap: wrap;
  3653. justify-content: space-between;
  3654. max-width: 100vw;
  3655. padding-right: 32px;
  3656. padding-left: 32px;
  3657. margin-bottom: 0;
  3658. width: 100%;
  3659. z-index: 10;
  3660. }
  3661. .site-branding {
  3662. margin-bottom: 0;
  3663. flex: 6 1 70%;
  3664. }
  3665. .main-navigation {
  3666. align-self: flex-start;
  3667. flex: 1 1 auto;
  3668. margin: 0;
  3669. }
  3670. .social-navigation {
  3671. margin: 0;
  3672. width: auto;
  3673. }
  3674. .main-navigation > div > ul {
  3675. display: inherit;
  3676. }
  3677. .main-navigation > div > ul > li > .sub-menu {
  3678. right: inherit;
  3679. left: 0;
  3680. }
  3681. .wp-block-columns.alignfull {
  3682. padding-right: 32px;
  3683. padding-left: 32px;
  3684. }
  3685. }
  3686. @media only screen and (min-width: 640px) {
  3687. .site-header.alignfull {
  3688. position: fixed;
  3689. }
  3690. .site-branding {
  3691. position: relative;
  3692. z-index: 99;
  3693. }
  3694. .main-navigation,
  3695. .social-navigation {
  3696. margin-top: 0;
  3697. }
  3698. .main-navigation {
  3699. z-index: 999;
  3700. }
  3701. .social-navigation {
  3702. position: fixed;
  3703. right: 32px;
  3704. bottom: 32px;
  3705. z-index: 888;
  3706. }
  3707. .social-navigation > div > ul {
  3708. flex-direction: column-reverse;
  3709. }
  3710. .main-navigation > div > ul {
  3711. display: block;
  3712. }
  3713. .content-area {
  3714. margin-top: 160px;
  3715. position: relative;
  3716. z-index: 2;
  3717. }
  3718. .hide-homepage-header .content-area {
  3719. margin-top: 0;
  3720. }
  3721. .nav-links {
  3722. display: block;
  3723. }
  3724. .nav-links .nav-next,
  3725. .nav-links .nav-previous {
  3726. max-width: 100%;
  3727. margin-bottom: 32px;
  3728. }
  3729. .nav-links .nav-next {
  3730. text-align: right;
  3731. }
  3732. }
  3733. /**
  3734. * AMP Support
  3735. */
  3736. @media only screen and (min-width: 640px) {
  3737. html[amp] .site-header {
  3738. position: sticky;
  3739. top: 0;
  3740. }
  3741. html[amp] .logged-in .site-header {
  3742. top: 32px;
  3743. }
  3744. html[amp] .content-area {
  3745. margin: 0;
  3746. }
  3747. }
  3748. @media screen and (max-width: 782px) {
  3749. html[amp] .logged-in .site-header {
  3750. top: 46px;
  3751. }
  3752. }
  3753. /**
  3754. * Search block
  3755. */
  3756. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  3757. border-radius: 9999px;
  3758. }
  3759. .wp-block-search.wp-block-search__button-inside .wp-block-search__input {
  3760. background: transparent;
  3761. }
  3762. .wp-block-search .wp-block-search__button {
  3763. border-radius: 9999px;
  3764. }
  3765. .wp-block-search .wp-block-search__button.has-icon {
  3766. min-width: calc(2* 16px + 1rem + 4px);
  3767. min-height: calc(2* 16px + 1rem + 4px);
  3768. }
  3769. .wp-block-search .wp-block-search__input {
  3770. margin-left: calc( .1 * 11.6px);
  3771. border-radius: 9999px;
  3772. }