style-rtl.css 111 KB

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