style-rtl.css 96 KB

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