style.css 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425
  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.25
  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: left;
  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. left: 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-left: auto;
  760. margin-right: 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-right: 0;
  768. padding-bottom: 32px;
  769. padding-left: 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-right: auto;
  813. margin-bottom: 32px;
  814. margin-left: 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: left;
  917. margin-top: 32px;
  918. margin-left: 16px;
  919. margin-right: 16px;
  920. }
  921. .entry-content > *.alignfull + .alignright {
  922. float: right;
  923. margin-top: 32px;
  924. margin-left: 16px;
  925. margin-right: 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-left: 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-left: 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-left: 0.5em;
  1021. margin-right: 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-right: 32px;
  1079. }
  1080. .wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
  1081. margin-left: 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-right: 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-left: 16px;
  1313. padding-right: 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: left;
  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: right;
  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-left: 16px;
  1401. padding-right: 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-left: 16px;
  1414. margin-right: 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-left: auto;
  1440. margin-right: 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-left: 16px;
  1468. padding-right: 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-left: 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-left: 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-left: 16px;
  1603. padding-right: 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-left: 0;
  1608. padding-right: 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-left: 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: right;
  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-left: 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-left: 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-left: 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-left-color: #000000;
  1817. margin: 32px 0;
  1818. padding-left: 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-right-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-right: 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-left: auto;
  1953. margin-right: 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-left: 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-left: 0;
  1987. margin-right: 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. /*rtl:ignore*/
  2044. text-align: left;
  2045. /*rtl:ignore*/
  2046. float: left;
  2047. margin-top: 0;
  2048. /*rtl:ignore*/
  2049. margin-right: 16px;
  2050. margin-bottom: 32px;
  2051. }
  2052. .entry-content > .alignleft {
  2053. /*rtl:ignore*/
  2054. float: left;
  2055. }
  2056. /**
  2057. * .aligncenter
  2058. */
  2059. .aligncenter {
  2060. clear: both;
  2061. display: block;
  2062. float: none;
  2063. margin-right: auto;
  2064. margin-left: auto;
  2065. text-align: center;
  2066. }
  2067. /**
  2068. * .alignright
  2069. */
  2070. .alignright {
  2071. /*rtl:ignore*/
  2072. float: right;
  2073. margin-top: 0;
  2074. margin-bottom: 32px;
  2075. /*rtl:ignore*/
  2076. margin-left: 16px;
  2077. }
  2078. .entry-content > .alignright {
  2079. /*rtl:ignore*/
  2080. float: right;
  2081. }
  2082. .entry-content * > .alignleft + *,
  2083. .entry-content * > .alignright + * {
  2084. margin-top: 0;
  2085. }
  2086. /**
  2087. * .aligndefault
  2088. */
  2089. /**
  2090. * .alignwide
  2091. */
  2092. .alignwide {
  2093. clear: both;
  2094. }
  2095. /**
  2096. * .alignfull
  2097. */
  2098. .alignfull {
  2099. clear: both;
  2100. }
  2101. .has-left-content {
  2102. justify-content: flex-start;
  2103. }
  2104. .has-right-content {
  2105. justify-content: flex-end;
  2106. }
  2107. .has-parallax {
  2108. background-attachment: fixed;
  2109. }
  2110. .has-primary-color {
  2111. color: #000000;
  2112. }
  2113. .has-secondary-color {
  2114. color: #FF7A5C;
  2115. }
  2116. .has-foreground-color {
  2117. color: #444444;
  2118. }
  2119. .has-foreground-light-color {
  2120. color: #767676;
  2121. }
  2122. .has-foreground-dark-color {
  2123. color: #111111;
  2124. }
  2125. .has-background-light-color {
  2126. color: #FAFAFA;
  2127. }
  2128. .has-background-dark-color {
  2129. color: #DDDDDD;
  2130. }
  2131. .has-background-dim,
  2132. .has-background-color {
  2133. color: #FFFFFF;
  2134. }
  2135. .has-background p:not(.has-text-color),
  2136. .has-background h1:not(.has-text-color),
  2137. .has-background h2:not(.has-text-color),
  2138. .has-background h3:not(.has-text-color),
  2139. .has-background h4:not(.has-text-color),
  2140. .has-background h5:not(.has-text-color),
  2141. .has-background h6:not(.has-text-color) {
  2142. color: currentcolor;
  2143. }
  2144. .has-primary-background-color,
  2145. .has-primary-background-color.has-background-dim {
  2146. background-color: #000000;
  2147. }
  2148. .has-primary-background-color:not(.has-text-color),
  2149. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  2150. color: #FFFFFF;
  2151. }
  2152. .has-secondary-background-color,
  2153. .has-secondary-background-color.has-background-dim {
  2154. background-color: #FF7A5C;
  2155. }
  2156. .has-secondary-background-color:not(.has-text-color),
  2157. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  2158. color: #FFFFFF;
  2159. }
  2160. .has-background-dim,
  2161. .has-foreground-background-color,
  2162. .has-foreground-background-color.has-background-dim {
  2163. background-color: #444444;
  2164. }
  2165. .has-background-dim,
  2166. .has-foreground-background-color:not(.has-text-color),
  2167. .has-foreground-background-color.has-background-dim:not(.has-text-color) {
  2168. color: #FFFFFF;
  2169. }
  2170. .has-foreground-light-background-color,
  2171. .has-foreground-light-background-color.has-background-dim {
  2172. background-color: #767676;
  2173. }
  2174. .has-foreground-light-background-color:not(.has-text-color),
  2175. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  2176. color: #FFFFFF;
  2177. }
  2178. .has-foreground-dark-background-color,
  2179. .has-foreground-dark-background-color.has-background-dim {
  2180. background-color: #111111;
  2181. }
  2182. .has-foreground-dark-background-color:not(.has-text-color),
  2183. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  2184. color: #FFFFFF;
  2185. }
  2186. .has-background-light-background-color,
  2187. .has-background-light-background-color.has-background-dim {
  2188. background-color: #FAFAFA;
  2189. }
  2190. .has-background-light-background-color:not(.has-text-color),
  2191. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  2192. color: #444444;
  2193. }
  2194. .has-background-dark-background-color,
  2195. .has-background-dark-background-color.has-background-dim {
  2196. background-color: #DDDDDD;
  2197. }
  2198. .has-background-dark-background-color:not(.has-text-color),
  2199. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  2200. color: #444444;
  2201. }
  2202. .has-background-background-color,
  2203. .has-background-background-color.has-background-dim {
  2204. background-color: #FFFFFF;
  2205. }
  2206. .has-background-background-color:not(.has-text-color),
  2207. .has-background-background-color.has-background-dim:not(.has-text-color) {
  2208. color: #444444;
  2209. }
  2210. .is-small-text,
  2211. .has-small-font-size {
  2212. font-size: 0.83333rem;
  2213. }
  2214. .is-regular-text,
  2215. .has-regular-font-size,
  2216. .has-normal-font-size,
  2217. .has-medium-font-size {
  2218. font-size: 1rem;
  2219. }
  2220. .is-large-text,
  2221. .has-large-font-size {
  2222. font-size: 1.44rem;
  2223. line-height: 1;
  2224. }
  2225. .is-larger-text,
  2226. .has-larger-font-size,
  2227. .has-huge-font-size {
  2228. font-size: 1.728rem;
  2229. line-height: 1;
  2230. }
  2231. .has-drop-cap:not(:focus)::first-letter {
  2232. font-family: "EB Garamond", serif;
  2233. font-family: var(--font-headings, "EB Garamond", serif);
  2234. font-size: calc(2 * 2.98598rem);
  2235. font-weight: 400;
  2236. line-height: 0.66;
  2237. text-transform: uppercase;
  2238. font-style: normal;
  2239. float: left;
  2240. margin: 0.1em 0.1em 0 0;
  2241. }
  2242. .has-drop-cap:not(:focus)::after {
  2243. content: "";
  2244. display: table;
  2245. clear: both;
  2246. padding-top: 14px;
  2247. }
  2248. .desktop-only {
  2249. display: none;
  2250. }
  2251. @media only screen and (min-width: 560px) {
  2252. .desktop-only {
  2253. display: block;
  2254. }
  2255. }
  2256. /**
  2257. * Spacing Overrides
  2258. */
  2259. /*
  2260. * Margins
  2261. */
  2262. .margin-top-none {
  2263. margin-top: 0 !important;
  2264. }
  2265. .margin-top-half {
  2266. margin-top: 16px !important;
  2267. }
  2268. .margin-top-default {
  2269. margin-top: 32px !important;
  2270. }
  2271. .margin-right-none {
  2272. /*rtl:ignore*/
  2273. margin-right: 0 !important;
  2274. }
  2275. .margin-right-half {
  2276. /*rtl:ignore*/
  2277. margin-right: 16px !important;
  2278. }
  2279. .margin-right-default {
  2280. /*rtl:ignore*/
  2281. margin-right: 32px !important;
  2282. }
  2283. .margin-bottom-none {
  2284. margin-bottom: 0 !important;
  2285. }
  2286. .margin-bottom-half {
  2287. margin-bottom: 16px !important;
  2288. }
  2289. .margin-bottom-default {
  2290. margin-bottom: 32px !important;
  2291. }
  2292. .margin-left-none {
  2293. /*rtl:ignore*/
  2294. margin-left: 0 !important;
  2295. }
  2296. .margin-left-half {
  2297. /*rtl:ignore*/
  2298. margin-left: 16px !important;
  2299. }
  2300. .margin-left-default {
  2301. /*rtl:ignore*/
  2302. margin-left: 32px !important;
  2303. }
  2304. /*
  2305. * Padding
  2306. */
  2307. .padding-top-none {
  2308. padding-top: 0 !important;
  2309. }
  2310. .padding-top-half {
  2311. padding-top: 16px !important;
  2312. }
  2313. .padding-top-default {
  2314. padding-top: 32px !important;
  2315. }
  2316. .padding-right-none {
  2317. /*rtl:ignore*/
  2318. padding-right: 0 !important;
  2319. }
  2320. .padding-right-half {
  2321. /*rtl:ignore*/
  2322. padding-right: 16px !important;
  2323. }
  2324. .padding-right-default {
  2325. /*rtl:ignore*/
  2326. padding-right: 32px !important;
  2327. }
  2328. .padding-bottom-none {
  2329. padding-bottom: 0 !important;
  2330. }
  2331. .padding-bottom-half {
  2332. padding-bottom: 16px !important;
  2333. }
  2334. .padding-bottom-default {
  2335. padding-bottom: 32px !important;
  2336. }
  2337. .padding-left-none {
  2338. /*rtl:ignore*/
  2339. padding-left: 0 !important;
  2340. }
  2341. .padding-left-half {
  2342. /*rtl:ignore*/
  2343. padding-left: 16px !important;
  2344. }
  2345. .padding-left-default {
  2346. /*rtl:ignore*/
  2347. padding-left: 32px !important;
  2348. }
  2349. /**
  2350. * Components
  2351. * - Similar to Blocks but exist outside of the "current" editor context
  2352. */
  2353. /*
  2354. * Components
  2355. * - Similar to Blocks but exist outside of the "current" editor context
  2356. */
  2357. .site-branding {
  2358. color: #767676;
  2359. }
  2360. .site-title {
  2361. color: #000000;
  2362. font-family: "EB Garamond", serif;
  2363. font-family: var(--font-headings, "EB Garamond", serif);
  2364. letter-spacing: normal;
  2365. line-height: 1;
  2366. }
  2367. .site-title a {
  2368. color: currentColor;
  2369. font-weight: normal;
  2370. }
  2371. .site-title a:link, .site-title a:visited {
  2372. color: currentColor;
  2373. }
  2374. .site-title a:hover {
  2375. color: #FF7A5C;
  2376. }
  2377. .site-description {
  2378. color: currentColor;
  2379. font-family: "EB Garamond", serif;
  2380. font-family: var(--font-headings, "EB Garamond", serif);
  2381. }
  2382. body:not(.fse-enabled) .site-title {
  2383. font-size: 2.48832rem;
  2384. }
  2385. body:not(.fse-enabled) .site-description {
  2386. font-size: 2.48832rem;
  2387. }
  2388. .main-navigation {
  2389. color: #444444;
  2390. }
  2391. .main-navigation > div {
  2392. display: none;
  2393. }
  2394. .main-navigation #toggle-menu {
  2395. display: inline-block;
  2396. margin: 0;
  2397. }
  2398. .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  2399. display: block;
  2400. }
  2401. .main-navigation #toggle:focus + #toggle-menu {
  2402. background-color: #FF7A5C;
  2403. outline: inherit;
  2404. text-decoration: underline;
  2405. }
  2406. .main-navigation .dropdown-icon.close {
  2407. display: none;
  2408. }
  2409. .main-navigation #toggle:checked + #toggle-menu .open {
  2410. display: none;
  2411. }
  2412. .main-navigation #toggle:checked + #toggle-menu .close {
  2413. display: inline;
  2414. }
  2415. @media only screen and (min-width: 560px) {
  2416. .main-navigation > div {
  2417. display: inline-block;
  2418. }
  2419. .main-navigation #toggle-menu {
  2420. display: none;
  2421. }
  2422. .main-navigation > div > ul > li > ul {
  2423. display: none;
  2424. }
  2425. }
  2426. .main-navigation > div > ul {
  2427. display: flex;
  2428. flex-wrap: wrap;
  2429. list-style: none;
  2430. margin: 0;
  2431. max-width: none;
  2432. padding-left: 0;
  2433. position: relative;
  2434. /* Sub-menus Flyout */
  2435. }
  2436. .main-navigation > div > ul ul {
  2437. padding-left: 0;
  2438. }
  2439. .main-navigation > div > ul li {
  2440. display: block;
  2441. position: relative;
  2442. width: 100%;
  2443. z-index: 1;
  2444. }
  2445. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2446. cursor: pointer;
  2447. z-index: 99999;
  2448. }
  2449. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2450. cursor: pointer;
  2451. z-index: 99999;
  2452. }
  2453. @media only screen and (min-width: 560px) {
  2454. .main-navigation > div > ul li {
  2455. display: inherit;
  2456. width: inherit;
  2457. /* Submenu display */
  2458. }
  2459. .main-navigation > div > ul li:hover > ul,
  2460. .main-navigation > div > ul li[focus-within] > ul,
  2461. .main-navigation > div > ul li ul:hover,
  2462. .main-navigation > div > ul li ul:focus {
  2463. visibility: visible;
  2464. opacity: 1;
  2465. display: block;
  2466. }
  2467. .main-navigation > div > ul li:hover > ul,
  2468. .main-navigation > div > ul li:focus-within > ul,
  2469. .main-navigation > div > ul li ul:hover,
  2470. .main-navigation > div > ul li ul:focus {
  2471. visibility: visible;
  2472. opacity: 1;
  2473. display: block;
  2474. }
  2475. }
  2476. @media only screen and (min-width: 560px) {
  2477. .main-navigation > div > ul > li > a {
  2478. line-height: 1;
  2479. }
  2480. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2481. content: '';
  2482. display: block;
  2483. height: 0;
  2484. width: 0;
  2485. }
  2486. .main-navigation > div > ul > li > a:before {
  2487. margin-bottom: -0.12em;
  2488. }
  2489. .main-navigation > div > ul > li > a:after {
  2490. margin-top: -0.11em;
  2491. }
  2492. .main-navigation > div > ul > li:first-of-type > a {
  2493. padding-left: 0;
  2494. }
  2495. .main-navigation > div > ul > li:last-of-type > a {
  2496. padding-right: 0;
  2497. }
  2498. }
  2499. .main-navigation > div > ul > li > .sub-menu {
  2500. margin: 0;
  2501. position: relative;
  2502. }
  2503. @media only screen and (min-width: 560px) {
  2504. .main-navigation > div > ul > li > .sub-menu {
  2505. background: #FFFFFF;
  2506. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  2507. left: 0;
  2508. top: 100%;
  2509. min-width: max-content;
  2510. opacity: 0;
  2511. position: absolute;
  2512. transition: all 0.5s ease;
  2513. visibility: hidden;
  2514. }
  2515. }
  2516. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2517. width: 100%;
  2518. }
  2519. .main-navigation a {
  2520. color: #000000;
  2521. display: block;
  2522. font-family: "Work Sans", sans-serif;
  2523. font-family: var(--font-base, "Work Sans", sans-serif);
  2524. font-weight: 600;
  2525. padding: 5px 0;
  2526. }
  2527. @media only screen and (min-width: 560px) {
  2528. .main-navigation a {
  2529. padding: 10px;
  2530. }
  2531. }
  2532. .main-navigation a:link, .main-navigation a:visited {
  2533. color: #000000;
  2534. }
  2535. .main-navigation a:hover {
  2536. color: #FF7A5C;
  2537. }
  2538. .main-navigation .sub-menu {
  2539. list-style: none;
  2540. margin-left: 0;
  2541. /* Reset the counter for each UL */
  2542. counter-reset: nested-list;
  2543. }
  2544. .main-navigation .sub-menu .menu-item a {
  2545. padding-top: 5px;
  2546. padding-bottom: 5px;
  2547. }
  2548. .main-navigation .sub-menu .menu-item a::before {
  2549. /* Increment the dashes */
  2550. counter-increment: nested-list;
  2551. /* Insert dashes with spaces in between */
  2552. content: "– " counters(nested-list, "– ", none);
  2553. }
  2554. @media only screen and (min-width: 560px) {
  2555. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2556. content: "\00a0\25BC";
  2557. display: inline-block;
  2558. font-size: 0.69444rem;
  2559. height: inherit;
  2560. width: inherit;
  2561. }
  2562. }
  2563. .main-navigation .hide-visually {
  2564. position: absolute !important;
  2565. clip: rect(1px, 1px, 1px, 1px);
  2566. padding: 0 !important;
  2567. border: 0 !important;
  2568. height: 1px !important;
  2569. width: 1px !important;
  2570. overflow: hidden;
  2571. }
  2572. body:not(.fse-enabled) .main-navigation a {
  2573. font-size: 0.83333rem;
  2574. }
  2575. .social-navigation > div > ul {
  2576. align-content: center;
  2577. display: flex;
  2578. list-style: none;
  2579. margin: 0;
  2580. padding-left: 0;
  2581. }
  2582. .social-navigation > div > ul > li:first-of-type > a {
  2583. padding-left: 0;
  2584. }
  2585. .social-navigation > div > ul > li:last-of-type > a {
  2586. padding-right: 0;
  2587. }
  2588. .social-navigation a {
  2589. color: #000000;
  2590. display: inline-block;
  2591. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2592. }
  2593. .social-navigation a:hover {
  2594. color: #FF7A5C;
  2595. }
  2596. .social-navigation svg {
  2597. fill: currentColor;
  2598. vertical-align: middle;
  2599. }
  2600. .site-footer {
  2601. overflow: hidden;
  2602. }
  2603. @media only screen and (min-width: 640px) {
  2604. .site-footer {
  2605. align-items: flex-end;
  2606. display: flex;
  2607. flex-wrap: wrap;
  2608. justify-content: space-between;
  2609. }
  2610. }
  2611. .site-info {
  2612. color: #767676;
  2613. font-family: "Work Sans", sans-serif;
  2614. font-family: var(--font-base, "Work Sans", sans-serif);
  2615. font-size: 0.83333rem;
  2616. }
  2617. @media only screen and (min-width: 640px) {
  2618. .site-info {
  2619. order: 1;
  2620. flex: 1 0 50%;
  2621. margin-top: 0;
  2622. margin-bottom: 0;
  2623. }
  2624. }
  2625. .site-info .site-name {
  2626. font-weight: bold;
  2627. }
  2628. .site-info a {
  2629. color: currentColor;
  2630. }
  2631. .site-info a:link, .site-info a:visited {
  2632. color: currentColor;
  2633. }
  2634. .site-info a:hover {
  2635. color: #FF7A5C;
  2636. }
  2637. .footer-navigation {
  2638. display: inline;
  2639. }
  2640. @media only screen and (min-width: 640px) {
  2641. .footer-navigation {
  2642. flex: 1 0 50%;
  2643. order: 2;
  2644. margin-top: 0;
  2645. margin-bottom: 0;
  2646. text-align: right;
  2647. }
  2648. }
  2649. .footer-navigation > div {
  2650. display: inline;
  2651. }
  2652. .footer-navigation .footer-menu {
  2653. color: #767676;
  2654. margin: 0;
  2655. padding-left: 0;
  2656. }
  2657. @media only screen and (min-width: 640px) {
  2658. .footer-navigation .footer-menu {
  2659. display: flex;
  2660. flex-wrap: wrap;
  2661. justify-content: flex-end;
  2662. }
  2663. }
  2664. .footer-navigation .footer-menu > li {
  2665. display: inline;
  2666. }
  2667. .footer-navigation .footer-menu > li:first-of-type > a {
  2668. padding-left: 0;
  2669. }
  2670. .footer-navigation .footer-menu > li:last-of-type {
  2671. padding-right: 0;
  2672. }
  2673. .footer-navigation .footer-menu a {
  2674. font-family: "Work Sans", sans-serif;
  2675. font-family: var(--font-base, "Work Sans", sans-serif);
  2676. font-weight: 600;
  2677. padding: 10px;
  2678. color: currentColor;
  2679. }
  2680. .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
  2681. color: currentColor;
  2682. }
  2683. .footer-navigation .footer-menu a:hover {
  2684. color: #FF7A5C;
  2685. }
  2686. body:not(.fse-enabled) .footer-menu a {
  2687. font-size: 0.83333rem;
  2688. }
  2689. .entry-title {
  2690. font-size: 2.48832rem;
  2691. letter-spacing: normal;
  2692. line-height: 1;
  2693. }
  2694. .entry-meta,
  2695. .entry-footer {
  2696. color: #767676;
  2697. clear: both;
  2698. float: none;
  2699. font-size: 0.83333rem;
  2700. display: block;
  2701. }
  2702. .entry-meta > span,
  2703. .entry-footer > span {
  2704. display: inline-block;
  2705. margin-right: 16px;
  2706. }
  2707. .entry-meta > span > *,
  2708. .entry-footer > span > * {
  2709. display: inline-block;
  2710. vertical-align: middle;
  2711. }
  2712. .entry-meta > span:last-child,
  2713. .entry-footer > span:last-child {
  2714. margin-right: 0;
  2715. }
  2716. .entry-meta > span .published + .updated,
  2717. .entry-footer > span .published + .updated {
  2718. display: none;
  2719. }
  2720. .entry-meta a,
  2721. .entry-footer a {
  2722. color: currentColor;
  2723. }
  2724. .entry-meta a:hover, .entry-meta a:active,
  2725. .entry-footer a:hover,
  2726. .entry-footer a:active {
  2727. color: #FF7A5C;
  2728. }
  2729. .entry-meta .svg-icon,
  2730. .entry-footer .svg-icon {
  2731. fill: currentColor;
  2732. position: relative;
  2733. display: inline-block;
  2734. vertical-align: middle;
  2735. margin-right: calc(0.25 * 16px);
  2736. }
  2737. /**
  2738. * Entry Content
  2739. */
  2740. .entry-content p {
  2741. word-wrap: break-word;
  2742. }
  2743. .entry-content .more-link {
  2744. display: block;
  2745. color: inherit;
  2746. margin-top: 16px;
  2747. }
  2748. @media only screen and (min-width: 560px) {
  2749. .entry-content .more-link {
  2750. margin-top: 32px;
  2751. }
  2752. }
  2753. .entry-content .more-link:after {
  2754. content: "→" /*rtl:"←"*/;
  2755. display: inline-block;
  2756. margin-left: 0.5em;
  2757. }
  2758. .entry-content .more-link:hover {
  2759. text-decoration: none;
  2760. }
  2761. .entry-content > iframe,
  2762. .entry-content > iframe[style],
  2763. .entry-content > fb\:post {
  2764. display: block !important;
  2765. margin-left: auto !important;
  2766. margin-right: auto !important;
  2767. overflow: scroll;
  2768. }
  2769. .home.page.hide-homepage-header.hide-homepage-title .entry-content {
  2770. margin-top: 0;
  2771. padding-top: 0;
  2772. }
  2773. .home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
  2774. margin-top: 32px;
  2775. }
  2776. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
  2777. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
  2778. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
  2779. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
  2780. margin-top: -32px;
  2781. }
  2782. .entry-attachment {
  2783. text-align: center;
  2784. }
  2785. /**
  2786. * Post Thumbnails
  2787. */
  2788. .post-thumbnail {
  2789. text-align: center;
  2790. }
  2791. .post-thumbnail .post-thumbnail-inner {
  2792. display: block;
  2793. }
  2794. /**
  2795. * Author
  2796. */
  2797. /* Author description */
  2798. .site-main > article > .author-bio {
  2799. margin-top: calc(2 * 32px);
  2800. }
  2801. .author-bio .author-title {
  2802. font-size: 2.0736rem;
  2803. }
  2804. /* Next/Previous navigation */
  2805. .post-navigation .meta-nav {
  2806. font-size: 0.83333rem;
  2807. }
  2808. .post-navigation .post-title {
  2809. font-family: "EB Garamond", serif;
  2810. font-family: var(--font-headings, "EB Garamond", serif);
  2811. font-size: 1.44rem;
  2812. font-weight: 600;
  2813. }
  2814. .post-navigation .nav-next,
  2815. .post-navigation .nav-previous {
  2816. margin-top: 32px;
  2817. margin-bottom: 32px;
  2818. }
  2819. .post-navigation .nav-next:first-child,
  2820. .post-navigation .nav-previous:first-child {
  2821. margin-top: 0;
  2822. }
  2823. .post-navigation .nav-next:last-child,
  2824. .post-navigation .nav-previous:last-child {
  2825. margin-bottom: 0;
  2826. }
  2827. .pagination .nav-links {
  2828. justify-content: start;
  2829. margin: 0 calc(-0.66 * 16px);
  2830. }
  2831. .pagination .nav-links > * {
  2832. font-family: "EB Garamond", serif;
  2833. font-family: var(--font-headings, "EB Garamond", serif);
  2834. font-size: 1.2rem;
  2835. font-weight: 600;
  2836. padding-left: calc(0.66 * 16px);
  2837. padding-right: calc(0.66 * 16px);
  2838. }
  2839. .pagination .nav-links .svg-icon {
  2840. display: inline-block;
  2841. vertical-align: middle;
  2842. fill: currentColor;
  2843. }
  2844. @media only screen and (min-width: 560px) {
  2845. .nav-links {
  2846. display: flex;
  2847. justify-content: space-between;
  2848. }
  2849. .nav-links .nav-next,
  2850. .nav-links .nav-previous {
  2851. flex: 0 1 auto;
  2852. margin-bottom: inherit;
  2853. margin-top: inherit;
  2854. max-width: calc(50% - (0.5 * 16px));
  2855. }
  2856. .nav-links .nav-next {
  2857. text-align: right;
  2858. }
  2859. }
  2860. /**
  2861. * Comments Wrapper
  2862. */
  2863. .comments-area > * {
  2864. margin-top: 32px;
  2865. margin-bottom: 32px;
  2866. }
  2867. .comments-area > *:first-child {
  2868. margin-top: 0;
  2869. }
  2870. .comments-area > *:last-child {
  2871. margin-bottom: 0;
  2872. }
  2873. /**
  2874. * Comment Title
  2875. */
  2876. .comments-title {
  2877. font-size: 2.0736rem;
  2878. letter-spacing: normal;
  2879. }
  2880. .comment-reply-title {
  2881. font-size: 1.728rem;
  2882. display: flex;
  2883. justify-content: space-between;
  2884. align-items: center;
  2885. }
  2886. .comment-reply-title small {
  2887. font-size: 1rem;
  2888. font-family: "Work Sans", sans-serif;
  2889. font-family: var(--font-base, "Work Sans", sans-serif);
  2890. letter-spacing: normal;
  2891. line-height: 1;
  2892. }
  2893. /**
  2894. * Comment Lists
  2895. */
  2896. .comment-list {
  2897. border-bottom: 1px solid #DDDDDD;
  2898. padding-left: 0;
  2899. list-style: none;
  2900. }
  2901. .comment-list > li {
  2902. border-top: 1px solid #DDDDDD;
  2903. margin-top: 32px;
  2904. margin-bottom: 32px;
  2905. }
  2906. .comment-list .children {
  2907. list-style: none;
  2908. padding-left: 16px;
  2909. }
  2910. .comment-list .children > li {
  2911. border-top: 1px solid #DDDDDD;
  2912. margin-top: 32px;
  2913. margin-bottom: 32px;
  2914. }
  2915. @media only screen and (min-width: 560px) {
  2916. .comment-list .children {
  2917. padding-left: 32px;
  2918. }
  2919. }
  2920. /**
  2921. * Comment Meta
  2922. */
  2923. .comment-meta {
  2924. margin-right: calc( 32px + (0.5 * 16px));
  2925. }
  2926. .comment-meta .comment-author {
  2927. line-height: 1;
  2928. margin-bottom: 4px;
  2929. padding-right: 40px;
  2930. max-width: calc(100% - 48px);
  2931. }
  2932. @media only screen and (min-width: 560px) {
  2933. .comment-meta .comment-author {
  2934. display: flex;
  2935. align-items: center;
  2936. margin-bottom: 0;
  2937. padding-right: 0;
  2938. }
  2939. }
  2940. .comment-meta .comment-author .fn {
  2941. word-wrap: break-word;
  2942. word-break: break-word;
  2943. hyphens: auto;
  2944. }
  2945. .comment-meta .comment-author .avatar {
  2946. display: block;
  2947. position: absolute;
  2948. right: 0;
  2949. }
  2950. .comment-meta .comment-metadata {
  2951. color: #444444;
  2952. padding-right: 40px;
  2953. }
  2954. @media only screen and (min-width: 560px) {
  2955. .comment-meta .comment-metadata {
  2956. padding-right: 0;
  2957. }
  2958. }
  2959. .comment-meta .comment-metadata a {
  2960. color: currentColor;
  2961. }
  2962. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  2963. color: #FF7A5C;
  2964. }
  2965. @media only screen and (min-width: 560px) {
  2966. .comment-meta {
  2967. margin-right: inherit;
  2968. align-items: center;
  2969. display: flex;
  2970. justify-content: space-between;
  2971. }
  2972. .comment-meta .comment-author {
  2973. display: flex;
  2974. align-items: center;
  2975. max-width: inherit;
  2976. flex: 0 1 auto;
  2977. }
  2978. .comment-meta .comment-author .fn {
  2979. padding-right: 16px;
  2980. }
  2981. .comment-meta .comment-author .avatar {
  2982. margin-right: 16px;
  2983. display: inherit;
  2984. position: relative;
  2985. right: inherit;
  2986. }
  2987. .comment-meta .comment-metadata {
  2988. flex: 0 1 auto;
  2989. }
  2990. }
  2991. .comment-metadata,
  2992. .reply {
  2993. font-size: 0.69444rem;
  2994. line-height: 1;
  2995. }
  2996. .reply {
  2997. text-align: right;
  2998. }
  2999. @media only screen and (min-width: 560px) {
  3000. .reply {
  3001. text-align: left;
  3002. }
  3003. }
  3004. .bypostauthor {
  3005. display: block;
  3006. }
  3007. .says {
  3008. display: none;
  3009. }
  3010. .comment-author .fn,
  3011. .pingback .url,
  3012. .trackback .url {
  3013. font-family: "EB Garamond", serif;
  3014. font-family: var(--font-headings, "EB Garamond", serif);
  3015. }
  3016. /**
  3017. * Comment body
  3018. */
  3019. .comment-body {
  3020. position: relative;
  3021. }
  3022. .comment-body > * {
  3023. margin-top: 32px;
  3024. margin-bottom: 32px;
  3025. }
  3026. .comment-content a {
  3027. word-wrap: break-word;
  3028. }
  3029. /**
  3030. * Pingbacks & Trackbacks
  3031. */
  3032. .pingback .comment-body,
  3033. .trackback .comment-body {
  3034. margin-top: 32px;
  3035. margin-bottom: 32px;
  3036. }
  3037. /**
  3038. * Comment Form
  3039. */
  3040. .comment-respond {
  3041. margin-top: calc(2 * 32px);
  3042. }
  3043. .comment-respond > * {
  3044. margin-top: 16px;
  3045. margin-bottom: 16px;
  3046. }
  3047. .comment-respond > *:first-child {
  3048. margin-top: 0;
  3049. }
  3050. .comment-respond > *:last-child {
  3051. margin-bottom: 0;
  3052. }
  3053. .comment-form > p {
  3054. margin-top: 16px;
  3055. margin-bottom: 16px;
  3056. }
  3057. .comment-form > p:first-of-type {
  3058. margin-top: 0;
  3059. }
  3060. .comment-form > p:last-of-type {
  3061. margin-bottom: 0;
  3062. }
  3063. .comment-form > p label,
  3064. .comment-form > p input[type="email"],
  3065. .comment-form > p input[type="text"],
  3066. .comment-form > p input[type="url"],
  3067. .comment-form > p textarea {
  3068. width: 100%;
  3069. }
  3070. .comment-form > p.comment-form-cookies-consent > label {
  3071. width: auto;
  3072. }
  3073. @media only screen and (min-width: 560px) {
  3074. .comment-form > p {
  3075. display: flex;
  3076. }
  3077. .comment-form > p label {
  3078. width: 25%;
  3079. }
  3080. .comment-form > p.comment-form-cookies-consent {
  3081. margin-left: 25%;
  3082. }
  3083. .comment-form > p.comment-form-cookies-consent > label {
  3084. width: auto;
  3085. display: inline-block;
  3086. }
  3087. .comment-form > p input[type="email"],
  3088. .comment-form > p input[type="text"],
  3089. .comment-form > p input[type="url"],
  3090. .comment-form > p textarea {
  3091. width: 75%;
  3092. }
  3093. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  3094. display: block;
  3095. }
  3096. }
  3097. /**
  3098. * Comment Nav
  3099. */
  3100. .comment-navigation a {
  3101. font-family: "EB Garamond", serif;
  3102. font-family: var(--font-headings, "EB Garamond", serif);
  3103. font-size: 1.2rem;
  3104. font-weight: 600;
  3105. }
  3106. .widget-area {
  3107. flex: 0 0 100%;
  3108. }
  3109. /**
  3110. * Site Pages
  3111. * - Page specific styles
  3112. */
  3113. /**
  3114. * Site Pages
  3115. * - Page specific styles
  3116. */
  3117. .sticky-post {
  3118. color: #FFFFFF;
  3119. background-color: #000000;
  3120. font-family: "EB Garamond", serif;
  3121. font-family: var(--font-headings, "EB Garamond", serif);
  3122. font-weight: bold;
  3123. font-size: 0.83333rem;
  3124. line-height: 1;
  3125. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  3126. }
  3127. .page-title {
  3128. font-size: 1.728rem;
  3129. }
  3130. /**
  3131. * Responsive Logic
  3132. * - Loading this last to respect cascaing rules
  3133. */
  3134. /**
  3135. * Page Layout Styles & Repsonsive Styles
  3136. */
  3137. /* Responsive width-content overrides */
  3138. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3139. .entry-content > *:not(.wp-block-button),
  3140. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3141. max-width: 100%;
  3142. margin-left: auto;
  3143. margin-right: auto;
  3144. }
  3145. @media only screen and (min-width: 560px) {
  3146. .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),
  3147. .entry-content > *:not(.wp-block-button),
  3148. .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 {
  3149. max-width: calc( 560px - 32px);
  3150. }
  3151. }
  3152. @media only screen and (min-width: 640px) {
  3153. .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),
  3154. .entry-content > *:not(.wp-block-button),
  3155. .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 {
  3156. max-width: calc( 640px - 32px);
  3157. }
  3158. }
  3159. @media only screen and (min-width: 782px) {
  3160. .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),
  3161. .entry-content > *:not(.wp-block-button),
  3162. .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 {
  3163. max-width: calc( 782px - 32px);
  3164. }
  3165. }
  3166. @media only screen and (min-width: 1024px) {
  3167. .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),
  3168. .entry-content > *:not(.wp-block-button),
  3169. .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 {
  3170. max-width: calc( 782px - 32px);
  3171. }
  3172. }
  3173. @media only screen and (min-width: 1280px) {
  3174. .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),
  3175. .entry-content > *:not(.wp-block-button),
  3176. .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 {
  3177. max-width: calc( 782px - 32px);
  3178. }
  3179. }
  3180. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3181. margin-left: auto;
  3182. margin-right: auto;
  3183. max-width: 100%;
  3184. /* Matches normal width until desktop breakpoint */
  3185. }
  3186. @media only screen and (min-width: 560px) {
  3187. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3188. max-width: calc( 560px - 32px);
  3189. }
  3190. }
  3191. @media only screen and (min-width: 640px) {
  3192. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3193. max-width: calc( 640px - 32px);
  3194. }
  3195. }
  3196. @media only screen and (min-width: 782px) {
  3197. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3198. max-width: calc( 782px - 32px);
  3199. }
  3200. }
  3201. @media only screen and (min-width: 1024px) {
  3202. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3203. width: calc(calc( 782px - 32px) + 256px);
  3204. max-width: calc(100% - 32px);
  3205. }
  3206. }
  3207. @media only screen and (min-width: 1280px) {
  3208. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3209. width: calc(calc( 782px - 32px) + 256px);
  3210. max-width: calc(100% - 32px);
  3211. }
  3212. }
  3213. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3214. width: calc(100% + 256px);
  3215. max-width: 100%;
  3216. margin-left: auto;
  3217. margin-right: auto;
  3218. }
  3219. @media only screen and (min-width: 560px) {
  3220. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3221. width: calc(calc( 560px - 32px) + 256px);
  3222. max-width: 100%;
  3223. }
  3224. }
  3225. @media only screen and (min-width: 640px) {
  3226. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3227. width: calc(calc( 640px - 32px) + 256px);
  3228. max-width: 100%;
  3229. }
  3230. }
  3231. @media only screen and (min-width: 782px) {
  3232. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3233. width: calc(calc( 782px - 32px) + 256px);
  3234. max-width: 100%;
  3235. }
  3236. }
  3237. @media only screen and (min-width: 1024px) {
  3238. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3239. width: calc(calc( 782px - 32px) + 256px);
  3240. max-width: 100%;
  3241. }
  3242. }
  3243. @media only screen and (min-width: 1280px) {
  3244. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3245. width: calc(calc( 782px - 32px) + 256px);
  3246. max-width: 100%;
  3247. }
  3248. }
  3249. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3250. margin-left: -16px;
  3251. margin-right: -16px;
  3252. width: calc(100% + 32px);
  3253. max-width: calc(100% + 32px);
  3254. /* Letting the box-model do most of the work here. */
  3255. }
  3256. @media only screen and (min-width: 560px) {
  3257. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3258. margin-left: inherit;
  3259. margin-right: inherit;
  3260. width: inherit;
  3261. max-width: inherit;
  3262. }
  3263. }
  3264. .entry-content > .alignright {
  3265. /*rtl:ignore*/
  3266. }
  3267. @media only screen and (min-width: 560px) {
  3268. .entry-content > .alignright {
  3269. /*rtl:ignore*/
  3270. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3271. max-width: calc( 0.5 * calc( 560px - 32px));
  3272. margin-left: 16px;
  3273. }
  3274. }
  3275. @media only screen and (min-width: 640px) {
  3276. .entry-content > .alignright {
  3277. /*rtl:ignore*/
  3278. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3279. max-width: calc( 0.5 * calc( 640px - 32px));
  3280. }
  3281. }
  3282. @media only screen and (min-width: 782px) {
  3283. .entry-content > .alignright {
  3284. /*rtl:ignore*/
  3285. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3286. max-width: calc( 0.5 * calc( 782px - 32px));
  3287. }
  3288. }
  3289. @media only screen and (min-width: 1024px) {
  3290. .entry-content > .alignright {
  3291. /*rtl:ignore*/
  3292. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3293. max-width: calc( 0.5 * calc( 782px - 32px));
  3294. }
  3295. }
  3296. @media only screen and (min-width: 1280px) {
  3297. .entry-content > .alignright {
  3298. /*rtl:ignore*/
  3299. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3300. max-width: calc( 0.5 * calc( 782px - 32px));
  3301. }
  3302. }
  3303. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3304. /*rtl:ignore*/
  3305. }
  3306. @media only screen and (min-width: 560px) {
  3307. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3308. /*rtl:ignore*/
  3309. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3310. max-width: calc( 0.5 * calc( 560px - 32px));
  3311. margin-right: 16px;
  3312. }
  3313. }
  3314. @media only screen and (min-width: 640px) {
  3315. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3316. /*rtl:ignore*/
  3317. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3318. max-width: calc( 0.5 * calc( 640px - 32px));
  3319. }
  3320. }
  3321. @media only screen and (min-width: 782px) {
  3322. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3323. /*rtl:ignore*/
  3324. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3325. max-width: calc( 0.5 * calc( 782px - 32px));
  3326. }
  3327. }
  3328. @media only screen and (min-width: 1024px) {
  3329. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3330. /*rtl:ignore*/
  3331. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3332. max-width: calc( 0.5 * calc( 782px - 32px));
  3333. }
  3334. }
  3335. @media only screen and (min-width: 1280px) {
  3336. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3337. /*rtl:ignore*/
  3338. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3339. max-width: calc( 0.5 * calc( 782px - 32px));
  3340. }
  3341. }
  3342. /**
  3343. * Vendors
  3344. * - Styles for 3rd party plugins and WP extensions
  3345. */
  3346. /**
  3347. * Vendors
  3348. * - 3rd-party compatibility styles
  3349. */
  3350. /**
  3351. * Subscription Form
  3352. */
  3353. .wp-block-jetpack-subscriptions form > * {
  3354. margin-top: 21.312px;
  3355. margin-bottom: 21.312px;
  3356. }
  3357. @media only screen and (min-width: 560px) {
  3358. .wp-block-jetpack-subscriptions form > * {
  3359. margin-top: 32px;
  3360. margin-bottom: 32px;
  3361. }
  3362. }
  3363. .wp-block-jetpack-subscriptions form > *:first-child {
  3364. margin-top: 0;
  3365. }
  3366. .wp-block-jetpack-subscriptions form > *:last-child {
  3367. margin-bottom: 0;
  3368. }
  3369. /**
  3370. * Cookies & Consents Banner
  3371. */
  3372. body .widget_eu_cookie_law_widget {
  3373. background: transparent;
  3374. bottom: 0;
  3375. left: 0;
  3376. padding: 8px;
  3377. right: 0;
  3378. }
  3379. body .widget_eu_cookie_law_widget.widget.top {
  3380. bottom: auto;
  3381. top: 0;
  3382. }
  3383. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3384. background: #FFFFFF;
  3385. border: 1px solid #DDDDDD;
  3386. color: #444444;
  3387. font-size: 0.83333rem;
  3388. line-height: inherit;
  3389. padding: 16px;
  3390. }
  3391. @media (max-width: 600px) {
  3392. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3393. padding-bottom: 80px;
  3394. }
  3395. }
  3396. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3397. background: #444444;
  3398. border-color: #111111;
  3399. color: #FFFFFF;
  3400. }
  3401. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3402. background: #FFFFFF;
  3403. color: #444444;
  3404. }
  3405. 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 {
  3406. background: #DDDDDD;
  3407. }
  3408. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3409. margin: 0;
  3410. margin-left: 32px;
  3411. }
  3412. @media (max-width: 600px) {
  3413. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3414. bottom: 16px;
  3415. left: 16px;
  3416. margin: 0;
  3417. }
  3418. }
  3419. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3420. top: 32px;
  3421. }
  3422. @media (max-width: 782px) {
  3423. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3424. top: 46px;
  3425. }
  3426. }
  3427. /**
  3428. * Mailchimp Subscription Form
  3429. */
  3430. .wp-block-jetpack-mailchimp p {
  3431. margin-top: 21.312px;
  3432. margin-bottom: 21.312px;
  3433. }
  3434. @media only screen and (min-width: 560px) {
  3435. .wp-block-jetpack-mailchimp p {
  3436. margin-top: 32px;
  3437. margin-bottom: 32px;
  3438. }
  3439. }
  3440. .wp-block-jetpack-mailchimp p:first-child {
  3441. margin-top: 0;
  3442. }
  3443. .wp-block-jetpack-mailchimp p:last-child {
  3444. margin-bottom: 0;
  3445. }
  3446. .wp-block-jetpack-mailchimp input[type="email"] {
  3447. width: 100%;
  3448. }
  3449. #wp-block-jetpack-mailchimp_consent-text {
  3450. font-size: 0.83333rem;
  3451. }
  3452. /**
  3453. * Business Hours
  3454. */
  3455. .jetpack-business-hours dd {
  3456. padding-left: 0;
  3457. }
  3458. /**
  3459. * Layout Grid
  3460. */
  3461. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3462. margin-top: 21.312px;
  3463. margin-bottom: 21.312px;
  3464. }
  3465. @media only screen and (min-width: 560px) {
  3466. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3467. margin-top: 32px;
  3468. margin-bottom: 32px;
  3469. }
  3470. }
  3471. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
  3472. margin-top: 0;
  3473. }
  3474. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
  3475. margin-bottom: 0;
  3476. }
  3477. /**
  3478. * Map Block
  3479. */
  3480. .mapboxgl-popup-close-button {
  3481. padding: 6px;
  3482. }
  3483. .wp-block-jetpack-map .mapboxgl-popup h3 {
  3484. padding-top: 15px;
  3485. }
  3486. /**
  3487. * Related Posts
  3488. */
  3489. .entry-content #jp-relatedposts {
  3490. margin: 0 auto;
  3491. }
  3492. /**
  3493. * Child Theme Extra Styles
  3494. */
  3495. /**
  3496. * Extra Child Theme Styles
  3497. */
  3498. /**
  3499. * Elements
  3500. */
  3501. html {
  3502. font-size: 17px;
  3503. font-weight: 300;
  3504. }
  3505. body {
  3506. font-weight: 300;
  3507. }
  3508. b,
  3509. strong {
  3510. font-weight: 700;
  3511. }
  3512. a {
  3513. text-decoration-color: #FF7A5C;
  3514. }
  3515. a:hover, a:focus {
  3516. text-decoration: none;
  3517. }
  3518. .site-header a:hover,
  3519. .site-header a:focus {
  3520. background: #FFFFFF;
  3521. }
  3522. /**
  3523. * Components
  3524. */
  3525. .site-title,
  3526. .site-description {
  3527. color: #000000;
  3528. text-transform: uppercase;
  3529. line-height: 1;
  3530. max-width: 100%;
  3531. }
  3532. .site-title a,
  3533. .site-description a {
  3534. color: currentColor;
  3535. padding-left: 5px;
  3536. padding-right: 5px;
  3537. margin-left: -5px;
  3538. margin-right: 5px;
  3539. }
  3540. .main-navigation > div > ul > li > a,
  3541. .entry-content a {
  3542. text-decoration: underline;
  3543. text-decoration-color: #FF7A5C;
  3544. }
  3545. .main-navigation > div > ul > li > a:hover,
  3546. .entry-content a:hover {
  3547. text-decoration: none;
  3548. }
  3549. .main-navigation > div > ul > li > a,
  3550. .social-navigation > div > ul > li > a,
  3551. .footer-navigation .footer-menu > li > a {
  3552. padding-left: 0;
  3553. padding-right: 0;
  3554. }
  3555. .main-navigation {
  3556. text-transform: uppercase;
  3557. }
  3558. .sticky-post {
  3559. text-transform: uppercase;
  3560. font-family: "Work Sans", sans-serif;
  3561. font-family: var(--font-base, "Work Sans", sans-serif);
  3562. }
  3563. #main .page-header {
  3564. margin-top: 32px;
  3565. }
  3566. #main .page-header .page-title {
  3567. font-size: 1rem;
  3568. font-family: "Work Sans", sans-serif;
  3569. font-family: var(--font-base, "Work Sans", sans-serif);
  3570. font-weight: 500;
  3571. text-transform: uppercase;
  3572. line-height: 1;
  3573. }
  3574. .entry-title,
  3575. .author-bio .author-title,
  3576. .post-navigation .post-title,
  3577. .comment-reply-title {
  3578. font-size: 2.48832rem;
  3579. letter-spacing: normal;
  3580. line-height: 1;
  3581. text-transform: uppercase;
  3582. }
  3583. .entry-meta,
  3584. .entry-footer {
  3585. text-transform: uppercase;
  3586. font-weight: 500;
  3587. letter-spacing: .1em;
  3588. }
  3589. .entry-meta > span,
  3590. .entry-footer > span {
  3591. display: inline;
  3592. }
  3593. .entry-meta a,
  3594. .entry-footer a {
  3595. text-decoration-color: currentColor;
  3596. }
  3597. .nav-links .meta-nav {
  3598. text-transform: uppercase;
  3599. font-weight: 500;
  3600. letter-spacing: .1em;
  3601. }
  3602. .post-navigation .post-title {
  3603. font-weight: 300;
  3604. }
  3605. .footer-navigation,
  3606. .footer-navigation .footer-menu a {
  3607. font-weight: 500;
  3608. text-transform: uppercase;
  3609. text-decoration-color: currentColor;
  3610. }
  3611. .site-info a {
  3612. text-decoration-color: currentColor;
  3613. }
  3614. .imprint {
  3615. font-weight: 500;
  3616. }
  3617. .has-drop-cap:not(:focus):first-letter {
  3618. color: #000000;
  3619. }
  3620. /**
  3621. * Blocks
  3622. */
  3623. button,
  3624. .button,
  3625. input[type="submit"],
  3626. a.wp-block-button__link,
  3627. a.wp-block-file__button {
  3628. font-weight: 800;
  3629. text-transform: uppercase;
  3630. text-decoration: none;
  3631. }
  3632. .wp-block-cover .wp-block-cover__inner-container a,
  3633. .wp-block-cover .wp-block-cover-image-text a,
  3634. .wp-block-cover .wp-block-cover-text a,
  3635. .wp-block-cover-image .wp-block-cover__inner-container a,
  3636. .wp-block-cover-image .wp-block-cover-image-text a,
  3637. .wp-block-cover-image .wp-block-cover-text a {
  3638. text-decoration-color: currentColor;
  3639. }
  3640. .wp-block-cover .wp-block-cover__inner-container a:hover, .wp-block-cover .wp-block-cover__inner-container a:active,
  3641. .wp-block-cover .wp-block-cover-image-text a:hover,
  3642. .wp-block-cover .wp-block-cover-image-text a:active,
  3643. .wp-block-cover .wp-block-cover-text a:hover,
  3644. .wp-block-cover .wp-block-cover-text a:active,
  3645. .wp-block-cover-image .wp-block-cover__inner-container a:hover,
  3646. .wp-block-cover-image .wp-block-cover__inner-container a:active,
  3647. .wp-block-cover-image .wp-block-cover-image-text a:hover,
  3648. .wp-block-cover-image .wp-block-cover-image-text a:active,
  3649. .wp-block-cover-image .wp-block-cover-text a:hover,
  3650. .wp-block-cover-image .wp-block-cover-text a:active {
  3651. background-color: transparent;
  3652. }
  3653. .wp-block-latest-posts > li > a {
  3654. text-transform: uppercase;
  3655. }
  3656. .wp-block-newspack-blocks-homepage-articles article .entry-title {
  3657. text-transform: none;
  3658. }
  3659. .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  3660. text-decoration-color: #FF7A5C;
  3661. }
  3662. .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus {
  3663. text-decoration: none;
  3664. }
  3665. @media only screen and (max-width: 559px) {
  3666. .site-header {
  3667. position: relative;
  3668. }
  3669. .site-header .site-branding {
  3670. padding-right: 112px;
  3671. }
  3672. .site-title,
  3673. .site-description {
  3674. font-size: 1.44rem;
  3675. hyphens: auto;
  3676. }
  3677. #toggle-menu {
  3678. position: absolute;
  3679. top: 16px;
  3680. right: 16px;
  3681. }
  3682. }
  3683. @media only screen and (min-width: 560px) {
  3684. .site-header.alignfull {
  3685. align-items: flex-end;
  3686. display: flex;
  3687. flex-wrap: wrap;
  3688. justify-content: space-between;
  3689. max-width: 100vw;
  3690. padding-left: 32px;
  3691. padding-right: 32px;
  3692. margin-bottom: 0;
  3693. width: 100%;
  3694. z-index: 10;
  3695. }
  3696. .site-branding {
  3697. margin-bottom: 0;
  3698. flex: 6 1 70%;
  3699. }
  3700. .main-navigation {
  3701. align-self: flex-start;
  3702. flex: 1 1 auto;
  3703. margin: 0;
  3704. }
  3705. .social-navigation {
  3706. margin: 0;
  3707. width: auto;
  3708. }
  3709. .main-navigation > div > ul {
  3710. display: inherit;
  3711. }
  3712. .main-navigation > div > ul > li > .sub-menu {
  3713. left: inherit;
  3714. right: 0;
  3715. }
  3716. .wp-block-columns.alignfull {
  3717. padding-left: 32px;
  3718. padding-right: 32px;
  3719. }
  3720. }
  3721. @media only screen and (min-width: 640px) {
  3722. .site-header.alignfull {
  3723. position: fixed;
  3724. }
  3725. .site-branding {
  3726. position: relative;
  3727. z-index: 99;
  3728. }
  3729. .main-navigation,
  3730. .social-navigation {
  3731. margin-top: 0;
  3732. }
  3733. .main-navigation {
  3734. z-index: 999;
  3735. }
  3736. .social-navigation {
  3737. position: fixed;
  3738. left: 32px;
  3739. bottom: 32px;
  3740. z-index: 888;
  3741. }
  3742. .social-navigation > div > ul {
  3743. flex-direction: column-reverse;
  3744. }
  3745. .main-navigation > div > ul {
  3746. display: block;
  3747. }
  3748. .content-area {
  3749. margin-top: 160px;
  3750. position: relative;
  3751. z-index: 2;
  3752. }
  3753. .hide-homepage-header .content-area {
  3754. margin-top: 0;
  3755. }
  3756. .nav-links {
  3757. display: block;
  3758. }
  3759. .nav-links .nav-next,
  3760. .nav-links .nav-previous {
  3761. max-width: 100%;
  3762. margin-bottom: 32px;
  3763. }
  3764. .nav-links .nav-next {
  3765. text-align: left;
  3766. }
  3767. }
  3768. /**
  3769. * AMP Support
  3770. */
  3771. @media only screen and (min-width: 640px) {
  3772. html[amp] .site-header {
  3773. position: sticky;
  3774. top: 0;
  3775. }
  3776. html[amp] .logged-in .site-header {
  3777. top: 32px;
  3778. }
  3779. html[amp] .content-area {
  3780. margin: 0;
  3781. }
  3782. }
  3783. @media screen and (max-width: 782px) {
  3784. html[amp] .logged-in .site-header {
  3785. top: 46px;
  3786. }
  3787. }
  3788. /**
  3789. * Search block
  3790. */
  3791. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  3792. border-radius: 9999px;
  3793. }
  3794. .wp-block-search.wp-block-search__button-inside .wp-block-search__input {
  3795. background: transparent;
  3796. }
  3797. .wp-block-search .wp-block-search__button {
  3798. border-radius: 9999px;
  3799. }
  3800. .wp-block-search .wp-block-search__button.has-icon {
  3801. min-width: calc(2* 16px + 1rem + 4px);
  3802. min-height: calc(2* 16px + 1rem + 4px);
  3803. }
  3804. .wp-block-search .wp-block-search__input {
  3805. margin-right: calc( .1 * 11.6px);
  3806. border-radius: 9999px;
  3807. }