style-rtl.css 105 KB

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