Keine Beschreibung

style.css 118KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480
  1. /*
  2. Theme Name: Twenty Twenty
  3. Text Domain: twentytwenty
  4. Version: 1.8
  5. Requires at least: 4.7
  6. Requires PHP: 5.2.4
  7. Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
  8. Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
  9. Author: the WordPress team
  10. Author URI: https://wordpress.org/
  11. Theme URI: https://wordpress.org/themes/twentytwenty/
  12. License: GNU General Public License v2 or later
  13. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  14. All files, unless otherwise stated, are released under the GNU General Public
  15. License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)
  16. This theme, like WordPress, is licensed under the GPL.
  17. Use it to make something cool, have fun, and share what you've learned
  18. with others.
  19. */
  20. /*--------------------------------------------------------------
  21. >>> TABLE OF CONTENTS:
  22. ----------------------------------------------------------------
  23. 0. CSS Reset
  24. 1. Document Setup
  25. 2. Element Base
  26. 3. Helper Classes
  27. 4. Site Header
  28. 5. Menu Modal
  29. 6. Search Modal
  30. 7. Page Templates
  31. a. Template: Cover Template
  32. c. Template: Full Width
  33. 8. Post: Archive
  34. 9. Post: Single
  35. 10. Blocks
  36. 11. Entry Content
  37. 12. Comments
  38. 13. Site Pagination
  39. 14. Error 404
  40. 15. Widgets
  41. 16. Site Footer
  42. 17. Media Queries
  43. ----------------------------------------------------------------------------- */
  44. /* -------------------------------------------------------------------------- */
  45. /* 0. CSS Reset
  46. /* -------------------------------------------------------------------------- */
  47. html,
  48. body {
  49. border: none;
  50. margin: 0;
  51. padding: 0;
  52. }
  53. h1,
  54. h2,
  55. h3,
  56. h4,
  57. h5,
  58. h6,
  59. p,
  60. blockquote,
  61. address,
  62. big,
  63. cite,
  64. code,
  65. em,
  66. font,
  67. img,
  68. small,
  69. strike,
  70. sub,
  71. sup,
  72. li,
  73. ol,
  74. ul,
  75. fieldset,
  76. form,
  77. label,
  78. legend,
  79. button,
  80. table,
  81. caption,
  82. tr,
  83. th,
  84. td {
  85. border: none;
  86. font-size: inherit;
  87. line-height: inherit;
  88. margin: 0;
  89. padding: 0;
  90. text-align: inherit;
  91. }
  92. blockquote::before,
  93. blockquote::after {
  94. content: "";
  95. }
  96. /* -------------------------------------------------------------------------- */
  97. /* 1. Document Setup
  98. /* -------------------------------------------------------------------------- */
  99. html {
  100. font-size: 62.5%; /* 1rem = 10px */
  101. scroll-behavior: smooth;
  102. }
  103. @media (prefers-reduced-motion: reduce) {
  104. html {
  105. scroll-behavior: auto;
  106. }
  107. }
  108. body {
  109. background: #f5efe0;
  110. box-sizing: border-box;
  111. color: #000;
  112. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  113. font-size: 1.8rem;
  114. letter-spacing: -0.015em;
  115. text-align: left;
  116. }
  117. @supports ( font-variation-settings: normal ) {
  118. body {
  119. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  120. }
  121. }
  122. *,
  123. *::before,
  124. *::after {
  125. box-sizing: inherit;
  126. -webkit-font-smoothing: antialiased;
  127. word-break: break-word;
  128. word-wrap: break-word;
  129. }
  130. #site-content {
  131. overflow: hidden;
  132. }
  133. /* Clearing ---------------------------------- */
  134. .group::after,
  135. .entry-content::after {
  136. clear: both;
  137. content: "";
  138. display: block;
  139. }
  140. /* Base Transitions -------------------------- */
  141. a,
  142. path {
  143. transition: all 0.15s linear;
  144. }
  145. /* Screen Reader Text ------------------------ */
  146. .screen-reader-text {
  147. border: 0;
  148. clip: rect(1px, 1px, 1px, 1px);
  149. -webkit-clip-path: inset(50%);
  150. clip-path: inset(50%);
  151. height: 1px;
  152. margin: -1px;
  153. overflow: hidden;
  154. padding: 0;
  155. position: absolute !important;
  156. width: 1px;
  157. word-wrap: normal !important;
  158. word-break: normal;
  159. }
  160. .screen-reader-text:focus {
  161. background-color: #f1f1f1;
  162. border-radius: 3px;
  163. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  164. clip: auto !important;
  165. -webkit-clip-path: none;
  166. clip-path: none;
  167. color: #21759b;
  168. display: block;
  169. font-size: 0.875rem;
  170. font-weight: 700;
  171. height: auto;
  172. right: 5px;
  173. line-height: normal;
  174. padding: 15px 23px 14px;
  175. text-decoration: none;
  176. top: 5px;
  177. width: auto;
  178. z-index: 100000;
  179. }
  180. /* Skip Link --------------------------------- */
  181. .skip-link {
  182. left: -9999rem;
  183. top: 2.5rem;
  184. z-index: 999999999;
  185. text-decoration: underline;
  186. }
  187. .skip-link:focus {
  188. display: block;
  189. left: 6px;
  190. top: 7px;
  191. font-size: 14px;
  192. font-weight: 600;
  193. text-decoration: none;
  194. line-height: normal;
  195. padding: 15px 23px 14px;
  196. z-index: 100000;
  197. right: auto;
  198. }
  199. /* Fonts ------------------------------------- */
  200. /*
  201. * Chrome renders extra-wide   characters for the Hoefler Text font.
  202. * This results in a jumping cursor when typing in both the classic editor and
  203. * block editor. The following font-face override fixes the issue by manually
  204. * inserting a custom font that includes just a Hoefler Text space replacement
  205. * for that character instead.
  206. */
  207. @font-face {
  208. font-family: NonBreakingSpaceOverride;
  209. src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAMoAA0AAAAACDQAAALTAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCahEICjx3CywAATYCJANUBCAFhiEHgWwbXQfILgpsY+rQRRARwyAs6uL7pxzYhxEE+32b3aeHmifR6tklkS9hiZA0ewkqGRJE+H7/+6378ASViK/PGeavqJyOzsceKi1s3BCiQsiOdn1r/RBgIJYEgCUhbm/8/8/h4saPssnTNkkiWUBrTRtjmQSajw3Ui3pZ3LYDPD+XG2C3JA/yKAS8/rU5eNfuGqRf4eNNgV4YAlIIgxglEkWe6FYpq10+wi3g+/nUgvgPFczNrz/RsTgVm/zfbPuHZlsuQECxuyqBcQwKFBjFgKO8AqP4bAN9tFJtnM9xPcbNjeXS/x1wY/xU52f5W/X1+9cnH4YwKIaoRRAkUkj/YlAAeF/624foiIDBgBmgQBeGAyhBljUPZUm/l2dTvmpqcBDUOHdbPZWd8JsBAsGr4w8/EDn82/bUPx4eh0YNrQTBuHO2FjQEAGBwK0DeI37DpQVqdERS4gZBhpeUhWCfLFz7J99aEBgsJCHvUGAdAPp4IADDCAPCEFMGpMZ9AQpTfQtQGhLbGVBZFV8BaqNyP68oTZgHNj3M8kBPfXTTC9t90UuzYhy9ciH0grVlOcqyCytisvbsERsEYztiznR0WCrmTksJwbSNK6fd1Rvr25I9oLvctUoEbNOmXJbqgYgPXEHJ82IUsrCnpkxh23F1rfZ2zcRnJYoXtauB3VTFkFXQg3uoZYD5qE0kdjDtoDoF1h2bulGmev5HbYhbrjtohQSRI4aNOkffIcT+d3v6atpaYh3JvPoQsztCcqvaBkppDSPcQ3bw3KaCBo1f5CJWTZEgW3LjLofYg51MaVezrx8xZitYbQ9KYeoRaqQdVLwSEfrKXLK1otCWOKNdR/YwYAfon5Yk8O2MJfSD10dPGA5PIJJQMkah0ugMJiv6x4Dm7LEa8xnrRGGGLAg4sAlbsA07sAt76DOsXKO3hIjtIlpnnFrt1qW4kh6NhS83P/6HB/fl1SMAAA==) format("woff2"), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAUQAA0AAAAACDQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAE9AAAABwAAAAchf5yU0dERUYAAATYAAAAHAAAAB4AJwAbT1MvMgAAAaAAAABJAAAAYJAcgU5jbWFwAAACIAAAAF4AAAFqUUxBZ2dhc3AAAATQAAAACAAAAAgAAAAQZ2x5ZgAAApAAAAAyAAAAPL0n8y9oZWFkAAABMAAAADAAAAA2Fi93Z2hoZWEAAAFgAAAAHQAAACQOSgWaaG10eAAAAewAAAAzAAAAVC7TAQBsb2NhAAACgAAAABAAAAAsAOQBAm1heHAAAAGAAAAAHQAAACAAWQALbmFtZQAAAsQAAAF6AAADIYvD/Adwb3N0AAAEQAAAAI4AAADsapk2o3jaY2BkYGAA4ov5mwzj+W2+MnCzXwCKMNzgCBSB0LfbQDQ7AxuI4mBgAlEAFKQIRHjaY2BkYGD3+NvCwMDBAALsDAyMDKhAFAA3+wH3AAAAeNpjYGRgYBBl4GBgYgABEMnIABJzAPMZAAVmAGUAAAB42mNgZlJhnMDAysDCKsKygYGBYRqEZtrDYMT4D8gHSmEHjgUFOQwODAqqf9g9/rYwMLB7MNUAhRlBcsxBrMlASoGBEQAj8QtyAAAAeNrjYGBkAAGmWQwMjO8gmBnIZ2NA0ExAzNjAAFYJVn0ASBsD6VAIDZb7AtELAgANIgb9AHjaY2BgYGaAYBkGRgYQSAHyGMF8FgYPIM3HwMHAxMDGoMCwQIFLQV8hXvXP//9AcRCfAcb///h/ygPW+w/vb7olBjUHCTCyMcAFGZmABBO6AogThgZgIUsXAEDcEzcAAHjaY2BgECMCyoEgACZaAed42mNgYmRgYGBnYGNgYAZSDJqMgorCgoqCjECRXwwNrCAKSP5mAAFGBiRgyAAAi/YFBQAAeNqtkc1OwkAUhU/5M25cEhcsZick0AwlBJq6MWwgJkAgYV/KAA2lJeUn+hY+gktXvpKv4dLTMqKycGHsTZNv7px7z50ZAFd4hYHjdw1Ls4EiHjVncIFnzVnc4F1zDkWjrzmPW+NNcwGlzIRKI3fJlUyrEjZQxb3mDH2fNGfRx4vmHKqG0JzHg6E0F9DOlFBGBxUI1GEzLNT4S0aLuTtsGAEUuYcQHkyg3KmIum1bNUvKlrjbbAIleqHHnS4iSudpQcySMYtdFiXlAxzSbAwfMxK6kZoHKhbjjespMTioOPZnzI+4ucCeTVyKMVKLfeAS6vSWaTinuZwzyy/Dc7vaed+6KaV0kukdPUk6yOcctZPvvxxqksq2lEW8RvHjMEO2FCl/zy6p3NEm0R9OFSafJdldc4QVeyaaObMBO0/5cCaa6d9Ggyubxire+lEojscdjoWUR1xGOy8KD8mG2ZLO2l2paDc3A39qmU2z2W5YNv5+u79e6QfGJY/hAAB42m3NywrCMBQE0DupWp/1AYI7/6DEaLQu66Mrd35BKUWKJSlFv1+rue4cGM7shgR981qSon+ZNwUJ8iDgoYU2OvDRRQ99DDDECAHGmGCKmf80hZSx/Kik/LliFbtmN6xmt+yOjdg9GztV4tROnRwX/Bsaaw51nt4Lc7tWaZYHp/MlzKx51LZs5htNri+2AAAAAQAB//8AD3jaY2BkYGDgAWIxIGZiYARCESBmAfMYAAR6AEMAAAABAAAAANXtRbgAAAAA2AhRFAAAAADYCNuG) format("woff");
  210. }
  211. /* ----------------------------------------------
  212. Inter variable font. Usage:
  213. @supports (font-variation-settings: normal) {
  214. html { font-family: 'Inter var', sans-serif; }
  215. }
  216. ---------------------------------------------- */
  217. @font-face {
  218. font-family: "Inter var";
  219. font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
  220. font-style: normal;
  221. font-display: swap;
  222. src: url(./assets/fonts/inter/Inter-upright-var.woff2) format("woff2");
  223. }
  224. @font-face {
  225. font-family: "Inter var";
  226. font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
  227. font-style: italic;
  228. font-display: swap;
  229. src: url(./assets/fonts/inter/Inter-italic-var.woff2) format("woff2");
  230. }
  231. /* Accessibility Settings -------------------- */
  232. @media ( prefers-reduced-motion: reduce ) {
  233. * {
  234. animation-duration: 0s !important;
  235. transition-duration: 0s !important;
  236. }
  237. }
  238. /* -------------------------------------------------------------------------- */
  239. /* 2. Element Base
  240. /* ---------------------------------------------*---------------------------- */
  241. main {
  242. display: block;
  243. }
  244. h1,
  245. h2,
  246. h3,
  247. h4,
  248. h5,
  249. h6,
  250. .faux-heading {
  251. font-feature-settings: "lnum";
  252. font-variant-numeric: lining-nums;
  253. font-weight: 700;
  254. letter-spacing: -0.0415625em;
  255. line-height: 1.25;
  256. margin: 3.5rem 0 2rem;
  257. }
  258. h1,
  259. .heading-size-1 {
  260. font-size: 3.6rem;
  261. font-weight: 800;
  262. line-height: 1.138888889;
  263. }
  264. h2,
  265. .heading-size-2 {
  266. font-size: 3.2rem;
  267. }
  268. h3,
  269. .heading-size-3 {
  270. font-size: 2.8rem;
  271. }
  272. h4,
  273. .heading-size-4 {
  274. font-size: 2.4rem;
  275. }
  276. h5,
  277. .heading-size-5 {
  278. font-size: 2.1rem;
  279. }
  280. h6,
  281. .heading-size-6 {
  282. font-size: 1.6rem;
  283. letter-spacing: 0.03125em;
  284. text-transform: uppercase;
  285. }
  286. p {
  287. line-height: 1.5;
  288. margin: 0 0 1em 0;
  289. }
  290. em,
  291. i,
  292. q,
  293. dfn {
  294. font-style: italic;
  295. }
  296. em em,
  297. em i,
  298. i em,
  299. i i,
  300. cite em,
  301. cite i {
  302. font-weight: bolder;
  303. }
  304. big {
  305. font-size: 1.2em;
  306. }
  307. small {
  308. font-size: 0.75em;
  309. }
  310. b,
  311. strong {
  312. font-weight: 700;
  313. }
  314. ins {
  315. text-decoration: underline;
  316. }
  317. sub,
  318. sup {
  319. font-size: 75%;
  320. line-height: 0;
  321. position: relative;
  322. vertical-align: baseline;
  323. }
  324. sup {
  325. top: -0.5em;
  326. }
  327. sub {
  328. bottom: -0.25em;
  329. }
  330. abbr,
  331. acronym {
  332. cursor: help;
  333. }
  334. address {
  335. line-height: 1.5;
  336. margin: 0 0 2rem 0;
  337. }
  338. hr {
  339. border-style: solid;
  340. border-width: 0.1rem 0 0 0;
  341. border-color: #dcd7ca;
  342. margin: 4rem 0;
  343. }
  344. .entry-content hr,
  345. hr.styled-separator {
  346. background: linear-gradient(to left, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
  347. background-color: transparent !important;
  348. border: none;
  349. height: 0.1rem;
  350. overflow: visible;
  351. position: relative;
  352. }
  353. .entry-content hr:not(.has-background),
  354. hr.styled-separator {
  355. color: #6d6d6d;
  356. }
  357. .entry-content hr::before,
  358. .entry-content hr::after,
  359. hr.styled-separator::before,
  360. hr.styled-separator::after {
  361. background: currentColor;
  362. content: "";
  363. display: block;
  364. height: 1.6rem;
  365. position: absolute;
  366. top: calc(50% - 0.8rem);
  367. transform: rotate(22.5deg);
  368. width: 0.1rem;
  369. }
  370. .entry-content hr::before,
  371. hr.styled-separator::before {
  372. left: calc(50% - 0.5rem);
  373. }
  374. .entry-content hr::after,
  375. hr.styled-separator::after {
  376. right: calc(50% - 0.5rem);
  377. }
  378. a {
  379. color: #cd2653;
  380. text-decoration: underline;
  381. }
  382. a:hover,
  383. a:focus {
  384. text-decoration: none;
  385. }
  386. /* Lists ------------------------------------- */
  387. ul,
  388. ol {
  389. margin: 0 0 3rem 3rem;
  390. }
  391. ul {
  392. list-style: disc;
  393. }
  394. ul ul {
  395. list-style: circle;
  396. }
  397. ul ul ul {
  398. list-style: square;
  399. }
  400. ol {
  401. list-style: decimal;
  402. }
  403. ol ol {
  404. list-style: lower-alpha;
  405. }
  406. ol ol ol {
  407. list-style: lower-roman;
  408. }
  409. li {
  410. line-height: 1.5;
  411. margin: 0.5rem 0 0 2rem;
  412. }
  413. li > ul,
  414. li > ol {
  415. margin: 1rem 0 0 2rem;
  416. }
  417. .reset-list-style,
  418. .reset-list-style ul,
  419. .reset-list-style ol {
  420. list-style: none;
  421. margin: 0;
  422. }
  423. .reset-list-style li {
  424. margin: 0;
  425. }
  426. dt,
  427. dd {
  428. line-height: 1.5;
  429. }
  430. dt {
  431. font-weight: 700;
  432. }
  433. dt + dd {
  434. margin-top: 0.5rem;
  435. }
  436. dd + dt {
  437. margin-top: 1.5rem;
  438. }
  439. /* Quotes ------------------------------------ */
  440. blockquote {
  441. border-color: #cd2653;
  442. border-style: solid;
  443. /*rtl:ignore*/
  444. border-width: 0 0 0 0.2rem;
  445. color: inherit;
  446. font-size: 1em;
  447. margin: 4rem 0;
  448. /*rtl:ignore*/
  449. padding: 0.5rem 0 0.5rem 2rem;
  450. }
  451. cite {
  452. color: #6d6d6d;
  453. font-size: 1.4rem;
  454. font-style: normal;
  455. font-weight: 600;
  456. line-height: 1.25;
  457. }
  458. blockquote cite {
  459. display: block;
  460. margin: 2rem 0 0 0;
  461. }
  462. blockquote p:last-child {
  463. margin: 0;
  464. }
  465. /* Code -------------------------------------- */
  466. code,
  467. kbd,
  468. pre,
  469. samp {
  470. font-family: monospace;
  471. font-size: 0.9em;
  472. padding: 0.4rem 0.6rem;
  473. }
  474. code,
  475. kbd,
  476. samp {
  477. background: rgba(0, 0, 0, 0.075);
  478. border-radius: 0.2rem;
  479. }
  480. pre {
  481. border: 0.1rem solid #dcd7ca;
  482. line-height: 1.5;
  483. margin: 4rem 0;
  484. overflow: auto;
  485. padding: 3rem 2rem;
  486. text-align: left;
  487. }
  488. pre code {
  489. background: transparent;
  490. padding: 0;
  491. }
  492. /* Media ------------------------------------- */
  493. figure {
  494. display: block;
  495. margin: 0;
  496. }
  497. iframe {
  498. display: block;
  499. max-width: 100%;
  500. }
  501. video {
  502. display: block;
  503. }
  504. svg,
  505. img,
  506. embed,
  507. object {
  508. display: block;
  509. height: auto;
  510. max-width: 100%;
  511. }
  512. figcaption,
  513. .wp-caption-text {
  514. color: #6d6d6d;
  515. display: block;
  516. font-size: 1.5rem;
  517. font-weight: 500;
  518. line-height: 1.2;
  519. margin-top: 1.5rem;
  520. }
  521. figcaption a,
  522. .wp-caption-text a {
  523. color: inherit;
  524. }
  525. blockquote.instagram-media,
  526. iframe.instagram-media {
  527. margin: auto !important;
  528. }
  529. /* GALLERIES */
  530. .gallery {
  531. display: flex;
  532. flex-wrap: wrap;
  533. margin: 3em 0 3em -0.8em;
  534. width: calc(100% + 1.6em);
  535. }
  536. .gallery-item {
  537. margin: 0.8em 0;
  538. padding: 0 0.8em;
  539. width: 100%;
  540. }
  541. .gallery-caption {
  542. display: block;
  543. margin-top: 0.8em;
  544. }
  545. /* Inputs ------------------------------------ */
  546. fieldset {
  547. border: 0.2rem solid #dcd7ca;
  548. padding: 2rem;
  549. }
  550. legend {
  551. font-size: 0.85em;
  552. font-weight: 700;
  553. padding: 0 1rem;
  554. }
  555. label {
  556. display: block;
  557. font-size: 1.6rem;
  558. font-weight: 400;
  559. margin: 0 0 0.5rem 0;
  560. }
  561. label.inline,
  562. input[type="checkbox"] + label {
  563. display: inline;
  564. font-weight: 400;
  565. margin-left: 0.5rem;
  566. }
  567. input[type="checkbox"] {
  568. -webkit-appearance: none;
  569. -moz-appearance: none;
  570. position: relative;
  571. top: 2px;
  572. display: inline-block;
  573. margin: 0;
  574. width: 1.5rem;
  575. min-width: 1.5rem;
  576. height: 1.5rem;
  577. background: #fff;
  578. border-radius: 0;
  579. border-style: solid;
  580. border-width: 0.1rem;
  581. border-color: #dcd7ca;
  582. box-shadow: none;
  583. cursor: pointer;
  584. }
  585. input[type="checkbox"]:checked::before {
  586. /* Use the "Yes" SVG Dashicon */
  587. content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
  588. position: absolute;
  589. display: inline-block;
  590. margin: -0.1875rem 0 0 -0.25rem;
  591. height: 1.75rem;
  592. width: 1.75rem;
  593. }
  594. input,
  595. textarea,
  596. button,
  597. .button,
  598. .faux-button,
  599. .wp-block-button__link,
  600. .wp-block-file__button {
  601. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  602. line-height: 1;
  603. }
  604. @supports ( font-variation-settings: normal ) {
  605. input,
  606. textarea,
  607. button,
  608. .button,
  609. .faux-button,
  610. .faux-button.more-link,
  611. .wp-block-button__link,
  612. .wp-block-file__button {
  613. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  614. }
  615. }
  616. input,
  617. textarea {
  618. border-color: #dcd7ca;
  619. color: #000;
  620. }
  621. code,
  622. input[type="url"],
  623. input[type="email"],
  624. input[type="tel"] {
  625. /*rtl:ignore*/
  626. direction: ltr;
  627. }
  628. input[type="text"],
  629. input[type="password"],
  630. input[type="email"],
  631. input[type="url"],
  632. input[type="date"],
  633. input[type="month"],
  634. input[type="time"],
  635. input[type="datetime"],
  636. input[type="datetime-local"],
  637. input[type="week"],
  638. input[type="number"],
  639. input[type="search"],
  640. input[type="tel"],
  641. input[type="color"],
  642. textarea {
  643. -webkit-appearance: none;
  644. -moz-appearance: none;
  645. background: #fff;
  646. border-radius: 0;
  647. border-style: solid;
  648. border-width: 0.1rem;
  649. box-shadow: none;
  650. display: block;
  651. font-size: 1.6rem;
  652. letter-spacing: -0.015em;
  653. margin: 0;
  654. max-width: 100%;
  655. padding: 1.5rem 1.8rem;
  656. width: 100%;
  657. }
  658. select {
  659. font-size: 1em;
  660. }
  661. textarea {
  662. height: 12rem;
  663. line-height: 1.5;
  664. width: 100%;
  665. }
  666. input::-webkit-input-placeholder {
  667. line-height: normal;
  668. }
  669. input:-ms-input-placeholder {
  670. line-height: normal;
  671. }
  672. input::-moz-placeholder {
  673. line-height: revert; /* Reset to the value from the user-agent stylesheet. */
  674. }
  675. input[type="search"]::-webkit-search-decoration,
  676. input[type="search"]::-webkit-search-cancel-button,
  677. input[type="search"]::-webkit-search-results-button,
  678. input[type="search"]::-webkit-search-results-decoration {
  679. display: none;
  680. }
  681. button,
  682. .button,
  683. .faux-button,
  684. .wp-block-button__link,
  685. .wp-block-file .wp-block-file__button,
  686. input[type="button"],
  687. input[type="reset"],
  688. input[type="submit"] {
  689. -webkit-appearance: none;
  690. -moz-appearance: none;
  691. background: #cd2653;
  692. border: none;
  693. border-radius: 0;
  694. color: #fff;
  695. cursor: pointer;
  696. display: inline-block;
  697. font-size: 1.5rem;
  698. font-weight: 600;
  699. letter-spacing: 0.0333em;
  700. line-height: 1.25;
  701. margin: 0;
  702. opacity: 1;
  703. padding: 1.1em 1.44em;
  704. text-align: center;
  705. text-decoration: none;
  706. text-transform: uppercase;
  707. transition: opacity 0.15s linear;
  708. }
  709. button:focus,
  710. button:hover,
  711. .button:focus,
  712. .button:hover,
  713. .faux-button:focus,
  714. .faux-button:hover,
  715. .wp-block-button .wp-block-button__link:focus,
  716. .wp-block-button .wp-block-button__link:hover,
  717. .wp-block-file .wp-block-file__button:focus,
  718. .wp-block-file .wp-block-file__button:hover,
  719. input[type="button"]:focus,
  720. input[type="button"]:hover,
  721. input[type="reset"]:focus,
  722. input[type="reset"]:hover,
  723. input[type="submit"]:focus,
  724. input[type="submit"]:hover {
  725. text-decoration: underline;
  726. }
  727. input[type="text"]:focus,
  728. input[type="email"]:focus,
  729. input[type="url"]:focus,
  730. input[type="password"]:focus,
  731. input[type="number"]:focus,
  732. input[type="tel"]:focus,
  733. input[type="range"]:focus,
  734. input[type="date"]:focus,
  735. input[type="month"]:focus,
  736. input[type="week"]:focus,
  737. input[type="time"]:focus,
  738. input[type="datetime"]:focus,
  739. input[type="datetime-local"]:focus,
  740. input[type="color"]:focus,
  741. textarea:focus {
  742. border-color: currentColor;
  743. }
  744. input[type="search"]:focus {
  745. outline: thin dotted;
  746. outline-offset: -4px;
  747. }
  748. /* Tables ------------------------------------ */
  749. table {
  750. border: 0.1rem solid #dcd7ca;
  751. border-collapse: collapse;
  752. border-spacing: 0;
  753. empty-cells: show;
  754. font-size: 1.6rem;
  755. margin: 4rem 0;
  756. max-width: 100%;
  757. overflow: hidden;
  758. width: 100%;
  759. }
  760. .alignleft > table {
  761. margin: 0;
  762. }
  763. .alignright > table {
  764. margin: 0;
  765. }
  766. th,
  767. td {
  768. border: 0.1rem solid #dcd7ca;
  769. line-height: 1.4;
  770. margin: 0;
  771. overflow: visible;
  772. padding: 0.5em;
  773. }
  774. caption {
  775. background: #dcd7ca;
  776. font-weight: 600;
  777. padding: 0.5em;
  778. text-align: center;
  779. }
  780. thead {
  781. vertical-align: bottom;
  782. white-space: nowrap;
  783. }
  784. th {
  785. font-weight: 700;
  786. }
  787. /* -------------------------------------------------------------------------- */
  788. /* 3. Helper Classes
  789. /* -------------------------------------------------------------------------- */
  790. /* Layout ------------------------------------ */
  791. .no-margin {
  792. margin: 0;
  793. }
  794. .no-padding {
  795. padding: 0;
  796. }
  797. .screen-height {
  798. min-height: 100vh;
  799. }
  800. .admin-bar .screen-height {
  801. min-height: calc(100vh - 32px);
  802. }
  803. @media (max-width: 782px) {
  804. .admin-bar .screen-height {
  805. min-height: calc(100vh - 46px);
  806. }
  807. }
  808. .screen-width {
  809. position: relative;
  810. left: calc(50% - 50vw);
  811. width: 100vw;
  812. }
  813. /* Sections ---------------------------------- */
  814. section {
  815. padding: 5rem 0;
  816. width: 100%;
  817. }
  818. .section-inner {
  819. margin-left: auto;
  820. margin-right: auto;
  821. max-width: 120rem;
  822. width: calc(100% - 4rem);
  823. }
  824. .section-inner.max-percentage {
  825. width: 100%;
  826. }
  827. .section-inner.thin {
  828. max-width: 58rem;
  829. }
  830. .section-inner.small {
  831. max-width: 80rem;
  832. }
  833. .section-inner.medium {
  834. max-width: 100rem;
  835. }
  836. .section-inner.no-margin {
  837. margin: 0;
  838. }
  839. /* Toggles ----------------------------------- */
  840. .toggle {
  841. -moz-appearance: none;
  842. -webkit-appearance: none;
  843. color: inherit;
  844. cursor: pointer;
  845. font-family: inherit;
  846. position: relative;
  847. -webkit-touch-callout: none;
  848. -webkit-user-select: none;
  849. -khtml-user-select: none;
  850. -moz-user-select: none;
  851. -ms-user-select: none;
  852. text-align: inherit;
  853. user-select: none;
  854. }
  855. button.toggle {
  856. background: none;
  857. border: none;
  858. box-shadow: none;
  859. border-radius: 0;
  860. font-size: inherit;
  861. font-weight: 400;
  862. letter-spacing: inherit;
  863. padding: 0;
  864. text-transform: none;
  865. }
  866. /* Hiding and Showing ------------------------ */
  867. .js .show-js {
  868. display: block !important;
  869. }
  870. .js .hide-js {
  871. display: none !important;
  872. }
  873. .no-js .show-no-js {
  874. display: block !important;
  875. }
  876. .no-js .hide-no-js {
  877. display: none !important;
  878. }
  879. /* Typography -------------------------------- */
  880. .font-size-xl {
  881. font-size: 1.25em;
  882. }
  883. .font-size-xs {
  884. font-size: 0.8em;
  885. }
  886. .no-select {
  887. -webkit-touch-callout: none;
  888. -webkit-user-select: none;
  889. -moz-user-select: none;
  890. -ms-user-select: none;
  891. user-select: none;
  892. }
  893. /* Colors ------------------------------------ */
  894. /* COLOR */
  895. .color-accent,
  896. .color-accent-hover:focus,
  897. .color-accent-hover:hover {
  898. color: #cd2653;
  899. }
  900. /* BACKGROUND COLOR */
  901. .bg-accent,
  902. .bg-accent-hover:focus,
  903. .bg-accent-hover:hover {
  904. background-color: #cd2653;
  905. }
  906. /* BORDER COLOR */
  907. .border-color-accent,
  908. .border-color-accent-hover:focus,
  909. .border-color-accent-hover:hover {
  910. border-color: #cd2653;
  911. }
  912. /* FILL COLOR */
  913. .fill-children-accent,
  914. .fill-children-accent * {
  915. fill: #cd2653;
  916. }
  917. .fill-children-current-color,
  918. .fill-children-current-color * {
  919. fill: currentColor;
  920. }
  921. /* Opacity ----------------------------------- */
  922. .opacity-0 {
  923. opacity: 0;
  924. }
  925. .opacity-5 {
  926. opacity: 0.05;
  927. }
  928. .opacity-10 {
  929. opacity: 0.1;
  930. }
  931. .opacity-15 {
  932. opacity: 0.15;
  933. }
  934. .opacity-20 {
  935. opacity: 0.2;
  936. }
  937. .opacity-25 {
  938. opacity: 0.25;
  939. }
  940. .opacity-30 {
  941. opacity: 0.3;
  942. }
  943. .opacity-35 {
  944. opacity: 0.35;
  945. }
  946. .opacity-40 {
  947. opacity: 0.4;
  948. }
  949. .opacity-45 {
  950. opacity: 0.45;
  951. }
  952. .opacity-50 {
  953. opacity: 0.5;
  954. }
  955. .opacity-55 {
  956. opacity: 0.55;
  957. }
  958. .opacity-60 {
  959. opacity: 0.6;
  960. }
  961. .opacity-65 {
  962. opacity: 0.65;
  963. }
  964. .opacity-70 {
  965. opacity: 0.7;
  966. }
  967. .opacity-75 {
  968. opacity: 0.75;
  969. }
  970. .opacity-80 {
  971. opacity: 0.8;
  972. }
  973. .opacity-85 {
  974. opacity: 0.85;
  975. }
  976. .opacity-90 {
  977. opacity: 0.9;
  978. }
  979. .blend-mode-exclusion {
  980. mix-blend-mode: exclusion;
  981. }
  982. .blend-mode-hue {
  983. mix-blend-mode: hue;
  984. }
  985. .blend-mode-saturation {
  986. mix-blend-mode: saturation;
  987. }
  988. .blend-mode-color {
  989. mix-blend-mode: color;
  990. }
  991. .blend-mode-luminosity {
  992. mix-blend-mode: luminosity;
  993. }
  994. /* Image Classes ----------------------------- */
  995. .bg-image {
  996. background-position: center;
  997. background-repeat: no-repeat;
  998. background-size: cover;
  999. }
  1000. .bg-attachment-fixed {
  1001. background-attachment: fixed;
  1002. }
  1003. @supports ( -webkit-overflow-scrolling: touch ) {
  1004. .bg-attachment-fixed {
  1005. background-attachment: scroll;
  1006. }
  1007. }
  1008. @media ( prefers-reduced-motion: reduce ) {
  1009. .bg-attachment-fixed {
  1010. background-attachment: scroll;
  1011. }
  1012. }
  1013. .wp-block-image.is-resized {
  1014. margin-left: auto;
  1015. margin-right: auto;
  1016. }
  1017. /* Search Form ------------------------------- */
  1018. .search-form {
  1019. align-items: stretch;
  1020. display: flex;
  1021. flex-wrap: nowrap;
  1022. margin: 0 0 -0.8rem -0.8rem;
  1023. }
  1024. .search-form .search-field,
  1025. .search-form .search-submit {
  1026. margin: 0 0 0.8rem 0.8rem;
  1027. }
  1028. .search-form label {
  1029. align-items: stretch;
  1030. display: flex;
  1031. font-size: inherit;
  1032. margin: 0;
  1033. width: 100%;
  1034. }
  1035. .search-form .search-field {
  1036. width: 100%;
  1037. }
  1038. .search-form .search-submit {
  1039. flex-shrink: 0;
  1040. }
  1041. .search-form .search-submit:focus,
  1042. .search-form .search-submit:hover {
  1043. text-decoration: none;
  1044. }
  1045. /* Social Icons ------------------------------ */
  1046. ul.social-icons {
  1047. display: flex;
  1048. flex-wrap: wrap;
  1049. margin: -0.9rem 0 0 -0.9rem;
  1050. width: calc(100% + 0.9rem);
  1051. }
  1052. ul.social-icons li {
  1053. margin: 0.9rem 0 0 0.9rem;
  1054. }
  1055. .social-icons a {
  1056. align-items: center;
  1057. background: #cd2653;
  1058. border-radius: 50%;
  1059. color: #fff;
  1060. display: flex;
  1061. height: 4.4rem;
  1062. justify-content: center;
  1063. padding: 0;
  1064. text-decoration: none;
  1065. transition: transform 0.15s ease-in-out;
  1066. width: 4.4rem;
  1067. }
  1068. .social-icons a:focus,
  1069. .social-icons a:hover {
  1070. transform: scale(1.1);
  1071. text-decoration: none;
  1072. }
  1073. /* Cover Modals ------------------------------ */
  1074. .cover-modal {
  1075. display: none;
  1076. -ms-overflow-style: none;
  1077. overflow: -moz-scrollbars-none;
  1078. }
  1079. .cover-modal::-webkit-scrollbar {
  1080. display: none !important;
  1081. }
  1082. .cover-modal.show-modal {
  1083. display: block;
  1084. cursor: pointer;
  1085. }
  1086. .cover-modal.show-modal > * {
  1087. cursor: default;
  1088. }
  1089. /* -------------------------------------------------------------------------- */
  1090. /* 4. Site Header
  1091. /* -------------------------------------------------------------------------- */
  1092. #site-header {
  1093. background: #fff;
  1094. position: relative;
  1095. }
  1096. .header-inner {
  1097. max-width: 168rem;
  1098. padding: 3.15rem 0;
  1099. z-index: 100;
  1100. }
  1101. /* Header Titles ----------------------------- */
  1102. .header-titles-wrapper {
  1103. align-items: center;
  1104. display: flex;
  1105. justify-content: center;
  1106. padding: 0 4rem;
  1107. text-align: center;
  1108. }
  1109. body:not(.enable-search-modal) .header-titles-wrapper {
  1110. justify-content: flex-start;
  1111. padding-left: 0;
  1112. text-align: left;
  1113. }
  1114. .site-title,
  1115. .site-logo,
  1116. .site-description {
  1117. margin: 0;
  1118. }
  1119. .site-title {
  1120. font-size: 2.1rem;
  1121. font-weight: 600;
  1122. line-height: 1;
  1123. }
  1124. .site-title a {
  1125. color: inherit;
  1126. display: block;
  1127. text-decoration: none;
  1128. }
  1129. .site-title a:hover,
  1130. .site-title a:focus {
  1131. text-decoration: underline;
  1132. }
  1133. .site-description {
  1134. margin-top: 1rem;
  1135. color: #6d6d6d;
  1136. font-size: 1.8rem;
  1137. font-weight: 500;
  1138. display: none;
  1139. letter-spacing: -0.0311em;
  1140. transition: all 0.15s linear;
  1141. }
  1142. .site-logo a,
  1143. .site-logo img {
  1144. display: block;
  1145. }
  1146. .header-titles .site-logo .site-logo {
  1147. margin: 0;
  1148. }
  1149. .site-logo img {
  1150. max-height: 6rem;
  1151. margin: 0 auto;
  1152. width: auto;
  1153. }
  1154. body:not(.enable-search-modal) .site-logo img {
  1155. margin: 0;
  1156. }
  1157. /* Overlay Header ---------------------------- */
  1158. .overlay-header #site-header {
  1159. background: transparent;
  1160. margin: 0;
  1161. position: absolute;
  1162. left: 0;
  1163. right: 0;
  1164. top: 0;
  1165. z-index: 2;
  1166. }
  1167. .overlay-header .header-inner {
  1168. color: #fff;
  1169. }
  1170. .overlay-header .site-description,
  1171. .overlay-header .toggle {
  1172. color: inherit;
  1173. }
  1174. .overlay-header .header-inner .toggle-wrapper::before {
  1175. background-color: currentColor;
  1176. opacity: 0.25;
  1177. }
  1178. .admin-bar.overlay-header #site-header {
  1179. top: 32px;
  1180. }
  1181. @media (max-width: 782px) {
  1182. .admin-bar.overlay-header #site-header {
  1183. top: 46px;
  1184. }
  1185. }
  1186. /* Header Navigation ------------------------- */
  1187. .header-navigation-wrapper {
  1188. display: none;
  1189. }
  1190. /* Header Toggles ---------------------------- */
  1191. .header-toggles {
  1192. display: none;
  1193. }
  1194. .header-inner .toggle {
  1195. align-items: center;
  1196. display: flex;
  1197. overflow: visible;
  1198. padding: 0 2rem;
  1199. }
  1200. .header-inner .toggle svg {
  1201. display: block;
  1202. position: relative;
  1203. z-index: 1;
  1204. }
  1205. .header-inner .toggle path {
  1206. fill: currentColor;
  1207. }
  1208. .toggle-inner {
  1209. display: flex;
  1210. justify-content: center;
  1211. height: 2.3rem;
  1212. position: relative;
  1213. }
  1214. .toggle-icon {
  1215. display: block;
  1216. overflow: hidden;
  1217. }
  1218. .toggle-inner .toggle-text {
  1219. color: #6d6d6d;
  1220. font-size: 1rem;
  1221. font-weight: 600;
  1222. position: absolute;
  1223. top: calc(100% + 0.5rem);
  1224. width: auto;
  1225. white-space: nowrap;
  1226. word-break: break-all;
  1227. }
  1228. .overlay-header .toggle-text {
  1229. color: inherit;
  1230. }
  1231. .header-inner .toggle:focus .toggle-text,
  1232. .header-inner .toggle:hover .toggle-text {
  1233. text-decoration: underline;
  1234. }
  1235. /* Search Toggle ----------------------------- */
  1236. .search-toggle {
  1237. position: absolute;
  1238. bottom: 0;
  1239. left: 0;
  1240. top: 0;
  1241. }
  1242. .search-toggle .toggle-icon,
  1243. .search-toggle svg {
  1244. height: 2.5rem;
  1245. max-width: 2.3rem;
  1246. width: 2.3rem;
  1247. }
  1248. /* Navigation Toggle ------------------------- */
  1249. .nav-toggle {
  1250. position: absolute;
  1251. bottom: 0;
  1252. right: 0;
  1253. top: 0;
  1254. width: 6.6rem;
  1255. }
  1256. .nav-toggle .toggle-icon,
  1257. .nav-toggle svg {
  1258. height: 0.8rem;
  1259. width: 2.6rem;
  1260. }
  1261. .nav-toggle .toggle-inner {
  1262. padding-top: 0.8rem;
  1263. }
  1264. /* Primary Menu ---------------------------- */
  1265. .primary-menu-wrapper {
  1266. display: none;
  1267. }
  1268. ul.primary-menu {
  1269. display: flex;
  1270. font-size: 1.8rem;
  1271. font-weight: 500;
  1272. letter-spacing: -0.0277em;
  1273. flex-wrap: wrap;
  1274. justify-content: flex-end;
  1275. margin: -0.8rem 0 0 -1.6rem;
  1276. }
  1277. .primary-menu .icon {
  1278. display: block;
  1279. height: 0.7rem;
  1280. position: absolute;
  1281. pointer-events: none;
  1282. transform: rotate(-45deg);
  1283. width: 1.3rem;
  1284. }
  1285. .primary-menu .icon::before,
  1286. .primary-menu .icon::after {
  1287. content: "";
  1288. display: block;
  1289. background-color: currentColor;
  1290. position: absolute;
  1291. bottom: calc(50% - 0.1rem);
  1292. left: 0;
  1293. }
  1294. .primary-menu .icon::before {
  1295. height: 0.9rem;
  1296. width: 0.2rem;
  1297. }
  1298. .primary-menu .icon::after {
  1299. height: 0.2rem;
  1300. width: 0.9rem;
  1301. }
  1302. .primary-menu li {
  1303. font-size: inherit;
  1304. line-height: 1.25;
  1305. position: relative;
  1306. }
  1307. .primary-menu > li {
  1308. margin: 0.8rem 0 0 1.6rem;
  1309. }
  1310. .primary-menu > li.menu-item-has-children > a {
  1311. padding-right: 2rem;
  1312. }
  1313. .primary-menu > li > .icon {
  1314. right: -0.5rem;
  1315. top: calc(50% - 0.4rem);
  1316. }
  1317. .primary-menu a {
  1318. color: inherit;
  1319. display: block;
  1320. line-height: 1.2;
  1321. text-decoration: none;
  1322. word-break: normal;
  1323. word-wrap: normal;
  1324. }
  1325. .primary-menu a:hover,
  1326. .primary-menu a:focus,
  1327. .primary-menu .current_page_ancestor {
  1328. text-decoration: underline;
  1329. }
  1330. .primary-menu li.current-menu-item > a,
  1331. .primary-menu li.current-menu-item > .link-icon-wrapper > a {
  1332. text-decoration: underline;
  1333. }
  1334. .primary-menu li.current-menu-item > a:hover,
  1335. .primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
  1336. .primary-menu li.current-menu-item > a:focus,
  1337. .primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
  1338. text-decoration: none;
  1339. }
  1340. /* SUB MENU */
  1341. .primary-menu ul {
  1342. background: #000;
  1343. border-radius: 0.4rem;
  1344. color: #fff;
  1345. font-size: 1.7rem;
  1346. opacity: 0;
  1347. padding: 1rem 0;
  1348. position: absolute;
  1349. right: 9999rem;
  1350. top: calc(100% + 2rem);
  1351. transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
  1352. transform: translateY(0.6rem);
  1353. width: 20rem;
  1354. z-index: 1;
  1355. }
  1356. .primary-menu li.menu-item-has-children:hover > ul,
  1357. .primary-menu li.menu-item-has-children:focus > ul,
  1358. .primary-menu li.menu-item-has-children.focus > ul {
  1359. right: 0;
  1360. opacity: 1;
  1361. transform: translateY(0);
  1362. transition: opacity 0.15s linear, transform 0.15s linear;
  1363. }
  1364. .primary-menu ul::before,
  1365. .primary-menu ul::after {
  1366. content: "";
  1367. display: block;
  1368. position: absolute;
  1369. bottom: 100%;
  1370. }
  1371. .primary-menu ul::before {
  1372. height: 2rem;
  1373. left: 0;
  1374. right: 0;
  1375. }
  1376. .primary-menu ul::after {
  1377. border: 0.8rem solid transparent;
  1378. border-bottom-color: #000;
  1379. right: 1.8rem;
  1380. }
  1381. .primary-menu ul a {
  1382. background: transparent;
  1383. border: none;
  1384. color: inherit;
  1385. display: block;
  1386. padding: 1rem 2rem;
  1387. transition: background-color 0.15s linear;
  1388. width: 100%;
  1389. }
  1390. .primary-menu ul li.menu-item-has-children > a {
  1391. padding-right: 4.5rem;
  1392. }
  1393. .primary-menu ul li.menu-item-has-children .icon {
  1394. position: absolute;
  1395. right: 1.5rem;
  1396. top: calc(50% - 0.5rem);
  1397. }
  1398. /* DEEP DOWN */
  1399. .primary-menu ul ul {
  1400. top: -1rem;
  1401. }
  1402. .primary-menu ul li.menu-item-has-children:hover > ul,
  1403. .primary-menu ul li.menu-item-has-children:focus > ul,
  1404. .primary-menu ul li.menu-item-has-children.focus > ul {
  1405. right: calc(100% + 2rem);
  1406. }
  1407. .primary-menu ul ul::before {
  1408. bottom: 0;
  1409. height: auto;
  1410. left: auto;
  1411. right: -2rem;
  1412. top: 0;
  1413. width: 2rem;
  1414. }
  1415. .primary-menu ul ul::after {
  1416. border-bottom-color: transparent;
  1417. /*rtl:ignore*/
  1418. border-left-color: #000;
  1419. bottom: auto;
  1420. right: -1.6rem;
  1421. top: 2rem;
  1422. }
  1423. .rtl .primary-menu ul ul::after {
  1424. transform: rotate(180deg);
  1425. }
  1426. /*
  1427. * Enable nav submenu expansion with tapping on arrows on large-viewport
  1428. * touch interfaces (e.g. tablets or laptops with touch screens).
  1429. * These rules are supported by all browsers (>IE11) and when JS is disabled.
  1430. */
  1431. @media (any-pointer: coarse) {
  1432. .primary-menu > li.menu-item-has-children > a {
  1433. padding-right: 0;
  1434. margin-right: 2rem;
  1435. }
  1436. .primary-menu ul li.menu-item-has-children > a {
  1437. margin-right: 4.5rem;
  1438. padding-right: 0;
  1439. width: unset;
  1440. }
  1441. }
  1442. /* Repeat previous rules for IE11 (when JS enabled for polyfill). */
  1443. body.touch-enabled .primary-menu > li.menu-item-has-children > a {
  1444. padding-right: 0;
  1445. margin-right: 2rem;
  1446. }
  1447. body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
  1448. margin-right: 4.5rem;
  1449. padding-right: 0;
  1450. width: unset;
  1451. }
  1452. /* -------------------------------------------------------------------------- */
  1453. /* 5. Menu Modal
  1454. /* -------------------------------------------------------------------------- */
  1455. .menu-modal {
  1456. background: #fff;
  1457. display: none;
  1458. opacity: 0;
  1459. overflow-y: auto;
  1460. overflow-x: hidden;
  1461. position: fixed;
  1462. bottom: 0;
  1463. left: -99999rem;
  1464. right: 99999rem;
  1465. top: 0;
  1466. transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
  1467. z-index: 99;
  1468. }
  1469. .admin-bar .menu-modal {
  1470. top: 32px;
  1471. }
  1472. @media (max-width: 782px) {
  1473. .admin-bar .menu-modal {
  1474. top: 46px;
  1475. }
  1476. }
  1477. .menu-modal.show-modal {
  1478. display: flex;
  1479. }
  1480. .menu-modal.active {
  1481. left: 0;
  1482. opacity: 1;
  1483. right: 0;
  1484. transition: opacity 0.25s ease-out;
  1485. }
  1486. .menu-modal-inner {
  1487. background: #fff;
  1488. display: flex;
  1489. justify-content: stretch;
  1490. overflow: auto;
  1491. -ms-overflow-style: auto;
  1492. width: 100%;
  1493. }
  1494. .menu-wrapper {
  1495. display: flex;
  1496. flex-direction: column;
  1497. justify-content: space-between;
  1498. position: relative;
  1499. }
  1500. button.close-nav-toggle {
  1501. align-items: center;
  1502. display: flex;
  1503. font-size: 1.6rem;
  1504. font-weight: 500;
  1505. justify-content: flex-end;
  1506. padding: 3.1rem 0;
  1507. width: 100%;
  1508. }
  1509. button.close-nav-toggle svg {
  1510. height: 1.6rem;
  1511. width: 1.6rem;
  1512. }
  1513. button.close-nav-toggle .toggle-text {
  1514. margin-right: 1.6rem;
  1515. }
  1516. .menu-modal .menu-top {
  1517. flex-shrink: 0;
  1518. }
  1519. /* Main Menu --------------------------------- */
  1520. .modal-menu {
  1521. position: relative;
  1522. left: calc(50% - 50vw);
  1523. width: 100vw;
  1524. }
  1525. .modal-menu li {
  1526. border-color: #dedfdf;
  1527. border-style: solid;
  1528. border-width: 0.1rem 0 0 0;
  1529. display: flex;
  1530. flex-wrap: wrap;
  1531. line-height: 1;
  1532. justify-content: flex-start;
  1533. margin: 0;
  1534. }
  1535. .modal-menu > li > a,
  1536. .modal-menu > li > .ancestor-wrapper > a {
  1537. font-size: 2rem;
  1538. font-weight: 700;
  1539. letter-spacing: -0.0375em;
  1540. }
  1541. .modal-menu > li:last-child {
  1542. border-bottom-width: 0.1rem;
  1543. }
  1544. .modal-menu .ancestor-wrapper {
  1545. display: flex;
  1546. justify-content: space-between;
  1547. width: 100%;
  1548. }
  1549. .modal-menu a {
  1550. display: block;
  1551. padding: 2rem 2.5rem;
  1552. text-decoration: none;
  1553. width: 100%;
  1554. }
  1555. .modal-menu a:focus,
  1556. .modal-menu a:hover,
  1557. .modal-menu li.current-menu-item > .ancestor-wrapper > a,
  1558. .modal-menu li.current_page_ancestor > .ancestor-wrapper > a {
  1559. text-decoration: underline;
  1560. }
  1561. button.sub-menu-toggle {
  1562. border-left: 0.1rem solid #dedfdf;
  1563. flex-shrink: 0;
  1564. margin: 1rem 0;
  1565. padding: 0 2.5rem;
  1566. }
  1567. button.sub-menu-toggle svg {
  1568. height: 0.9rem;
  1569. transition: transform 0.15s linear;
  1570. width: 1.5rem;
  1571. }
  1572. button.sub-menu-toggle.active svg {
  1573. transform: rotate(180deg);
  1574. }
  1575. .modal-menu ul {
  1576. display: none;
  1577. margin: 0;
  1578. width: 100%;
  1579. }
  1580. .modal-menu ul li {
  1581. border-left-width: 1rem;
  1582. }
  1583. .modal-menu ul li a {
  1584. color: inherit;
  1585. font-weight: 500;
  1586. }
  1587. /* Main menu animation ----------------------- */
  1588. .menu-wrapper .menu-item {
  1589. position: relative;
  1590. }
  1591. .menu-wrapper .active {
  1592. display: block;
  1593. }
  1594. .menu-wrapper.is-toggling {
  1595. pointer-events: none;
  1596. }
  1597. .menu-wrapper.is-toggling .menu-item {
  1598. position: absolute;
  1599. top: 0;
  1600. left: 0;
  1601. margin: 0;
  1602. width: 100%;
  1603. }
  1604. .menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
  1605. width: auto;
  1606. }
  1607. .menu-wrapper.is-animating .menu-item,
  1608. .menu-wrapper.is-animating .toggling-target {
  1609. transition-duration: 250ms;
  1610. }
  1611. .menu-wrapper.is-animating .menu-item {
  1612. transition-property: transform;
  1613. }
  1614. .menu-wrapper.is-toggling .toggling-target {
  1615. display: block;
  1616. position: absolute;
  1617. top: 0;
  1618. left: 0;
  1619. opacity: 1;
  1620. }
  1621. .menu-wrapper.is-toggling .toggling-target.active {
  1622. opacity: 0;
  1623. }
  1624. .menu-wrapper.is-animating.is-toggling .toggling-target {
  1625. display: block;
  1626. transition-property: opacity;
  1627. opacity: 0;
  1628. }
  1629. .menu-wrapper.is-animating.is-toggling .toggling-target.active {
  1630. opacity: 1;
  1631. }
  1632. .menu-wrapper.is-toggling .modal-menu > li:last-child li {
  1633. border-top-color: transparent;
  1634. border-bottom-width: 0.1rem;
  1635. }
  1636. @media (prefers-reduced-motion: reduce) {
  1637. .menu-wrapper.is-animating .menu-item,
  1638. .menu-wrapper.is-animating .toggling-target {
  1639. transition-duration: 1ms !important;
  1640. }
  1641. }
  1642. /* Expanded Menu ----------------------------- */
  1643. .expanded-menu {
  1644. display: none;
  1645. }
  1646. .mobile-menu {
  1647. display: block;
  1648. }
  1649. /* Menu Bottom ------------------------------- */
  1650. .menu-bottom {
  1651. flex-shrink: 0;
  1652. padding: 4rem 0;
  1653. }
  1654. .menu-bottom nav {
  1655. width: 100%;
  1656. }
  1657. .menu-copyright {
  1658. display: none;
  1659. font-size: 1.6rem;
  1660. font-weight: 500;
  1661. margin: 0;
  1662. }
  1663. .menu-copyright a:focus,
  1664. .menu-copyright a:hover {
  1665. text-decoration: underline;
  1666. }
  1667. .menu-bottom .social-menu {
  1668. justify-content: center;
  1669. }
  1670. /* -------------------------------------------------------------------------- */
  1671. /* 6. Search Modal
  1672. /* -------------------------------------------------------------------------- */
  1673. .search-modal {
  1674. background: rgba(0, 0, 0, 0.2);
  1675. display: none;
  1676. opacity: 0;
  1677. position: fixed;
  1678. bottom: 0;
  1679. left: -9999rem;
  1680. top: 0;
  1681. transition: opacity 0.2s linear, left 0s 0.2s linear;
  1682. width: 100%;
  1683. z-index: 999;
  1684. }
  1685. .admin-bar .search-modal.active {
  1686. top: 32px;
  1687. }
  1688. @media (max-width: 782px) {
  1689. .admin-bar .search-modal.active {
  1690. top: 46px;
  1691. }
  1692. }
  1693. .search-modal-inner {
  1694. background: #fff;
  1695. transform: translateY(-100%);
  1696. transition: transform 0.15s linear, box-shadow 0.15s linear;
  1697. }
  1698. .search-modal-inner .section-inner {
  1699. display: flex;
  1700. justify-content: space-between;
  1701. max-width: 168rem;
  1702. }
  1703. .search-modal.active {
  1704. left: 0;
  1705. opacity: 1;
  1706. transition: opacity 0.2s linear;
  1707. }
  1708. .search-modal.active .search-modal-inner {
  1709. box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.08);
  1710. transform: translateY(0);
  1711. transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear;
  1712. }
  1713. button.search-untoggle {
  1714. align-items: center;
  1715. display: flex;
  1716. flex-shrink: 0;
  1717. justify-content: center;
  1718. margin-right: -2.5rem;
  1719. padding: 0 2.5rem;
  1720. }
  1721. .search-modal button.search-untoggle {
  1722. color: inherit;
  1723. }
  1724. .search-modal.active .search-untoggle {
  1725. animation: popIn both 0.3s 0.2s;
  1726. }
  1727. .search-untoggle svg {
  1728. height: 1.5rem;
  1729. transition: transform 0.15s ease-in-out;
  1730. width: 1.5rem;
  1731. }
  1732. .search-untoggle:focus svg,
  1733. .search-untoggle:hover svg {
  1734. transform: scale(1.15);
  1735. }
  1736. /* Modal Search Form ------------------------- */
  1737. .search-modal form {
  1738. margin: 0;
  1739. position: relative;
  1740. width: 100%;
  1741. }
  1742. .search-modal .search-field {
  1743. background: none;
  1744. border: none;
  1745. border-radius: 0;
  1746. color: inherit;
  1747. font-size: 2rem;
  1748. letter-spacing: -0.0277em;
  1749. height: 8.4rem;
  1750. margin: 0 0 0 -2rem;
  1751. max-width: calc(100% + 2rem);
  1752. padding: 0 0 0 2rem;
  1753. width: calc(100% + 2rem);
  1754. }
  1755. .search-modal .search-field::-webkit-input-placeholder {
  1756. color: inherit;
  1757. }
  1758. .search-modal .search-field:-ms-input-placeholder {
  1759. color: inherit;
  1760. }
  1761. .search-modal .search-field::-moz-placeholder {
  1762. color: inherit;
  1763. line-height: 4;
  1764. }
  1765. .search-modal .search-submit {
  1766. position: absolute;
  1767. right: -9999rem;
  1768. top: 50%;
  1769. transform: translateY(-50%);
  1770. }
  1771. .search-modal .search-submit:focus {
  1772. right: 0;
  1773. }
  1774. /* -------------------------------------------------------------------------- */
  1775. /* 7a. Template: Cover Template
  1776. /* -------------------------------------------------------------------------- */
  1777. .cover-header {
  1778. display: flex;
  1779. overflow: hidden;
  1780. }
  1781. .cover-header-inner-wrapper {
  1782. display: flex;
  1783. position: relative;
  1784. flex-direction: column;
  1785. justify-content: flex-end;
  1786. width: 100%;
  1787. }
  1788. .cover-header-inner {
  1789. padding: 10rem 0 5rem 0;
  1790. width: 100%;
  1791. }
  1792. .cover-color-overlay,
  1793. .cover-color-overlay::before {
  1794. position: absolute;
  1795. bottom: 0;
  1796. left: 0;
  1797. right: 0;
  1798. top: 0;
  1799. }
  1800. .cover-color-overlay::before {
  1801. background: currentColor;
  1802. content: "";
  1803. display: block;
  1804. }
  1805. .cover-header .entry-header {
  1806. position: relative;
  1807. width: 100%;
  1808. z-index: 1;
  1809. }
  1810. .cover-header .entry-header * {
  1811. color: #fff;
  1812. }
  1813. body.template-cover .entry-header {
  1814. background: transparent;
  1815. padding: 0;
  1816. }
  1817. .cover-header h1,
  1818. .cover-header h2,
  1819. .cover-header h3,
  1820. .cover-header h4,
  1821. .cover-header h5,
  1822. .cover-header h6,
  1823. .cover-header .faux-heading {
  1824. color: inherit;
  1825. }
  1826. .cover-header .entry-header a {
  1827. color: inherit;
  1828. }
  1829. /* To The Content ---------------------------- */
  1830. .to-the-content-wrapper {
  1831. position: absolute;
  1832. left: 0;
  1833. right: 0;
  1834. top: calc(100% + 0.5rem);
  1835. }
  1836. .to-the-content {
  1837. align-items: center;
  1838. display: flex;
  1839. justify-content: center;
  1840. height: 4rem;
  1841. text-decoration: none;
  1842. }
  1843. .to-the-content svg {
  1844. height: 2rem;
  1845. transition: transform 0.15s linear;
  1846. transform: translateY(0);
  1847. width: 1.767rem;
  1848. }
  1849. .to-the-content:focus svg,
  1850. .to-the-content:hover svg {
  1851. transform: translateY(20%);
  1852. }
  1853. /* -------------------------------------------------------------------------- */
  1854. /* 7c. Template: Full Width
  1855. /* -------------------------------------------------------------------------- */
  1856. body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
  1857. body.template-full-width [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  1858. max-width: 120rem;
  1859. }
  1860. body.template-full-width .entry-content .alignleft,
  1861. body.template-full-width .entry-content .alignright {
  1862. position: static;
  1863. }
  1864. body.template-full-width .entry-content .alignleft,
  1865. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
  1866. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
  1867. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft {
  1868. /*rtl:ignore*/
  1869. margin-left: 0;
  1870. position: static;
  1871. }
  1872. body.template-full-width .entry-content > .alignleft,
  1873. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
  1874. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
  1875. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  1876. /*rtl:ignore*/
  1877. margin-left: 2rem;
  1878. position: static;
  1879. }
  1880. body.template-full-width .entry-content .alignright,
  1881. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
  1882. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
  1883. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright {
  1884. /*rtl:ignore*/
  1885. margin-right: 0;
  1886. position: static;
  1887. }
  1888. body.template-full-width .entry-content > .alignright,
  1889. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
  1890. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
  1891. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  1892. /*rtl:ignore*/
  1893. margin-right: 2rem;
  1894. position: static;
  1895. }
  1896. /* -------------------------------------------------------------------------- */
  1897. /* 8. Post: Archive
  1898. /* -------------------------------------------------------------------------- */
  1899. /* Archive Header ---------------------------- */
  1900. .archive-header {
  1901. background-color: #fff;
  1902. padding: 4rem 0;
  1903. }
  1904. .reduced-spacing .archive-header {
  1905. padding-bottom: 2rem;
  1906. }
  1907. .archive-title {
  1908. font-size: 2.4rem;
  1909. font-weight: 700;
  1910. letter-spacing: -0.026666667em;
  1911. margin: 0;
  1912. }
  1913. .archive-subtitle p:last-child {
  1914. margin-bottom: 0;
  1915. }
  1916. /* Posts ------------------------------------- */
  1917. body:not(.singular) main > article:first-of-type {
  1918. padding: 4rem 0 0;
  1919. }
  1920. /* Search Results ---------------------------- */
  1921. .no-search-results-form {
  1922. padding-top: 5rem;
  1923. }
  1924. /* -------------------------------------------------------------------------- */
  1925. /* 9. Post: Single
  1926. /* -------------------------------------------------------------------------- */
  1927. /* Post Header ------------------------------- */
  1928. .singular .entry-header {
  1929. background-color: #fff;
  1930. padding: 4rem 0;
  1931. }
  1932. .entry-categories {
  1933. line-height: 1.25;
  1934. margin-bottom: 2rem;
  1935. }
  1936. .entry-categories-inner {
  1937. justify-content: center;
  1938. display: flex;
  1939. flex-wrap: wrap;
  1940. margin: -0.5rem 0 0 -1rem;
  1941. }
  1942. .entry-categories a {
  1943. border-bottom: 0.15rem solid currentColor;
  1944. font-size: 1.4rem;
  1945. font-weight: 700;
  1946. letter-spacing: 0.036666667em;
  1947. margin: 0.5rem 0 0 1rem;
  1948. text-decoration: none;
  1949. text-transform: uppercase;
  1950. }
  1951. .entry-categories a:focus,
  1952. .entry-categories a:hover {
  1953. border-bottom-color: transparent;
  1954. }
  1955. h1.entry-title,
  1956. h2.entry-title {
  1957. margin: 0;
  1958. }
  1959. .entry-title a {
  1960. color: inherit;
  1961. text-decoration: none;
  1962. }
  1963. .entry-title a:focus,
  1964. .entry-title a:hover {
  1965. text-decoration: underline;
  1966. }
  1967. .intro-text {
  1968. margin-top: 2rem;
  1969. }
  1970. .singular .intro-text {
  1971. font-size: 2rem;
  1972. letter-spacing: -0.0315em;
  1973. line-height: 1.4;
  1974. }
  1975. /* POST META */
  1976. .post-meta-single-top .post-meta {
  1977. justify-content: center;
  1978. }
  1979. .post-meta-wrapper {
  1980. margin-top: 2rem;
  1981. margin-right: auto;
  1982. margin-left: auto;
  1983. max-width: 58rem;
  1984. width: 100%;
  1985. }
  1986. .post-meta {
  1987. color: #6d6d6d;
  1988. display: flex;
  1989. flex-wrap: wrap;
  1990. font-size: 1.5rem;
  1991. font-weight: 500;
  1992. list-style: none;
  1993. margin: -1rem 0 0 -2rem;
  1994. }
  1995. .post-meta li {
  1996. flex-shrink: 0;
  1997. letter-spacing: -0.016875em;
  1998. margin: 1rem 0 0 2rem;
  1999. max-width: calc(100% - 2rem);
  2000. }
  2001. .post-meta a {
  2002. color: inherit;
  2003. text-decoration: none;
  2004. }
  2005. .post-meta a:focus,
  2006. .post-meta a:hover {
  2007. text-decoration: underline;
  2008. }
  2009. .post-meta .meta-wrapper {
  2010. align-items: center;
  2011. display: flex;
  2012. flex-wrap: nowrap;
  2013. }
  2014. .post-meta .meta-icon {
  2015. flex-shrink: 0;
  2016. margin-right: 1rem;
  2017. }
  2018. .sticky .post-sticky {
  2019. color: inherit;
  2020. }
  2021. .post-meta .post-author .meta-icon svg {
  2022. width: 1.6rem;
  2023. height: 1.8rem;
  2024. }
  2025. .post-meta .post-categories .meta-icon svg {
  2026. width: 1.8rem;
  2027. height: 1.7rem;
  2028. }
  2029. .post-meta .post-comment-link .meta-icon svg {
  2030. width: 1.8rem;
  2031. height: 1.8rem;
  2032. }
  2033. .post-meta .post-date .meta-icon svg {
  2034. width: 1.7rem;
  2035. height: 1.8rem;
  2036. }
  2037. .post-meta .post-edit .meta-icon svg {
  2038. width: 1.8rem;
  2039. height: 1.8rem;
  2040. }
  2041. .post-meta .post-sticky .meta-icon svg {
  2042. width: 1.5rem;
  2043. height: 1.8rem;
  2044. }
  2045. .post-meta .post-tags .meta-icon svg {
  2046. width: 1.8rem;
  2047. height: 1.8rem;
  2048. }
  2049. .post-meta svg * {
  2050. fill: currentColor;
  2051. }
  2052. /* Featured Media ---------------------------- */
  2053. .featured-media {
  2054. margin-top: 5rem;
  2055. position: relative;
  2056. }
  2057. .singular .featured-media {
  2058. margin-top: 0;
  2059. }
  2060. .singular .featured-media-inner {
  2061. position: relative;
  2062. left: calc(50% - 50vw);
  2063. width: 100vw;
  2064. }
  2065. .singular .featured-media::before {
  2066. background: #fff;
  2067. content: "";
  2068. display: block;
  2069. position: absolute;
  2070. bottom: 50%;
  2071. left: 0;
  2072. right: 0;
  2073. top: 0;
  2074. }
  2075. .featured-media img {
  2076. margin: 0 auto;
  2077. }
  2078. .featured-media figcaption {
  2079. margin: 1.5rem auto 0 auto;
  2080. text-align: center;
  2081. width: calc(100% - 5rem);
  2082. }
  2083. .post-inner {
  2084. padding-top: 5rem;
  2085. }
  2086. .reduced-spacing.missing-post-thumbnail .post-inner {
  2087. padding-top: 0;
  2088. }
  2089. /* Post Footer ------------------------------- */
  2090. /* POST NAV LINKS */
  2091. .post-nav-links {
  2092. border-radius: 0.4rem;
  2093. display: flex;
  2094. font-size: 0.9em;
  2095. font-weight: 600;
  2096. line-height: 1;
  2097. margin: 3em auto 0 auto;
  2098. padding: 0;
  2099. width: calc(100% - 4rem);
  2100. max-width: 58rem;
  2101. }
  2102. .post-nav-links > span.label {
  2103. padding: 1em 0;
  2104. }
  2105. .post-nav-links > * {
  2106. padding: 1em 0.75em;
  2107. }
  2108. /* POST META BOTTOM */
  2109. .post-meta-wrapper.post-meta-single-bottom {
  2110. margin-top: 3rem;
  2111. }
  2112. /* Author Bio -------------------------------- */
  2113. .author-bio {
  2114. margin-top: 4rem;
  2115. margin-right: auto;
  2116. margin-left: auto;
  2117. max-width: 58rem;
  2118. width: 100%;
  2119. }
  2120. .hide-avatars .author-bio {
  2121. padding-left: 0;
  2122. }
  2123. .author-bio .author-title-wrapper {
  2124. align-items: center;
  2125. display: flex;
  2126. margin: 0 0 1rem 0;
  2127. }
  2128. .author-bio .avatar {
  2129. border-radius: 50%;
  2130. margin-right: 1.5rem;
  2131. height: 5rem;
  2132. width: 5rem;
  2133. }
  2134. .hide-avatars img.avatar {
  2135. display: none;
  2136. }
  2137. .author-bio p:last-child {
  2138. margin-bottom: 0;
  2139. }
  2140. .author-bio .author-title {
  2141. margin: 0;
  2142. }
  2143. .author-bio .author-link {
  2144. display: block;
  2145. font-size: 1.6rem;
  2146. font-weight: 600;
  2147. margin-top: 1em;
  2148. text-decoration: none;
  2149. }
  2150. .author-bio .author-link:focus,
  2151. .author-bio .author-link:hover {
  2152. text-decoration: underline;
  2153. }
  2154. /* Single Pagination ------------------------- */
  2155. .pagination-single {
  2156. font-size: 1.8rem;
  2157. margin-top: 5rem;
  2158. }
  2159. .pagination-single-inner {
  2160. display: flex;
  2161. flex-direction: column;
  2162. }
  2163. .pagination-single hr:first-child {
  2164. margin: 0 0 2.8rem 0;
  2165. }
  2166. .pagination-single hr:last-child {
  2167. margin: 2.8rem 0 0.8rem 0;
  2168. }
  2169. .pagination-single a {
  2170. align-items: baseline;
  2171. display: flex;
  2172. font-weight: 600;
  2173. letter-spacing: -0.0275em;
  2174. text-decoration: none;
  2175. flex: 1;
  2176. }
  2177. .pagination-single a + a {
  2178. margin-top: 1rem;
  2179. }
  2180. .pagination-single a .arrow {
  2181. margin-right: 1rem;
  2182. }
  2183. .pagination-single a:focus .title,
  2184. .pagination-single a:hover .title {
  2185. text-decoration: underline;
  2186. }
  2187. /* -------------------------------------------------------------------------- */
  2188. /* 10. Blocks
  2189. /* -------------------------------------------------------------------------- */
  2190. /* Block Colors ------------------------------ */
  2191. .has-text-color a {
  2192. color: inherit;
  2193. }
  2194. /* CUSTOM COLORS */
  2195. :root .has-accent-color {
  2196. color: #cd2653;
  2197. }
  2198. :root .has-accent-background-color {
  2199. background-color: #cd2653;
  2200. color: #fff;
  2201. }
  2202. :root .has-primary-color {
  2203. color: #000;
  2204. }
  2205. :root .has-primary-background-color {
  2206. background-color: #000;
  2207. color: #f5efe0;
  2208. }
  2209. :root .has-secondary-color {
  2210. color: #6d6d6d;
  2211. }
  2212. :root .has-secondary-background-color {
  2213. background-color: #6d6d6d;
  2214. color: #fff;
  2215. }
  2216. :root .has-subtle-background-color {
  2217. color: #dcd7ca;
  2218. }
  2219. :root .has-subtle-background-background-color {
  2220. background-color: #dcd7ca;
  2221. color: #000;
  2222. }
  2223. :root .has-background-color {
  2224. color: #f5efe0;
  2225. }
  2226. :root .has-background-background-color {
  2227. background-color: #f5efe0;
  2228. color: #000;
  2229. }
  2230. /* Block Typography Classes ------------------ */
  2231. .has-text-align-left {
  2232. /*rtl:ignore*/
  2233. text-align: left;
  2234. }
  2235. .has-text-align-center {
  2236. text-align: center;
  2237. }
  2238. .has-text-align-right {
  2239. text-align: right;
  2240. }
  2241. .has-drop-cap:not(:focus)::first-letter {
  2242. color: #cd2653;
  2243. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2244. font-size: 5.1em;
  2245. font-weight: 800;
  2246. margin: 0.05em 0.1em 0 0;
  2247. }
  2248. .has-drop-cap:not(:focus)::first-letter::after {
  2249. content: "";
  2250. display: table;
  2251. clear: both;
  2252. }
  2253. .has-drop-cap:not(:focus)::after {
  2254. padding: 0;
  2255. }
  2256. /* Block Font Families ----------------------- */
  2257. .has-drop-cap:not(:focus)::first-letter,
  2258. .entry-content .wp-block-archives,
  2259. .entry-content .wp-block-categories,
  2260. .entry-content .wp-block-cover-image,
  2261. .entry-content .wp-block-latest-comments,
  2262. .entry-content .wp-block-latest-posts,
  2263. .entry-content .wp-block-pullquote,
  2264. .entry-content .wp-block-quote.is-large,
  2265. .entry-content .wp-block-quote.is-style-large {
  2266. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2267. }
  2268. @supports ( font-variation-settings: normal ) {
  2269. .has-drop-cap:not(:focus)::first-letter,
  2270. .entry-content .wp-block-archives,
  2271. .entry-content .wp-block-categories,
  2272. .entry-content .wp-block-latest-posts,
  2273. .entry-content .wp-block-latest-comments,
  2274. .entry-content .wp-block-cover-image p,
  2275. .entry-content .wp-block-pullquote {
  2276. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2277. }
  2278. }
  2279. /* Block Font Sizes -------------------------- */
  2280. .entry-content .has-small-font-size {
  2281. font-size: 0.842em;
  2282. }
  2283. .entry-content .has-normal-font-size,
  2284. .entry-content .has-regular-font-size {
  2285. font-size: 1em;
  2286. }
  2287. .entry-content .has-medium-font-size {
  2288. font-size: 1.1em;
  2289. line-height: 1.45;
  2290. }
  2291. .entry-content .has-large-font-size {
  2292. font-size: 1.25em;
  2293. line-height: 1.4;
  2294. }
  2295. .entry-content .has-larger-font-size {
  2296. font-size: 1.5em;
  2297. line-height: 1.3;
  2298. }
  2299. /* Block: Base Margins ----------------------- */
  2300. *[class*="_inner-container"] > *:first-child {
  2301. margin-top: 0;
  2302. }
  2303. *[class*="_inner-container"] > *:last-child {
  2304. margin-bottom: 0;
  2305. }
  2306. .wp-block-archives:not(.alignwide):not(.alignfull),
  2307. .wp-block-categories:not(.alignwide):not(.alignfull),
  2308. .wp-block-code,
  2309. .wp-block-columns:not(.alignwide):not(.alignfull),
  2310. .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2311. .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2312. .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2313. .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
  2314. .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2315. .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
  2316. .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
  2317. .wp-block-media-text:not(.alignwide):not(.alignfull),
  2318. .wp-block-preformatted,
  2319. .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
  2320. .wp-block-quote,
  2321. .wp-block-quote.is-large,
  2322. .wp-block-quote.is-style-large,
  2323. .wp-block-verse,
  2324. .wp-block-video:not(.alignwide):not(.alignfull) {
  2325. margin-bottom: 3rem;
  2326. margin-top: 3rem;
  2327. }
  2328. /* Block: Shared Nesting Alignment Resets ---- */
  2329. [class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
  2330. [class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
  2331. margin-left: auto;
  2332. margin-right: auto;
  2333. max-width: 58rem;
  2334. }
  2335. /* Block: Shared Widget Styles --------------- */
  2336. .wp-block-archives,
  2337. .wp-block-categories,
  2338. .wp-block-latest-posts,
  2339. .wp-block-latest-comments {
  2340. list-style: none;
  2341. margin-left: 0;
  2342. }
  2343. .wp-block-archives ul,
  2344. .wp-block-categories ul,
  2345. .wp-block-latest-posts ul,
  2346. .wp-block-latest-comments ul {
  2347. list-style: none;
  2348. }
  2349. .entry-content .wp-block-archives > li,
  2350. .entry-content .wp-block-categories > li,
  2351. .entry-content .wp-block-latest-posts > li,
  2352. .entry-content .wp-block-latest-comment > li {
  2353. margin-left: 0;
  2354. }
  2355. .entry-content .wp-block-archives > li:last-child,
  2356. .entry-content .wp-block-categories > li:last-child,
  2357. .entry-content .wp-block-latest-posts > li:last-child,
  2358. .entry-content .wp-block-latest-comment > li:last-child {
  2359. margin-bottom: 0;
  2360. }
  2361. .entry-content .wp-block-archives *,
  2362. .entry-content .wp-block-categories *,
  2363. .entry-content .wp-block-latest-posts *,
  2364. .entry-content .wp-block-latest-comments * {
  2365. font-family: inherit;
  2366. }
  2367. .entry-content .wp-block-archives li,
  2368. .entry-content .wp-block-categories li,
  2369. .entry-content .wp-block-latest-posts li {
  2370. color: #6d6d6d;
  2371. }
  2372. .wp-block-archives a,
  2373. .wp-block-categories a,
  2374. .wp-block-latest-posts a,
  2375. .wp-block-latest-comments a {
  2376. font-weight: 700;
  2377. text-decoration: none;
  2378. }
  2379. .wp-block-archives a:hover,
  2380. .wp-block-categories a:hover,
  2381. .wp-block-latest-posts a:hover,
  2382. .wp-block-latest-comments a:hover,
  2383. .wp-block-archives a:focus,
  2384. .wp-block-categories a:focus,
  2385. .wp-block-latest-posts a:focus,
  2386. .wp-block-latest-comments a:focus {
  2387. text-decoration: underline;
  2388. }
  2389. .wp-block-latest-posts a,
  2390. .wp-block-latest-comments__comment-meta {
  2391. font-weight: 700;
  2392. letter-spacing: -0.025em;
  2393. line-height: 1.25;
  2394. }
  2395. .wp-block-latest-comments__comment-date,
  2396. .wp-block-latest-posts__post-date {
  2397. color: #6d6d6d;
  2398. font-size: 0.7em;
  2399. font-weight: 600;
  2400. letter-spacing: normal;
  2401. margin-top: 0.15em;
  2402. }
  2403. /* Block: Shared Media Styles ---------------- */
  2404. .wp-block-embed figcaption,
  2405. .wp-block-image figcaption {
  2406. color: #6d6d6d;
  2407. font-size: 1.4rem;
  2408. margin-bottom: 0;
  2409. margin-top: 1.5rem;
  2410. }
  2411. /* Block: Audio ------------------------------ */
  2412. .wp-block-audio audio {
  2413. width: 100%;
  2414. }
  2415. /* Block: Button ----------------------------- */
  2416. .wp-block-button {
  2417. margin: 3rem 0;
  2418. }
  2419. .wp-block-button.is-style-outline {
  2420. color: #cd2653;
  2421. }
  2422. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  2423. color: inherit;
  2424. }
  2425. .is-style-outline .wp-block-button__link {
  2426. padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
  2427. }
  2428. /* Block: Columns ---------------------------- */
  2429. .wp-block-columns.alignfull,
  2430. .alignfull:not(.has-background) .wp-block-columns {
  2431. padding-left: 2rem;
  2432. padding-right: 2rem;
  2433. }
  2434. .wp-block-column {
  2435. margin-bottom: 3.2rem;
  2436. }
  2437. .wp-block-column > *:first-child {
  2438. margin-top: 0;
  2439. }
  2440. .wp-block-column > *:last-child {
  2441. margin-bottom: 0;
  2442. }
  2443. /* Block: Cover ------------------------------ */
  2444. .wp-block-cover-image .wp-block-cover__inner-container,
  2445. .wp-block-cover .wp-block-cover__inner-container {
  2446. width: calc(100% - 4rem);
  2447. padding: 2rem 0;
  2448. }
  2449. .wp-block-cover-image .wp-block-cover-image-text,
  2450. .wp-block-cover-image .wp-block-cover-text,
  2451. .wp-block-cover-image h2,
  2452. .wp-block-cover .wp-block-cover-image-text,
  2453. .wp-block-cover .wp-block-cover-text,
  2454. .wp-block-cover h2 {
  2455. max-width: 100%;
  2456. padding: 0;
  2457. }
  2458. .wp-block-cover-image h2,
  2459. .wp-block-cover h2 {
  2460. font-size: 3.2rem;
  2461. }
  2462. /* Block: Embed ------------------------------ */
  2463. /* Block: File ------------------------------- */
  2464. .wp-block-file {
  2465. align-items: center;
  2466. display: flex;
  2467. flex-wrap: wrap;
  2468. justify-content: space-between;
  2469. }
  2470. .wp-block-file a:not(.wp-block-file__button) {
  2471. font-weight: 700;
  2472. text-decoration: none;
  2473. }
  2474. .wp-block-file a:not(.wp-block-file__button):not(:last-child) {
  2475. margin-right: 1rem;
  2476. }
  2477. .wp-block-file a:not(.wp-block-file__button):focus,
  2478. .wp-block-file a:not(.wp-block-file__button):hover {
  2479. text-decoration: underline;
  2480. }
  2481. .wp-block-file .wp-block-file__button {
  2482. font-size: 1.5rem;
  2483. padding: 1em 1.25em;
  2484. }
  2485. .wp-block-file a.wp-block-file__button:visited {
  2486. opacity: 1;
  2487. }
  2488. .wp-block-file a.wp-block-file__button:active,
  2489. .wp-block-file a.wp-block-file__button:focus,
  2490. .wp-block-file a.wp-block-file__button:hover {
  2491. opacity: 1;
  2492. text-decoration: underline;
  2493. }
  2494. /* Block: Gallery ---------------------------- */
  2495. .wp-block-gallery ul {
  2496. list-style: none;
  2497. margin: 0 0 -1.6rem 0;
  2498. }
  2499. figure.wp-block-gallery.alignnone,
  2500. figure.wp-block-gallery.aligncenter {
  2501. margin-bottom: 3rem;
  2502. margin-top: 3rem;
  2503. }
  2504. figure.wp-block-gallery.alignleft {
  2505. margin: 0.3rem 2rem 2rem 0;
  2506. }
  2507. figure.wp-block-gallery.alignright {
  2508. margin: 0.3rem 0 2rem 2rem;
  2509. }
  2510. figure.wp-block-gallery.alignwide {
  2511. margin-bottom: 4rem;
  2512. margin-top: 4rem;
  2513. }
  2514. figure.wp-block-gallery.alignfull {
  2515. margin-bottom: 5rem;
  2516. margin-top: 5rem;
  2517. }
  2518. /* Block: Group ------------------------------ */
  2519. .wp-block-group.has-background {
  2520. padding: 2rem;
  2521. margin-bottom: 0;
  2522. margin-top: 0;
  2523. }
  2524. .wp-block-group__inner-container {
  2525. margin: 0 auto;
  2526. }
  2527. .wp-block-group__inner-container,
  2528. .entry-content .wp-block-group p {
  2529. max-width: 100%;
  2530. }
  2531. .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  2532. padding-left: 2rem;
  2533. padding-right: 2rem;
  2534. }
  2535. /* Block: Image ------------------------------ */
  2536. /* Block: Media And Text --------------------- */
  2537. .wp-block-media-text .wp-block-media-text__content {
  2538. padding: 3rem 2rem;
  2539. }
  2540. .wp-block-media-text .wp-block-media-text__content p {
  2541. max-width: none;
  2542. }
  2543. .wp-block-media-text__content > *:first-child {
  2544. margin-top: 0;
  2545. }
  2546. .wp-block-media-text__content > *:last-child {
  2547. margin-bottom: 0;
  2548. }
  2549. /* Block: Pullquote -------------------------- */
  2550. /* STYLE: DEFAULT */
  2551. .wp-block-pullquote {
  2552. padding: 0;
  2553. position: relative;
  2554. }
  2555. .wp-block-pullquote.alignleft,
  2556. .wp-block-pullquote.alignright {
  2557. max-width: calc(100% - 4rem);
  2558. }
  2559. .wp-block-pullquote::before {
  2560. background: #fff;
  2561. border-radius: 50%;
  2562. color: #cd2653;
  2563. content: "”";
  2564. display: block;
  2565. font-size: 6.2rem;
  2566. font-weight: 500;
  2567. line-height: 1.2;
  2568. margin: 0 auto 1.5rem auto;
  2569. text-align: center;
  2570. height: 4.4rem;
  2571. width: 4.4rem;
  2572. }
  2573. .reduced-spacing .wp-block-pullquote::before {
  2574. border: 0.1rem solid currentColor;
  2575. font-size: 5.9rem;
  2576. }
  2577. .wp-block-pullquote blockquote {
  2578. border: none;
  2579. margin: 0;
  2580. padding: 0;
  2581. }
  2582. .wp-block-pullquote blockquote p {
  2583. font-family: inherit;
  2584. font-size: 2.8rem;
  2585. font-weight: 700;
  2586. line-height: 1.178571429;
  2587. letter-spacing: -0.041785714em;
  2588. max-width: 100%;
  2589. }
  2590. .wp-block-pullquote p:last-of-type {
  2591. margin-bottom: 0;
  2592. }
  2593. .wp-block-pullquote cite {
  2594. color: #6d6d6d;
  2595. font-size: 1.6rem;
  2596. font-weight: 500;
  2597. margin-top: 1.2rem;
  2598. }
  2599. .wp-block-pullquote.alignleft p,
  2600. .wp-block-pullquote.alignright p {
  2601. font-size: 2.8rem;
  2602. }
  2603. .wp-block-pullquote.alignleft {
  2604. text-align: left;
  2605. }
  2606. .wp-block-pullquote.alignright {
  2607. text-align: right;
  2608. }
  2609. .wp-block-pullquote.alignleft::before {
  2610. margin-left: 0;
  2611. }
  2612. .wp-block-pullquote.alignright::before {
  2613. margin-right: 0;
  2614. }
  2615. /* STYLE: SOLID BACKGROUND COLOR */
  2616. .wp-block-pullquote.is-style-solid-color {
  2617. padding: 3rem 2rem;
  2618. }
  2619. .wp-block-pullquote.is-style-solid-color::before {
  2620. position: absolute;
  2621. top: 0;
  2622. left: 50%;
  2623. transform: translateY(-50%) translateX(-50%);
  2624. }
  2625. .wp-block-pullquote.is-style-solid-color.alignleft::before,
  2626. .wp-block-pullquote.is-style-solid-color.alignright::before {
  2627. transform: translateY(-50%);
  2628. }
  2629. .wp-block-pullquote.is-style-solid-color.alignleft::before {
  2630. left: 2rem;
  2631. }
  2632. .wp-block-pullquote.is-style-solid-color.alignright::before {
  2633. left: auto;
  2634. right: 2rem;
  2635. }
  2636. .wp-block-pullquote.is-style-solid-color blockquote {
  2637. max-width: 100%;
  2638. text-align: inherit;
  2639. }
  2640. .wp-block-pullquote.is-style-solid-color cite {
  2641. color: inherit;
  2642. }
  2643. /* Block: Separator ------------------------- */
  2644. hr.wp-block-separator {
  2645. margin: 3rem 0;
  2646. }
  2647. /* STYLE: WIDE */
  2648. .wp-block-separator.is-style-wide {
  2649. max-width: calc(100vw - 4rem);
  2650. position: relative;
  2651. width: 100%;
  2652. }
  2653. /* STYLE: DOTS */
  2654. .wp-block-separator.is-style-dots::before {
  2655. background: none;
  2656. color: inherit;
  2657. font-size: 3.2rem;
  2658. font-weight: 700;
  2659. height: auto;
  2660. letter-spacing: 1em;
  2661. padding-left: 1em;
  2662. position: static;
  2663. transform: none;
  2664. width: auto;
  2665. }
  2666. .wp-block-separator.is-style-dots::after {
  2667. content: none;
  2668. }
  2669. /* Block: Search ----------------------------- */
  2670. .wp-block-search .wp-block-search__input {
  2671. width: auto;
  2672. }
  2673. /* Block: Table ------------------------------ */
  2674. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  2675. background: #dcd7ca;
  2676. }
  2677. figure.wp-block-table.is-style-stripes {
  2678. border-bottom: none;
  2679. }
  2680. .wp-block-table.is-style-stripes table {
  2681. border-collapse: inherit;
  2682. }
  2683. /* Block: Quote ------------------------------ */
  2684. .wp-block-quote p,
  2685. .wp-block-quote cite {
  2686. text-align: inherit;
  2687. }
  2688. .wp-block-quote[style="text-align:center"] {
  2689. border-width: 0;
  2690. padding: 0;
  2691. }
  2692. .wp-block-quote[style="text-align:right"] {
  2693. /*rtl:begin:ignore*/
  2694. border-width: 0 0.2rem 0 0;
  2695. padding: 0 2rem 0 0;
  2696. /*rtl:end:ignore*/
  2697. }
  2698. /* STYLE: LARGE */
  2699. .wp-block-quote.is-large,
  2700. .wp-block-quote.is-style-large {
  2701. border: none;
  2702. padding: 0;
  2703. margin-left: auto;
  2704. margin-right: auto;
  2705. }
  2706. .wp-block-quote.is-large p,
  2707. .wp-block-quote.is-style-large p {
  2708. font-family: inherit;
  2709. font-size: 2.4rem;
  2710. font-style: normal;
  2711. font-weight: 700;
  2712. letter-spacing: -0.02em;
  2713. line-height: 1.285;
  2714. }
  2715. .wp-block-quote.is-large cite,
  2716. .wp-block-quote.is-large footer,
  2717. .wp-block-quote.is-style-large cite,
  2718. .wp-block-quote.is-style-large footer {
  2719. font-size: 1.6rem;
  2720. text-align: inherit;
  2721. }
  2722. /* Block: Widget Latest Comments ------------- */
  2723. .entry-content .wp-block-latest-comments li {
  2724. margin: 2rem 0;
  2725. }
  2726. .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
  2727. .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  2728. margin-left: 5.5rem;
  2729. }
  2730. .entry-content .wp-block-latest-comments a {
  2731. text-decoration: none;
  2732. }
  2733. .entry-content .wp-block-latest-comments a:hover,
  2734. .entry-content .wp-block-latest-comments a:focus {
  2735. text-decoration: underline;
  2736. }
  2737. .wp-block-latest-comments__comment {
  2738. font-size: inherit;
  2739. }
  2740. .wp-block-latest-comments__comment-date {
  2741. margin-top: 0.4em;
  2742. }
  2743. .wp-block-latest-comments__comment-excerpt p {
  2744. font-size: 0.7em;
  2745. margin: 0.9rem 0 2rem 0;
  2746. }
  2747. /* Block: Widget Latest Posts ---------------- */
  2748. .wp-block-latest-posts.is-grid li {
  2749. border-top: 0.2rem solid #dcd7ca;
  2750. margin-top: 2rem;
  2751. padding-top: 1rem;
  2752. }
  2753. .wp-block-latest-posts.has-dates {
  2754. list-style: none;
  2755. }
  2756. .wp-block-latest-posts.has-dates:not(.is-grid) li {
  2757. margin-top: 1.5rem;
  2758. }
  2759. .wp-block-latest-posts.has-dates:not(.is-grid) li:first-child {
  2760. margin-top: 0;
  2761. }
  2762. /* Block: Post Template ---------------- */
  2763. .wp-block-post-template,
  2764. .wp-block-post-template > li {
  2765. margin-left: 0;
  2766. margin-right: 0;
  2767. }
  2768. /* -------------------------------------------------------------------------- */
  2769. /* 11. Entry Content
  2770. /* -------------------------------------------------------------------------- */
  2771. .entry-content {
  2772. line-height: 1.5;
  2773. }
  2774. .entry-content > * {
  2775. margin-left: auto;
  2776. margin-right: auto;
  2777. margin-bottom: 1.25em;
  2778. }
  2779. .entry-content > *:first-child {
  2780. margin-top: 0;
  2781. }
  2782. .entry-content > *:last-child {
  2783. margin-bottom: 0;
  2784. }
  2785. .read-more-button-wrap {
  2786. margin-top: 1em;
  2787. text-align: center;
  2788. }
  2789. .entry-content a:hover,
  2790. .entry-content a:focus {
  2791. text-decoration: none;
  2792. }
  2793. .entry-content p,
  2794. .entry-content li {
  2795. line-height: 1.4;
  2796. }
  2797. .entry-content li img {
  2798. display: inline-block;
  2799. }
  2800. .entry-content h1,
  2801. .entry-content h2,
  2802. .entry-content h3,
  2803. .entry-content h4,
  2804. .entry-content h5,
  2805. .entry-content h6 {
  2806. margin: 3.5rem auto 2rem;
  2807. }
  2808. .entry-content ul ul,
  2809. .entry-content ol ol,
  2810. .entry-content ul ol,
  2811. .entry-content ol ul {
  2812. margin-bottom: 1rem;
  2813. }
  2814. .entry-content hr {
  2815. margin: 4rem auto;
  2816. }
  2817. .post-inner .entry-content > .wp-block-cover.alignwide:first-child,
  2818. .post-inner .entry-content > .wp-block-cover.alignfull:first-child {
  2819. margin-top: 0;
  2820. }
  2821. /* Font Families ----------------------------- */
  2822. .entry-content {
  2823. font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  2824. letter-spacing: normal;
  2825. }
  2826. .entry-content h1,
  2827. .entry-content h2,
  2828. .entry-content h3,
  2829. .entry-content h4,
  2830. .entry-content h5,
  2831. .entry-content h6,
  2832. .entry-content cite,
  2833. .entry-content figcaption,
  2834. .entry-content table,
  2835. .entry-content address,
  2836. .entry-content .wp-caption-text,
  2837. .entry-content .wp-block-file {
  2838. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2839. }
  2840. @supports ( font-variation-settings: normal ) {
  2841. .entry-content h1,
  2842. .entry-content h2,
  2843. .entry-content h3,
  2844. .entry-content h4,
  2845. .entry-content h5,
  2846. .entry-content h6,
  2847. .entry-content cite,
  2848. .entry-content figcaption,
  2849. .entry-content table,
  2850. .entry-content address,
  2851. .entry-content .wp-caption-text,
  2852. .entry-content .wp-block-file {
  2853. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2854. }
  2855. }
  2856. /* Alignment Classes ------------------------- */
  2857. .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  2858. max-width: 58rem;
  2859. width: calc(100% - 4rem);
  2860. }
  2861. [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  2862. max-width: 58rem;
  2863. width: 100%;
  2864. }
  2865. .alignnone,
  2866. .aligncenter,
  2867. .alignleft,
  2868. .alignright,
  2869. .alignwide {
  2870. margin-top: 4rem;
  2871. margin-right: auto;
  2872. margin-bottom: 4rem;
  2873. margin-left: auto;
  2874. }
  2875. [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
  2876. margin-left: auto;
  2877. margin-right: auto;
  2878. }
  2879. /* Full */
  2880. .alignfull {
  2881. margin-top: 5rem;
  2882. margin-right: auto;
  2883. margin-bottom: 5rem;
  2884. margin-left: auto;
  2885. max-width: 100vw;
  2886. position: relative;
  2887. width: 100%;
  2888. }
  2889. [class*="__inner-container"] > .alignfull {
  2890. max-width: 100%;
  2891. }
  2892. /* Wide */
  2893. .alignwide {
  2894. max-width: 120rem;
  2895. position: relative;
  2896. width: calc(100% - 4rem);
  2897. }
  2898. [class*="__inner-container"] > .alignwide {
  2899. width: 100%;
  2900. }
  2901. /* Center */
  2902. .aligncenter,
  2903. .aligncenter img {
  2904. margin-left: auto;
  2905. margin-right: auto;
  2906. }
  2907. /* Left and right */
  2908. .alignleft,
  2909. .alignright {
  2910. max-width: 50%;
  2911. }
  2912. .alignleft {
  2913. /*rtl:ignore*/
  2914. float: left;
  2915. margin: 0.3rem 2rem 2rem 2rem;
  2916. }
  2917. .alignright {
  2918. /*rtl:ignore*/
  2919. float: right;
  2920. margin: 0.3rem 2rem 2rem 2rem;
  2921. }
  2922. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
  2923. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
  2924. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  2925. /*rtl:ignore*/
  2926. margin-left: 2rem;
  2927. }
  2928. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
  2929. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
  2930. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  2931. /*rtl:ignore*/
  2932. margin-right: 2rem;
  2933. }
  2934. /* Entry Media ------------------------------- */
  2935. .alignfull > figcaption,
  2936. .alignfull > .wp-caption-text {
  2937. margin-left: auto;
  2938. margin-right: auto;
  2939. max-width: 58rem;
  2940. width: calc(100% - 4rem);
  2941. }
  2942. /* -------------------------------------------------------------------------- */
  2943. /* 12. Comments
  2944. /* -------------------------------------------------------------------------- */
  2945. /* Comment Headers ----------------------------- */
  2946. .comments-wrapper {
  2947. margin-top: 5rem;
  2948. }
  2949. .comment-reply-title {
  2950. margin: 0 0 4rem 0;
  2951. text-align: center;
  2952. }
  2953. /* Comment Item ----------------------------- */
  2954. /* COMMENT HEADER */
  2955. .comments .comment,
  2956. .comments .pingback,
  2957. .comments .trackback,
  2958. .comments .review {
  2959. padding-top: 3.5rem;
  2960. }
  2961. div.comment:first-of-type {
  2962. margin-top: 3.5rem;
  2963. padding-top: 0;
  2964. }
  2965. .comments .comments-header + div {
  2966. margin-top: 0;
  2967. padding-top: 0;
  2968. }
  2969. .comment-body {
  2970. position: relative;
  2971. }
  2972. .comment .comment {
  2973. padding-left: 5%;
  2974. }
  2975. .comment-meta {
  2976. line-height: 1.1;
  2977. margin-bottom: 1.5rem;
  2978. min-height: 5rem;
  2979. padding-left: 5rem;
  2980. position: relative;
  2981. }
  2982. .hide-avatars .comment-meta {
  2983. min-height: 0;
  2984. padding-left: 0;
  2985. }
  2986. .comment-meta a {
  2987. color: inherit;
  2988. }
  2989. .comment-author {
  2990. font-size: 1.8rem;
  2991. font-weight: 700;
  2992. letter-spacing: -0.027777778em;
  2993. }
  2994. .comment-author a {
  2995. text-decoration: underline;
  2996. }
  2997. .comment-author a:hover,
  2998. .comment-author a:focus {
  2999. text-decoration: none;
  3000. }
  3001. .comment-meta .avatar {
  3002. height: 4rem;
  3003. position: absolute;
  3004. left: 0;
  3005. top: 0;
  3006. width: 4rem;
  3007. }
  3008. .comment-author .url {
  3009. text-decoration: underline;
  3010. }
  3011. .comment-metadata {
  3012. color: #6d6d6d;
  3013. font-size: 1.4rem;
  3014. font-weight: 500;
  3015. margin-top: 0.6rem;
  3016. }
  3017. .comment-metadata a {
  3018. text-decoration: none;
  3019. }
  3020. .comment-metadata a:focus,
  3021. .comment-metadata a:hover {
  3022. text-decoration: underline;
  3023. }
  3024. /* COMMENT CONTENT */
  3025. .comment-content.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  3026. width: 100%;
  3027. }
  3028. .comment-content.entry-content .alignleft {
  3029. /*rtl:ignore*/
  3030. margin-left: 0;
  3031. }
  3032. .comment-content.entry-content .alignright {
  3033. /*rtl:ignore*/
  3034. margin-right: 0;
  3035. }
  3036. /* COMMENT FOOTER */
  3037. .comment-footer-meta {
  3038. align-items: center;
  3039. display: flex;
  3040. flex-wrap: wrap;
  3041. font-size: 1.2rem;
  3042. font-weight: 600;
  3043. justify-content: flex-start;
  3044. letter-spacing: 0.030833333em;
  3045. line-height: 1;
  3046. margin: 1.5rem 0 -1rem -1.5rem;
  3047. text-transform: uppercase;
  3048. }
  3049. .comment-footer-meta > * {
  3050. margin: 0 0 1rem 1.5rem;
  3051. }
  3052. .comment-reply-link {
  3053. background-color: #cd2653;
  3054. color: #fff;
  3055. display: block;
  3056. padding: 0.7rem;
  3057. }
  3058. .bypostauthor .comment-footer-meta .by-post-author {
  3059. display: block;
  3060. }
  3061. .comment-footer-meta a {
  3062. text-decoration: none;
  3063. }
  3064. .comment-footer-meta a:focus,
  3065. .comment-footer-meta a:hover {
  3066. text-decoration: underline;
  3067. }
  3068. /* Pingbacks & Trackbacks ------------------------- */
  3069. .pingback .comment-meta,
  3070. .trackback .comment-meta {
  3071. padding-left: 0;
  3072. }
  3073. /* Comments Pagination ---------------------------- */
  3074. .comments-pagination {
  3075. display: flex;
  3076. flex-wrap: wrap;
  3077. justify-content: space-between;
  3078. margin-top: 6rem;
  3079. text-align: center;
  3080. }
  3081. .comments-pagination.only-next {
  3082. justify-content: flex-end;
  3083. }
  3084. .comments-pagination .page-numbers {
  3085. display: none;
  3086. text-decoration: none;
  3087. }
  3088. .comments-pagination .page-numbers:focus,
  3089. .comments-pagination .page-numbers:hover {
  3090. text-decoration: underline;
  3091. }
  3092. .comments-pagination .prev,
  3093. .comments-pagination .next {
  3094. display: block;
  3095. }
  3096. .comments-pagination .prev {
  3097. left: 0;
  3098. }
  3099. .comments-pagination .next {
  3100. right: 0;
  3101. text-align: right;
  3102. }
  3103. /* Comment Respond ---------------------------- */
  3104. .comment-respond::after {
  3105. clear: both;
  3106. content: "";
  3107. display: block;
  3108. }
  3109. .comment-respond .comment-notes,
  3110. .comment-respond .logged-in-as {
  3111. color: #6d6d6d;
  3112. font-size: 1.6rem;
  3113. line-height: 1.4;
  3114. margin: -3rem 0 4rem 0;
  3115. text-align: center;
  3116. }
  3117. .comment-respond .comment-notes a,
  3118. .comment-respond .logged-in-as a {
  3119. color: inherit;
  3120. text-decoration: none;
  3121. }
  3122. .comment-respond .comment-notes a:focus,
  3123. .comment-respond .comment-notes a:hover,
  3124. .comment-respond .logged-in-as a:focus,
  3125. .comment-respond .logged-in-as a:hover {
  3126. text-decoration: underline;
  3127. }
  3128. .comment-respond p {
  3129. line-height: 1.1;
  3130. margin-bottom: 2rem;
  3131. margin-left: auto;
  3132. margin-right: auto;
  3133. }
  3134. .comment-respond p:not(.comment-notes) {
  3135. max-width: 58rem;
  3136. }
  3137. .comment-form-cookies-consent {
  3138. align-items: baseline;
  3139. display: flex;
  3140. }
  3141. .comment-respond > p:last-of-type {
  3142. margin-bottom: 0;
  3143. }
  3144. .comment-respond label {
  3145. display: block;
  3146. }
  3147. .comment-respond input[type="checkbox"] + label {
  3148. font-size: 1.5rem;
  3149. line-height: 1.25;
  3150. }
  3151. .comment-respond input[type="text"],
  3152. .comment-respond input[type="email"],
  3153. .comment-respond textarea {
  3154. margin-bottom: 0;
  3155. }
  3156. .comment-respond textarea {
  3157. height: 15rem;
  3158. }
  3159. .comment-respond #submit {
  3160. display: block;
  3161. }
  3162. .comment-respond .comments-closed {
  3163. text-align: center;
  3164. }
  3165. /* Reply Respond ---------------------------- */
  3166. .comments .comment-respond {
  3167. padding: 3rem 0 0;
  3168. }
  3169. .comments .comment-respond .comment-reply-title,
  3170. .comments .comment-respond .comment-notes,
  3171. .comments .comment-respond .logged-in-as {
  3172. text-align: left;
  3173. }
  3174. .comment-reply-title small {
  3175. display: block;
  3176. font-size: 1.6rem;
  3177. font-weight: 600;
  3178. letter-spacing: -0.0277em;
  3179. margin: 0.5rem 0 0 0;
  3180. white-space: nowrap;
  3181. }
  3182. .comment-reply-title small a {
  3183. text-decoration: none;
  3184. }
  3185. .comment-reply-title small a:focus,
  3186. .comment-reply-title small a:hover {
  3187. text-decoration: underline;
  3188. }
  3189. /* -------------------------------------------------------------------------- */
  3190. /* 13. Site Pagination
  3191. /* -------------------------------------------------------------------------- */
  3192. .pagination .nav-links {
  3193. align-items: baseline;
  3194. display: flex;
  3195. flex-wrap: wrap;
  3196. font-size: 1.8rem;
  3197. font-weight: 600;
  3198. margin: -1.5rem 0 0 -2.5rem;
  3199. width: calc(100% + 2.5rem);
  3200. }
  3201. .pagination-separator {
  3202. margin: 5rem 0;
  3203. }
  3204. .nav-links > * {
  3205. margin: 1.5rem 0 0 2.5rem;
  3206. }
  3207. .nav-links .placeholder {
  3208. display: none;
  3209. visibility: hidden;
  3210. }
  3211. .pagination a {
  3212. text-decoration: none;
  3213. }
  3214. .pagination a:focus,
  3215. .pagination a:hover {
  3216. text-decoration: underline;
  3217. }
  3218. .pagination .dots {
  3219. transform: translateY(-0.3em);
  3220. color: #6d6d6d;
  3221. }
  3222. .nav-short {
  3223. display: none;
  3224. }
  3225. /* -------------------------------------------------------------------------- */
  3226. /* 14. Error 404
  3227. /* -------------------------------------------------------------------------- */
  3228. .error404 #site-content {
  3229. padding-top: 4rem;
  3230. }
  3231. .error404-content {
  3232. text-align: center;
  3233. }
  3234. .error404 #site-content .search-form {
  3235. justify-content: center;
  3236. margin-top: 3rem;
  3237. }
  3238. /* -------------------------------------------------------------------------- */
  3239. /* 15. Widgets
  3240. /* -------------------------------------------------------------------------- */
  3241. /* Widget Base ------------------------------- */
  3242. .widget {
  3243. margin-top: 3rem;
  3244. }
  3245. .widget:first-child {
  3246. margin-top: 0;
  3247. }
  3248. .widget-content > div > *:first-child {
  3249. margin-top: 0;
  3250. }
  3251. .widget-content > div > *:last-child {
  3252. margin-bottom: 0;
  3253. }
  3254. .widget .widget-title {
  3255. margin: 0 0 2rem;
  3256. }
  3257. .widget li {
  3258. margin: 2rem 0 0 0;
  3259. }
  3260. .widget li:first-child,
  3261. .widget li > ul,
  3262. .widget li > ol {
  3263. margin-top: 0;
  3264. }
  3265. .widget table,
  3266. .widget table * {
  3267. border-color: #dedfdf;
  3268. }
  3269. .widget table caption {
  3270. background-color: #dedfdf;
  3271. }
  3272. .widget .post-date,
  3273. .widget .rss-date {
  3274. color: #6d6d6d;
  3275. display: block;
  3276. font-size: 0.85em;
  3277. font-weight: 500;
  3278. margin-top: 0.2rem;
  3279. }
  3280. .widget select {
  3281. max-width: 100%;
  3282. }
  3283. /* Font Families ----------------------------- */
  3284. .widget_text p,
  3285. .widget_text ol,
  3286. .widget_text ul,
  3287. .widget_text dl,
  3288. .widget_text dt,
  3289. .widget-content .rssSummary {
  3290. font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  3291. letter-spacing: normal;
  3292. }
  3293. .widget-content cite,
  3294. .widget-content figcaption,
  3295. .widget-content .wp-caption-text {
  3296. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  3297. }
  3298. @supports ( font-variation-settings: normal ) {
  3299. .widget-content cite,
  3300. .widget-content figcaption,
  3301. .widget-content .wp-caption-text {
  3302. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  3303. }
  3304. }
  3305. /* Base List Widget -------------------------- */
  3306. .widget_archive ul,
  3307. .widget_categories ul,
  3308. .widget_pages ul,
  3309. .widget_meta ul,
  3310. .widget_nav_menu ul,
  3311. .widget_recent_comments ul,
  3312. .widget_recent_entries ul,
  3313. .widget_rss ul {
  3314. list-style: none;
  3315. margin: 0;
  3316. }
  3317. .widget_archive li,
  3318. .widget_categories li,
  3319. .widget_pages li,
  3320. .widget_meta li,
  3321. .widget_nav_menu li {
  3322. color: #6d6d6d;
  3323. margin: 0.3rem 0;
  3324. }
  3325. .widget_archive li li,
  3326. .widget_categories li li,
  3327. .widget_pages li li,
  3328. .widget_meta li li,
  3329. .widget_nav_menu li li {
  3330. margin-left: 2rem;
  3331. }
  3332. .widget_archive a,
  3333. .widget_categories a,
  3334. .widget_pages a,
  3335. .widget_meta a,
  3336. .widget_nav_menu a {
  3337. font-weight: 700;
  3338. text-decoration: none;
  3339. }
  3340. .widget_archive a:focus,
  3341. .widget_archive a:hover,
  3342. .widget_categories a:focus,
  3343. .widget_categories a:hover,
  3344. .widget_pages a:focus,
  3345. .widget_pages a:hover,
  3346. .widget_meta a:focus,
  3347. .widget_meta a:hover,
  3348. .widget_nav_menu a:focus,
  3349. .widget_nav_menu a:hover {
  3350. text-decoration: underline;
  3351. }
  3352. /* Widget: Calendar -------------------------- */
  3353. .calendar_wrap {
  3354. font-size: 2.4rem;
  3355. }
  3356. .calendar_wrap th,
  3357. .calendar_wrap td,
  3358. .wp-calendar-nav span {
  3359. display: table-cell;
  3360. font-size: 1em;
  3361. font-weight: 500;
  3362. line-height: 1;
  3363. padding: 2.5% 2.5% 1.75% 2.5%;
  3364. text-align: center;
  3365. }
  3366. .wp-calendar-table {
  3367. margin-bottom: 0;
  3368. }
  3369. .wp-calendar-nav {
  3370. display: table;
  3371. width: 100%;
  3372. font-size: 1.8rem;
  3373. }
  3374. .calendar_wrap tfoot td {
  3375. border-bottom: none;
  3376. }
  3377. .calendar_wrap tfoot a,
  3378. .calendar_wrap .wp-calendar-nav a {
  3379. text-decoration: none;
  3380. }
  3381. .calendar_wrap tfoot #prev,
  3382. .calendar_wrap .wp-calendar-nav-prev {
  3383. text-align: left;
  3384. }
  3385. .calendar_wrap tfoot #next,
  3386. .calendar_wrap .wp-calendar-nav-next {
  3387. text-align: right;
  3388. }
  3389. /* Widget: Image ----------------------------- */
  3390. /* Widget: Gallery --------------------------- */
  3391. .widget_media_gallery .gallery {
  3392. margin: 0 -0.4em -0.8em -0.4em;
  3393. width: calc(100% + 0.8em);
  3394. }
  3395. .widget_media_gallery .gallery-item {
  3396. margin: 0 0 0.8em 0;
  3397. padding: 0 0.4em;
  3398. }
  3399. /* Widget: Nav Menu -------------------------- */
  3400. .widget_nav_menu .widget-content > div > ul {
  3401. margin-left: 0;
  3402. }
  3403. /* Widget: Recent Comments ------------------- */
  3404. .widget_recent_comments li {
  3405. font-weight: 700;
  3406. }
  3407. .widget_recent_comments a {
  3408. text-decoration: none;
  3409. }
  3410. .widget_recent_comments a:focus,
  3411. .widget_recent_comments a:hover {
  3412. text-decoration: underline;
  3413. }
  3414. /* Widget: Recent Entries -------------------- */
  3415. .widget_recent_entries a {
  3416. font-weight: 700;
  3417. text-decoration: none;
  3418. }
  3419. .widget_recent_entries a:focus,
  3420. .widget_recent_entries a:hover {
  3421. text-decoration: underline;
  3422. }
  3423. /* Widget: RSS ------------------------------- */
  3424. .widget_rss .widget-title a.rsswidget:first-of-type {
  3425. display: none;
  3426. }
  3427. .widget_rss .rsswidget {
  3428. font-weight: 700;
  3429. }
  3430. .widget_rss a {
  3431. text-decoration: none;
  3432. }
  3433. .widget_rss a:focus,
  3434. .widget_rss a:hover {
  3435. text-decoration: underline;
  3436. }
  3437. .widget_rss .rssSummary {
  3438. margin-top: 0.5rem;
  3439. }
  3440. .widget_rss cite::before {
  3441. content: "— ";
  3442. }
  3443. /* Widget: Search ---------------------------- */
  3444. .widget_search .search-field {
  3445. border-color: #dedfdf;
  3446. }
  3447. /* Widget: Tag Cloud ------------------------- */
  3448. .widget_tag_cloud a {
  3449. font-weight: 700;
  3450. margin-right: 0.5rem;
  3451. text-decoration: none;
  3452. white-space: nowrap;
  3453. }
  3454. .widget_tag_cloud a:focus,
  3455. .widget_tag_cloud a:hover {
  3456. text-decoration: underline;
  3457. }
  3458. /* Widget: Text ------------------------------ */
  3459. /* -------------------------------------------------------------------------- */
  3460. /* 16. Site Footer
  3461. /* -------------------------------------------------------------------------- */
  3462. .footer-nav-widgets-wrapper,
  3463. #site-footer {
  3464. background-color: #fff;
  3465. border-color: #dedfdf;
  3466. border-style: solid;
  3467. border-width: 0;
  3468. }
  3469. .footer-top-visible .footer-nav-widgets-wrapper,
  3470. .footer-top-hidden #site-footer {
  3471. margin-top: 5rem;
  3472. }
  3473. .reduced-spacing.footer-top-visible .footer-nav-widgets-wrapper,
  3474. .reduced-spacing.footer-top-hidden #site-footer {
  3475. border-top-width: 0.1rem;
  3476. }
  3477. .footer-top,
  3478. .footer-widgets-outer-wrapper,
  3479. #site-footer {
  3480. padding: 3rem 0;
  3481. }
  3482. /* Footer Top -------------------------------- */
  3483. .footer-top {
  3484. display: flex;
  3485. border-bottom: 0.1rem solid #dedfdf;
  3486. justify-content: space-between;
  3487. }
  3488. /* FOOTER MENU */
  3489. .footer-menu {
  3490. font-size: 1.8rem;
  3491. font-weight: 700;
  3492. letter-spacing: -0.0277em;
  3493. }
  3494. .footer-menu li {
  3495. line-height: 1.25;
  3496. margin: 0.25em 0 0 0;
  3497. }
  3498. .footer-menu a {
  3499. text-decoration: none;
  3500. word-break: normal;
  3501. word-wrap: normal;
  3502. }
  3503. .footer-menu a:hover,
  3504. .footer-menu a:focus {
  3505. text-decoration: underline;
  3506. }
  3507. /* FOOTER SOCIAL */
  3508. .footer-social-wrapper {
  3509. margin: 0;
  3510. width: 100%;
  3511. }
  3512. .has-footer-menu .footer-social-wrapper {
  3513. flex-shrink: 0;
  3514. margin-left: 1rem;
  3515. width: 50%;
  3516. }
  3517. ul.footer-social {
  3518. margin: -0.5rem 0 0 -0.5rem;
  3519. }
  3520. .has-footer-menu .footer-social {
  3521. justify-content: flex-end;
  3522. }
  3523. ul.footer-social li {
  3524. margin: 0.5rem 0 0 0.5rem;
  3525. }
  3526. .footer-social a {
  3527. background-color: #cd2653;
  3528. height: 3.6rem;
  3529. width: 3.6rem;
  3530. }
  3531. .footer-social a::before {
  3532. font-size: 1.6rem;
  3533. }
  3534. /* Footer Widgets ---------------------------- */
  3535. .footer-widgets-outer-wrapper {
  3536. border-bottom: 0.1rem solid #dedfdf;
  3537. }
  3538. .footer-widgets + .footer-widgets {
  3539. margin-top: 3rem;
  3540. }
  3541. /* Footer Bottom ----------------------------- */
  3542. #site-footer {
  3543. font-size: 1.6rem;
  3544. }
  3545. #site-footer .section-inner {
  3546. align-items: baseline;
  3547. display: flex;
  3548. justify-content: space-between;
  3549. }
  3550. #site-footer a {
  3551. text-decoration: none;
  3552. }
  3553. #site-footer a:focus,
  3554. #site-footer a:hover {
  3555. text-decoration: underline;
  3556. }
  3557. .footer-copyright a,
  3558. .powered-by-wordpress a {
  3559. color: inherit;
  3560. }
  3561. .powered-by-wordpress,
  3562. .to-the-top {
  3563. color: #6d6d6d;
  3564. }
  3565. a.to-the-top > * {
  3566. pointer-events: none;
  3567. }
  3568. .footer-copyright {
  3569. font-weight: 600;
  3570. margin: 0;
  3571. }
  3572. .powered-by-wordpress {
  3573. display: none;
  3574. margin: 0 0 0 2.4rem;
  3575. }
  3576. .to-the-top-long {
  3577. display: none;
  3578. }
  3579. /* -------------------------------------------------------------------------- */
  3580. /* 17. Media Queries
  3581. /* -------------------------------------------------------------------------- */
  3582. @media ( max-width: 479px ) {
  3583. /* Blocks -------------------------------- */
  3584. .wp-block-pullquote.alignleft,
  3585. .wp-block-pullquote.alignright {
  3586. float: none;
  3587. }
  3588. /* Entry Content ------------------------- */
  3589. /* LISTS */
  3590. ul,
  3591. ol {
  3592. margin: 0 0 3rem 2rem;
  3593. }
  3594. li {
  3595. margin: 0.5rem 0 0 1rem;
  3596. }
  3597. /* Post Footer --------------------------- */
  3598. /* POST NAV LINKS */
  3599. .post-nav-links {
  3600. margin: 3em 0 0 0;
  3601. }
  3602. }
  3603. @media ( min-width: 480px ) {
  3604. /* Blocks -------------------------------- */
  3605. /* BLOCK: BASE ALIGNMENT WIDTH */
  3606. .wp-block-pullquote.alignleft,
  3607. .wp-block-pullquote.alignright,
  3608. .wp-block-cover-image.alignleft,
  3609. .wp-block-cover-image.alignright,
  3610. .wp-block-cover.alignleft,
  3611. .wp-block-cover.alignright,
  3612. .wp-block-embed.alignleft,
  3613. .wp-block-embed.alignright,
  3614. .wp-block-gallery.alignleft,
  3615. .wp-block-gallery.alignright {
  3616. max-width: 26rem;
  3617. }
  3618. /* BLOCK: TABLE WIDTH */
  3619. .wp-block-table.alignleft,
  3620. .wp-block-table.alignright {
  3621. max-width: 100%;
  3622. }
  3623. /* Entry Content ------------------------- */
  3624. /* ALIGNMENT CLASSES */
  3625. .alignleft,
  3626. .alignright {
  3627. max-width: 26rem;
  3628. }
  3629. /* Post Footer --------------------------- */
  3630. /* POST NAV LINKS */
  3631. .post-nav-links {
  3632. margin: 3em 0 0 0;
  3633. }
  3634. }
  3635. @media ( max-width: 599px ) {
  3636. /* Blocks -------------------------------- */
  3637. /* BLOCK: COLUMNS */
  3638. /* While columns are stacked */
  3639. .wp-block-column:last-child {
  3640. margin-bottom: 0;
  3641. }
  3642. .wp-block-columns + .wp-block-columns {
  3643. margin-top: 0.2rem;
  3644. }
  3645. .wp-block-columns.alignwide + .wp-block-columns.alignwide {
  3646. margin-top: -0.8rem;
  3647. }
  3648. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  3649. margin-top: -1.8rem;
  3650. }
  3651. /* Template -------------------------------- */
  3652. /* TEMPLATE: COVER */
  3653. .template-cover .post-inner .post-meta-wrapper,
  3654. .template-cover .post-inner .author-bio {
  3655. width: calc( 100% - 4rem );
  3656. }
  3657. /* Post Footer --------------------------- */
  3658. /* POST NAV LINKS */
  3659. .post-nav-links {
  3660. margin: 3em 0 0 0;
  3661. }
  3662. }
  3663. @media ( min-width: 600px ) {
  3664. /* Blocks -------------------------------- */
  3665. /* BLOCK: COLUMNS */
  3666. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  3667. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  3668. margin-top: -4rem;
  3669. }
  3670. /* Post Footer --------------------------- */
  3671. /* POST NAV LINKS */
  3672. .post-nav-links {
  3673. margin: 3em 0 0 0;
  3674. }
  3675. }
  3676. @media ( min-width: 660px ) {
  3677. /* Blocks -------------------------------- */
  3678. /* BLOCK: GALLERY */
  3679. figure.wp-block-gallery.alignleft {
  3680. /*rtl:ignore*/
  3681. margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
  3682. }
  3683. figure.wp-block-gallery.alignright {
  3684. /*rtl:ignore*/
  3685. margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
  3686. }
  3687. /* Entry Content ------------------------- */
  3688. /* ALIGNMENT CLASSES */
  3689. .entry-content > .alignleft {
  3690. /*rtl:ignore*/
  3691. margin-left: 4rem;
  3692. }
  3693. .entry-content > p .alignleft,
  3694. .entry-content > .wp-block-image .alignleft {
  3695. /*rtl:ignore*/
  3696. margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
  3697. }
  3698. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
  3699. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
  3700. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
  3701. /*rtl:ignore*/
  3702. margin-left: 0;
  3703. }
  3704. .entry-content > .alignright {
  3705. /*rtl:ignore*/
  3706. margin-right: 4rem;
  3707. }
  3708. .entry-content > p .alignright,
  3709. .entry-content > .wp-block-image .alignright {
  3710. /*rtl:ignore*/
  3711. margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
  3712. }
  3713. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
  3714. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
  3715. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
  3716. /*rtl:ignore*/
  3717. margin-right: 0;
  3718. }
  3719. /* Post Footer --------------------------- */
  3720. /* POST NAV LINKS */
  3721. .post-nav-links {
  3722. margin: 3em auto 0 auto;
  3723. }
  3724. }
  3725. @media ( min-width: 700px ) {
  3726. /* Element Base ------------------------- */
  3727. ul,
  3728. ol {
  3729. margin-bottom: 4rem;
  3730. }
  3731. pre {
  3732. padding: 3rem;
  3733. }
  3734. hr {
  3735. margin: 8rem auto;
  3736. }
  3737. table {
  3738. font-size: 1.8rem;
  3739. }
  3740. /* VANILLA GALLERIES */
  3741. .gallery-columns-2 .gallery-item {
  3742. max-width: 50%;
  3743. }
  3744. .gallery-columns-3 .gallery-item {
  3745. max-width: 33.33%;
  3746. }
  3747. .gallery-columns-4 .gallery-item {
  3748. max-width: 25%;
  3749. }
  3750. .gallery-columns-5 .gallery-item {
  3751. max-width: 20%;
  3752. }
  3753. .gallery-columns-6 .gallery-item {
  3754. max-width: 16.66%;
  3755. }
  3756. .gallery-columns-7 .gallery-item {
  3757. max-width: 14.28%;
  3758. }
  3759. .gallery-columns-8 .gallery-item {
  3760. max-width: 12.5%;
  3761. }
  3762. .gallery-columns-9 .gallery-item {
  3763. max-width: 11.11%;
  3764. }
  3765. /* TITLES */
  3766. h1,
  3767. .heading-size-1,
  3768. h2,
  3769. .heading-size-2,
  3770. h3,
  3771. .heading-size-3 {
  3772. margin: 6rem auto 3rem;
  3773. }
  3774. h4,
  3775. .heading-size-4,
  3776. h5,
  3777. .heading-size-5,
  3778. h6,
  3779. .heading-size-6 {
  3780. margin: 4.5rem auto 2.5rem;
  3781. }
  3782. h1,
  3783. .heading-size-1 {
  3784. font-size: 6.4rem;
  3785. }
  3786. h2,
  3787. .heading-size-2 {
  3788. font-size: 4.8rem;
  3789. }
  3790. h3,
  3791. .heading-size-3 {
  3792. font-size: 4rem;
  3793. }
  3794. h4,
  3795. .heading-size-4 {
  3796. font-size: 3.2rem;
  3797. }
  3798. h5,
  3799. .heading-size-5 {
  3800. font-size: 2.4rem;
  3801. }
  3802. h6,
  3803. .heading-size-6 {
  3804. font-size: 1.8rem;
  3805. }
  3806. /* INPUTS */
  3807. fieldset {
  3808. padding: 3rem;
  3809. }
  3810. legend {
  3811. padding: 0 1.5rem;
  3812. }
  3813. button,
  3814. .button,
  3815. .faux-button,
  3816. .wp-block-button__link,
  3817. input[type="button"],
  3818. input[type="reset"],
  3819. input[type="submit"] {
  3820. font-size: 1.7rem;
  3821. }
  3822. /* MEDIA */
  3823. figcaption,
  3824. .wp-caption-text {
  3825. margin-top: 1.8rem;
  3826. }
  3827. /* Helper Classes ------------------------- */
  3828. /* SECTIONS */
  3829. section {
  3830. padding: 8rem 0;
  3831. }
  3832. .section-inner {
  3833. width: calc(100% - 8rem);
  3834. }
  3835. /* Site Header --------------------------- */
  3836. .header-inner {
  3837. padding: 3.8rem 0;
  3838. }
  3839. .site-title {
  3840. font-size: 2.4rem;
  3841. font-weight: 700;
  3842. }
  3843. .site-description {
  3844. display: block;
  3845. }
  3846. .site-logo img {
  3847. max-height: 9rem;
  3848. transition: height 0.15s linear, width 0.15s linear, max-height 0.15s linear;
  3849. }
  3850. /* HEADER TOGGLES */
  3851. .toggle-inner .toggle-text {
  3852. font-size: 1.2rem;
  3853. }
  3854. .search-toggle {
  3855. left: 2rem;
  3856. }
  3857. .nav-toggle {
  3858. right: 2rem;
  3859. }
  3860. /* Menu Modal ---------------------------- */
  3861. button.close-nav-toggle {
  3862. font-size: 1.8rem;
  3863. padding: 4rem 0;
  3864. }
  3865. button.close-nav-toggle svg {
  3866. height: 2rem;
  3867. width: 2rem;
  3868. }
  3869. button.close-nav-toggle .toggle-text {
  3870. margin-right: 2.1rem;
  3871. }
  3872. .modal-menu {
  3873. left: auto;
  3874. width: 100%;
  3875. }
  3876. .modal-menu > li > a,
  3877. .modal-menu > li > .ancestor-wrapper > a {
  3878. font-size: 2.4rem;
  3879. padding: 2.5rem 0;
  3880. }
  3881. .modal-menu ul li {
  3882. border-left-color: transparent;
  3883. }
  3884. .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle {
  3885. padding: 0 3rem;
  3886. }
  3887. .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle svg {
  3888. height: 1.1rem;
  3889. width: 1.8rem;
  3890. }
  3891. .menu-bottom {
  3892. align-items: center;
  3893. display: flex;
  3894. justify-content: space-between;
  3895. padding: 4.4rem 0;
  3896. }
  3897. .menu-copyright {
  3898. display: block;
  3899. flex-shrink: 0;
  3900. margin-right: 4rem;
  3901. }
  3902. /* Modal Search Form ------------------------- */
  3903. .search-modal form {
  3904. position: relative;
  3905. width: 100%;
  3906. }
  3907. .search-untoggle svg {
  3908. height: 2.5rem;
  3909. width: 2.5rem;
  3910. }
  3911. .search-modal .search-field {
  3912. border: none;
  3913. font-size: 3.2rem;
  3914. height: 14rem;
  3915. }
  3916. .search-modal .search-field::-moz-placeholder {
  3917. line-height: 4.375;
  3918. }
  3919. /* Sub Page ------------------------------ */
  3920. /* FEATURED MEDIA */
  3921. .featured-media figcaption {
  3922. margin: 2rem auto 0 auto;
  3923. width: calc(100% - 8rem);
  3924. }
  3925. /* Template: Cover Template -------------- */
  3926. .cover-header-inner {
  3927. padding: 18rem 0 8rem 0;
  3928. }
  3929. .to-the-content-wrapper {
  3930. top: calc(100% + 1.8rem);
  3931. }
  3932. .to-the-content {
  3933. height: 6rem;
  3934. }
  3935. .to-the-content svg {
  3936. height: 2.4rem;
  3937. width: 2.12rem;
  3938. }
  3939. /* Template: Full Width ------------------ */
  3940. body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  3941. width: calc(100% - 8rem);
  3942. }
  3943. body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  3944. padding-left: 4rem;
  3945. padding-right: 4rem;
  3946. }
  3947. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  3948. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  3949. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  3950. /*rtl:ignore*/
  3951. margin-left: 4rem;
  3952. }
  3953. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  3954. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  3955. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  3956. /*rtl:ignore*/
  3957. margin-right: 4rem;
  3958. }
  3959. /* Post: Archive ------------------------- */
  3960. .archive-header {
  3961. padding: 8rem 0;
  3962. }
  3963. .reduced-spacing .archive-header {
  3964. padding-bottom: 3rem;
  3965. }
  3966. .archive-title {
  3967. font-size: 3.2rem;
  3968. }
  3969. body:not(.singular) main > article:first-of-type {
  3970. padding: 8rem 0 0;
  3971. }
  3972. h2.entry-title {
  3973. font-size: 6.4rem;
  3974. }
  3975. /* SEARCH RESULTS */
  3976. .no-search-results-form {
  3977. padding-top: 8rem;
  3978. }
  3979. /* Post: Single -------------------------- */
  3980. /* POST HEADER */
  3981. .singular .entry-header {
  3982. padding: 8rem 0;
  3983. }
  3984. .entry-categories {
  3985. margin-bottom: 3rem;
  3986. }
  3987. .entry-categories-inner {
  3988. margin: -1rem 0 0 -2rem;
  3989. }
  3990. .entry-categories a {
  3991. font-size: 1.5rem;
  3992. margin: 1rem 0 0 2rem;
  3993. }
  3994. .intro-text {
  3995. font-size: 2rem;
  3996. margin-top: 2.5rem;
  3997. }
  3998. .singular .intro-text {
  3999. font-size: 2.6rem;
  4000. }
  4001. .post-meta-wrapper {
  4002. margin-top: 3rem;
  4003. }
  4004. .post-meta {
  4005. font-size: 1.6rem;
  4006. margin: -1.4rem 0 0 -3rem;
  4007. }
  4008. .post-meta li {
  4009. margin: 1.4rem 0 0 3rem;
  4010. max-width: calc(100% - 3rem);
  4011. }
  4012. .featured-media {
  4013. margin-top: 6rem;
  4014. }
  4015. .post-inner {
  4016. padding-top: 8rem;
  4017. }
  4018. /* POST FOOTER */
  4019. .post-meta-wrapper.post-meta-single-bottom {
  4020. margin-top: 4rem;
  4021. }
  4022. /* AUTHOR BIO */
  4023. .author-bio {
  4024. margin-top: 8rem;
  4025. min-height: 8rem;
  4026. padding-left: 10rem;
  4027. position: relative;
  4028. }
  4029. .author-bio .avatar {
  4030. position: absolute;
  4031. left: 0;
  4032. top: 0;
  4033. height: 8rem;
  4034. width: 8rem;
  4035. }
  4036. /* SINGLE PAGINATION */
  4037. .pagination-single {
  4038. font-size: 2.4rem;
  4039. margin-top: 8rem;
  4040. }
  4041. .pagination-single-inner {
  4042. flex-direction: row;
  4043. justify-content: space-between;
  4044. }
  4045. .pagination-single.only-next .pagination-single-inner {
  4046. justify-content: flex-end;
  4047. }
  4048. .pagination-single hr:first-child {
  4049. margin: 0 0 4rem 0;
  4050. }
  4051. .pagination-single hr:last-child {
  4052. margin: 4rem 0 0.8rem 0;
  4053. }
  4054. .pagination-single a + a {
  4055. margin: 0 0 0 4rem;
  4056. }
  4057. .pagination-single a .arrow {
  4058. margin: 0 2rem 0 0;
  4059. }
  4060. .pagination-single .next-post {
  4061. flex-direction: row-reverse;
  4062. text-align: right;
  4063. }
  4064. .pagination-single .next-post .arrow {
  4065. margin: 0 0 0 2rem;
  4066. }
  4067. /* Blocks -------------------------------- */
  4068. /* BLOCK: SHARED MEDIA STYLES */
  4069. .wp-block-embed figcaption,
  4070. .wp-block-image figcaption {
  4071. font-size: 1.6rem;
  4072. }
  4073. /* BLOCK: BASE MARGINS */
  4074. .wp-block-archives:not(.alignwide):not(.alignfull),
  4075. .wp-block-categories:not(.alignwide):not(.alignfull),
  4076. .wp-block-code,
  4077. .wp-block-columns:not(.alignwide):not(.alignfull),
  4078. .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  4079. .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  4080. .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  4081. .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
  4082. .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  4083. .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
  4084. .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
  4085. .wp-block-media-text:not(.alignwide):not(.alignfull),
  4086. .wp-block-preformatted,
  4087. .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
  4088. .wp-block-quote,
  4089. .wp-block-quote.is-large,
  4090. .wp-block-quote.is-style-large,
  4091. .wp-block-verse,
  4092. .wp-block-video:not(.alignwide):not(.alignfull) {
  4093. margin-bottom: 4rem;
  4094. margin-top: 4rem;
  4095. }
  4096. /* BLOCK: COLUMNS */
  4097. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  4098. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4099. margin-top: -6rem;
  4100. }
  4101. .entry-content .wp-block-columns h1,
  4102. .entry-content .wp-block-columns h2,
  4103. .entry-content .wp-block-columns h3,
  4104. .entry-content .wp-block-columns h4,
  4105. .entry-content .wp-block-columns h5,
  4106. .entry-content .wp-block-columns h6 {
  4107. margin: 3.5rem 0 2rem;
  4108. }
  4109. /* BLOCK: COVER */
  4110. .wp-block-cover-image .wp-block-cover__inner-container,
  4111. .wp-block-cover .wp-block-cover__inner-container {
  4112. width: calc(100% - 8rem);
  4113. }
  4114. .wp-block-cover-image h2,
  4115. .wp-block-cover h2 {
  4116. font-size: 4.8rem;
  4117. }
  4118. /* BLOCK: GALLERY */
  4119. figure.wp-block-gallery.alignnone,
  4120. figure.wp-block-gallery.aligncenter {
  4121. margin-bottom: 4rem;
  4122. margin-top: 4rem;
  4123. }
  4124. figure.wp-block-gallery.alignwide,
  4125. figure.wp-block-gallery.alignfull {
  4126. margin-bottom: 6rem;
  4127. margin-top: 6rem;
  4128. }
  4129. /* BLOCK: GROUP */
  4130. .wp-block-group.has-background {
  4131. padding: 4rem;
  4132. margin-top: 0;
  4133. margin-bottom: 0;
  4134. }
  4135. .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  4136. padding-left: 0;
  4137. padding-right: 0;
  4138. }
  4139. /* BLOCK: MEDIA AND TEXT */
  4140. .wp-block-media-text .wp-block-media-text__content {
  4141. padding: 4rem;
  4142. }
  4143. /* BLOCK: PULLQUOTE */
  4144. .wp-block-pullquote blockquote p {
  4145. font-size: 3.2rem;
  4146. }
  4147. .wp-block-pullquote cite {
  4148. margin-top: 2rem;
  4149. }
  4150. .wp-block-pullquote.alignfull:not(.is-style-solid-color) {
  4151. padding-left: 1rem;
  4152. padding-right: 1rem;
  4153. }
  4154. .wp-block-pullquote.alignwide::before,
  4155. .wp-block-pullquote.alignfull::before {
  4156. font-size: 11.272727272rem;
  4157. height: 8rem;
  4158. margin-bottom: 2rem;
  4159. width: 8rem;
  4160. }
  4161. .wp-block-pullquote.alignwide blockquote p,
  4162. .wp-block-pullquote.alignfull blockquote p {
  4163. font-size: 4.8rem;
  4164. line-height: 1.203125;
  4165. }
  4166. .wp-block-pullquote.alignleft p,
  4167. .wp-block-pullquote.alignright p,
  4168. .wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
  4169. .wp-block-pullquote.alignright.is-style-solid-color blockquote p {
  4170. font-size: 3.2rem;
  4171. line-height: 1.1875;
  4172. }
  4173. .wp-block-pullquote.is-style-solid-color.alignwide,
  4174. .wp-block-pullquote.is-style-solid-color.alignfull {
  4175. padding: 6rem 4rem 4rem;
  4176. }
  4177. .wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
  4178. .wp-block-pullquote.alignright.is-style-solid-color blockquote p {
  4179. font-size: 2.6rem;
  4180. }
  4181. /* BLOCK: QUOTE */
  4182. .wp-block-quote.is-large p,
  4183. .wp-block-quote.is-style-large p {
  4184. font-size: 2.8rem;
  4185. }
  4186. /* BLOCK: SEPARATOR */
  4187. hr.wp-block-separator {
  4188. margin: 6rem auto;
  4189. }
  4190. .wp-block-separator.is-style-wide {
  4191. max-width: calc(100vw - 8rem);
  4192. }
  4193. /* Entry Content ------------------------- */
  4194. .entry-content {
  4195. font-size: 2.1rem;
  4196. }
  4197. .entry-content p,
  4198. .entry-content li {
  4199. line-height: 1.476;
  4200. }
  4201. .entry-content h1,
  4202. .entry-content h2,
  4203. .entry-content h3 {
  4204. margin: 6rem auto 3rem;
  4205. }
  4206. .entry-content h4,
  4207. .entry-content h5,
  4208. .entry-content h6 {
  4209. margin: 4.5rem auto 2.5rem;
  4210. }
  4211. .alignnone,
  4212. .aligncenter {
  4213. margin-bottom: 4rem;
  4214. margin-top: 4rem;
  4215. }
  4216. .alignleft {
  4217. /*rtl:ignore*/
  4218. margin: 0.3rem 2rem 2rem 0;
  4219. }
  4220. .alignright {
  4221. /*rtl:ignore*/
  4222. margin: 0.3rem 0 2rem 2rem;
  4223. }
  4224. .entry-content > .alignwide:not(.wp-block-group.has-background),
  4225. .entry-content > .alignfull:not(.wp-block-group.has-background) {
  4226. margin-bottom: 6rem;
  4227. margin-top: 6rem;
  4228. }
  4229. .entry-content > .alignwide {
  4230. max-width: calc(100vw - 8rem);
  4231. width: calc(100vw - 8rem);
  4232. }
  4233. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
  4234. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
  4235. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  4236. /*rtl:ignore*/
  4237. margin-left: 4rem;
  4238. }
  4239. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
  4240. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
  4241. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  4242. /*rtl:ignore*/
  4243. margin-right: 4rem;
  4244. }
  4245. .entry-content > .alignwide:first-child,
  4246. .entry-content > .alignfull:first-child {
  4247. margin-bottom: 8rem;
  4248. }
  4249. /* ENTRY MEDIA */
  4250. .alignfull > figcaption,
  4251. .alignfull > .wp-caption-text {
  4252. width: calc(100% - 8rem);
  4253. }
  4254. /* Comments ------------------------------ */
  4255. .comments-wrapper {
  4256. margin-top: 8rem;
  4257. }
  4258. .comment-reply-title {
  4259. margin-bottom: 4.6rem;
  4260. }
  4261. .comment-respond p.comment-notes,
  4262. .comment-respond p.logged-in-as {
  4263. font-size: 1.8rem;
  4264. letter-spacing: -0.025em;
  4265. margin: -2.5rem 0 4.4rem 0;
  4266. }
  4267. .comments .comment,
  4268. .comments .pingback,
  4269. .comments .trackback,
  4270. .comments .review {
  4271. padding-top: 5rem;
  4272. }
  4273. div.comment:first-of-type {
  4274. margin-top: 5rem;
  4275. }
  4276. .comment-meta {
  4277. margin-bottom: 2rem;
  4278. min-height: 6rem;
  4279. padding: 0.3rem 0 0 7.5rem;
  4280. }
  4281. .comment-meta .avatar {
  4282. display: block;
  4283. height: 6rem;
  4284. position: absolute;
  4285. left: 0;
  4286. top: 0;
  4287. width: 6rem;
  4288. }
  4289. .comment-author {
  4290. font-size: 2.4rem;
  4291. }
  4292. .comment-metadata {
  4293. font-size: 1.6rem;
  4294. margin-top: 0.8rem;
  4295. }
  4296. .comment-footer-meta {
  4297. margin-top: 2.5rem;
  4298. }
  4299. .comments-pagination {
  4300. margin-top: 8rem;
  4301. }
  4302. /* PINGBACKS & TRACKBACKS */
  4303. .pingback .comment-body {
  4304. padding: 0;
  4305. }
  4306. /* COMMENT RESPOND */
  4307. .comment-respond p {
  4308. margin-bottom: 2.5rem;
  4309. }
  4310. .comment-form p.logged-in-as {
  4311. margin: -2.5rem 0 4.4rem 0;
  4312. }
  4313. .comment-respond .comment-form-author,
  4314. .comment-respond .comment-form-email {
  4315. float: left;
  4316. width: calc(50% - 1rem);
  4317. }
  4318. .comment-respond .comment-form-email {
  4319. margin-left: 2rem;
  4320. }
  4321. .comments .comment-respond {
  4322. padding: 5rem 0 0;
  4323. }
  4324. .comment-reply-title small {
  4325. display: inline;
  4326. margin: 0 0 0 0.5rem;
  4327. }
  4328. /* Site Pagination ----------------------- */
  4329. .pagination-separator {
  4330. margin: 8rem 0;
  4331. }
  4332. /* Display the full text for Newer and Older Posts. */
  4333. .nav-short {
  4334. display: inline;
  4335. }
  4336. .pagination .nav-links {
  4337. font-size: 2.4rem;
  4338. font-weight: 700;
  4339. margin: -2.5rem 0 0 -4rem;
  4340. }
  4341. .nav-links > * {
  4342. margin: 2.5rem 0 0 4rem;
  4343. }
  4344. /* Error 404 ----------------------------- */
  4345. .error404 #site-content {
  4346. padding-top: 8rem;
  4347. }
  4348. /* Widgets ------------------------------- */
  4349. .widget .widget-title {
  4350. margin-bottom: 3rem;
  4351. }
  4352. /* Site Footer --------------------------- */
  4353. .footer-top-visible .footer-nav-widgets-wrapper,
  4354. .footer-top-hidden #site-footer {
  4355. margin-top: 8rem;
  4356. }
  4357. /* FOOTER TOP */
  4358. .footer-top {
  4359. padding: 3.7rem 0;
  4360. }
  4361. .footer-menu {
  4362. font-size: 2.4rem;
  4363. margin: -0.8rem 0 0 -1.6rem;
  4364. }
  4365. .footer-menu li {
  4366. margin: 0.8rem 0 0 1.6rem;
  4367. }
  4368. .has-footer-menu .footer-social-wrapper {
  4369. flex: 1;
  4370. margin-left: 4rem;
  4371. width: auto;
  4372. }
  4373. /* FOOTER WIDGETS */
  4374. .footer-widgets-outer-wrapper {
  4375. padding: 8rem 0;
  4376. }
  4377. .footer-widgets-wrapper {
  4378. display: flex;
  4379. justify-content: space-between;
  4380. margin-left: -4rem;
  4381. width: calc(100% + 4rem);
  4382. }
  4383. .footer-widgets {
  4384. margin-left: 4rem;
  4385. width: 50%;
  4386. }
  4387. .footer-widgets + .footer-widgets {
  4388. margin-top: 0;
  4389. }
  4390. .footer-widgets .widget {
  4391. border-top: none;
  4392. margin-top: 5rem;
  4393. padding-top: 0;
  4394. }
  4395. .footer-widgets .widget:first-child {
  4396. margin-top: 0;
  4397. }
  4398. /* FOOTER BOTTOM */
  4399. #site-footer {
  4400. font-size: 1.8rem;
  4401. padding: 4.3rem 0;
  4402. }
  4403. .footer-credits {
  4404. display: flex;
  4405. }
  4406. .footer-copyright {
  4407. font-weight: 700;
  4408. }
  4409. .powered-by-wordpress {
  4410. display: block;
  4411. }
  4412. .to-the-top-long {
  4413. display: inline;
  4414. }
  4415. .to-the-top-short {
  4416. display: none;
  4417. }
  4418. }
  4419. @media (min-width: 782px) {
  4420. /* Blocks -------------------------------- */
  4421. /* BLOCK: COLUMNS */
  4422. .wp-block-column {
  4423. margin-bottom: 0;
  4424. }
  4425. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  4426. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4427. margin-top: -2.8rem;
  4428. }
  4429. }
  4430. @media ( min-width: 1000px ) {
  4431. /* Document Setup ------------------------ */
  4432. /* Helper Classes ------------------------ */
  4433. /* Site Header --------------------------- */
  4434. #site-header {
  4435. z-index: 2;
  4436. }
  4437. .header-inner {
  4438. align-items: center;
  4439. display: flex;
  4440. justify-content: space-between;
  4441. padding: 2.8rem 0;
  4442. }
  4443. .header-titles-wrapper {
  4444. margin-right: 4rem;
  4445. max-width: 50%;
  4446. padding: 0;
  4447. text-align: left;
  4448. }
  4449. .header-titles {
  4450. align-items: baseline;
  4451. display: flex;
  4452. flex-wrap: wrap;
  4453. justify-content: flex-start;
  4454. margin: -1rem 0 0 -2.4rem;
  4455. }
  4456. .header-titles .site-title,
  4457. .header-titles .site-logo,
  4458. .header-titles .site-description {
  4459. margin: 1rem 0 0 2.4rem;
  4460. }
  4461. .wp-custom-logo .header-titles {
  4462. align-items: center;
  4463. }
  4464. /* HEADER NAVIGATION */
  4465. .header-navigation-wrapper {
  4466. align-items: center;
  4467. display: flex;
  4468. }
  4469. .primary-menu-wrapper {
  4470. display: block;
  4471. width: 100%;
  4472. }
  4473. /* HEADER TOGGLES */
  4474. .mobile-search-toggle,
  4475. .mobile-nav-toggle {
  4476. display: none !important;
  4477. }
  4478. .primary-menu-wrapper + .header-toggles {
  4479. margin-left: 3rem;
  4480. }
  4481. .header-toggles {
  4482. display: flex;
  4483. flex-shrink: 0;
  4484. margin-right: -3rem;
  4485. }
  4486. .header-inner .toggle {
  4487. height: 4.4rem;
  4488. padding: 0 3rem;
  4489. position: relative;
  4490. bottom: auto;
  4491. left: auto;
  4492. right: auto;
  4493. top: auto;
  4494. width: auto;
  4495. }
  4496. .header-inner .toggle-wrapper {
  4497. position: relative;
  4498. }
  4499. .header-inner .toggle-wrapper::before {
  4500. background: #dedfdf;
  4501. content: "";
  4502. display: block;
  4503. height: 2.7rem;
  4504. position: absolute;
  4505. left: 0;
  4506. top: calc(50% - 1.35rem);
  4507. width: 0.1rem;
  4508. }
  4509. .header-inner .toggle-wrapper:first-child::before {
  4510. content: none;
  4511. }
  4512. .header-inner .primary-menu-wrapper + .header-toggles .toggle-wrapper:first-child::before {
  4513. content: "";
  4514. }
  4515. .nav-toggle-wrapper:not(.has-expanded-menu) {
  4516. display: none;
  4517. }
  4518. .toggle-inner {
  4519. position: static;
  4520. }
  4521. .toggle-inner .toggle-text {
  4522. left: 0;
  4523. right: 0;
  4524. text-align: center;
  4525. top: calc(100% - 0.3rem);
  4526. width: auto;
  4527. }
  4528. .header-toggles:only-child .nav-toggle .toggle-inner {
  4529. padding-top: 0;
  4530. }
  4531. .header-toggles:only-child .toggle-inner {
  4532. display: flex;
  4533. flex-wrap: nowrap;
  4534. align-items: center;
  4535. }
  4536. .header-toggles:only-child .toggle-inner .svg-icon {
  4537. order: 1;
  4538. }
  4539. .header-toggles:only-child .toggle-inner .toggle-text {
  4540. position: static;
  4541. padding-right: 20px;
  4542. font-size: 15px;
  4543. color: inherit;
  4544. }
  4545. /* Menu Modal ---------------------------- */
  4546. .menu-modal {
  4547. opacity: 1;
  4548. justify-content: flex-end;
  4549. padding: 0;
  4550. transition: background-color 0.3s ease-in, left 0s 0.3s, right 0s 0.3s;
  4551. }
  4552. .menu-modal.cover-modal {
  4553. background: rgba(0, 0, 0, 0);
  4554. }
  4555. .menu-modal.active {
  4556. background: rgba(0, 0, 0, 0.2);
  4557. transition: background-color 0.3s ease-out;
  4558. }
  4559. .menu-wrapper.section-inner {
  4560. width: calc(100% - 8rem);
  4561. }
  4562. .menu-modal-inner {
  4563. box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  4564. opacity: 0;
  4565. padding: 0;
  4566. transform: translateX(20rem);
  4567. transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  4568. width: 50rem;
  4569. }
  4570. .menu-modal.active .menu-modal-inner {
  4571. opacity: 1;
  4572. transform: translateX(0);
  4573. transition-timing-function: ease-out;
  4574. }
  4575. .mobile-menu {
  4576. display: none;
  4577. }
  4578. .expanded-menu {
  4579. display: block;
  4580. }
  4581. .menu-bottom {
  4582. padding: 6rem 0;
  4583. }
  4584. .menu-bottom .social-menu {
  4585. justify-content: flex-start;
  4586. }
  4587. /* Sub Page ------------------------------ */
  4588. /* FEATURED MEDIA */
  4589. .featured-media figcaption {
  4590. width: 100%;
  4591. }
  4592. /* Template: Full Width ------------------ */
  4593. .template-full-width .wp-block-image .alignleft {
  4594. /*rtl:ignore*/
  4595. margin-right: 2rem;
  4596. }
  4597. .template-full-width .wp-block-image .alignright {
  4598. /*rtl:ignore*/
  4599. margin-left: 2rem;
  4600. }
  4601. /* Post: Archive ------------------------- */
  4602. /* Post: Single -------------------------- */
  4603. .singular .intro-text {
  4604. font-size: 2.8rem;
  4605. }
  4606. /* Blocks -------------------------------- */
  4607. /* BLOCK: COLUMNS */
  4608. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  4609. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4610. margin-top: -4.8rem;
  4611. }
  4612. /* BLOCK: GALLERY */
  4613. figure.wp-block-gallery.alignwide,
  4614. figure.wp-block-gallery.alignfull {
  4615. margin-bottom: 8rem;
  4616. margin-top: 8rem;
  4617. }
  4618. /* BLOCK: GROUP */
  4619. .entry-content > .wp-block-group.alignwide.has-background,
  4620. .entry-content > .wp-block-group.alignfull.has-background {
  4621. padding: 8rem 4rem;
  4622. margin-bottom: 0;
  4623. margin-top: 0;
  4624. }
  4625. /* BLOCK: IMAGE */
  4626. .wp-block-image .alignleft {
  4627. /*rtl:ignore*/
  4628. margin-right: 0;
  4629. }
  4630. .wp-block-image .alignright {
  4631. /*rtl:ignore*/
  4632. margin-left: 0;
  4633. }
  4634. .wp-block-image .aligncenter figcaption {
  4635. text-align: center;
  4636. }
  4637. /* BLOCK: SEPARATOR */
  4638. hr.wp-block-separator {
  4639. margin: 8rem auto;
  4640. }
  4641. /* Entry Content ------------------------- */
  4642. /* ALIGNMENT CLASSES */
  4643. .entry-content > .alignleft,
  4644. .entry-content > p .alignleft,
  4645. .entry-content > .wp-block-image .alignleft {
  4646. position: absolute;
  4647. /*rtl:ignore*/
  4648. right: calc((100vw - 58rem) / 2 + 58rem + 2rem);
  4649. max-width: calc((100% - 58rem) / 2 - 6rem);
  4650. }
  4651. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
  4652. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
  4653. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
  4654. position: relative;
  4655. /*rtl:ignore*/
  4656. right: inherit;
  4657. max-width: inherit;
  4658. }
  4659. [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
  4660. [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
  4661. [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft,
  4662. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4663. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4664. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  4665. position: absolute;
  4666. /*rtl:ignore*/
  4667. right: calc((100% - 58rem) / 2 + 58rem + 4rem);
  4668. max-width: calc((100% - 58rem) / 2 - 4rem);
  4669. }
  4670. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
  4671. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
  4672. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {
  4673. /*rtl:ignore*/
  4674. right: calc((100% - 58rem) / 2 + 58rem);
  4675. }
  4676. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4677. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4678. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  4679. /*rtl:ignore*/
  4680. margin-left: 4rem;
  4681. }
  4682. .entry-content > .alignright,
  4683. .entry-content > p .alignright,
  4684. .entry-content > .wp-block-image .alignright,
  4685. [class*="__inner-container"] > .alignright {
  4686. position: absolute;
  4687. /*rtl:ignore*/
  4688. left: calc((100vw - 58rem) / 2 + 58rem + 2rem);
  4689. max-width: calc((100% - 58rem) / 2 - 6rem);
  4690. }
  4691. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
  4692. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
  4693. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
  4694. position: relative;
  4695. /*rtl:ignore*/
  4696. left: inherit;
  4697. max-width: inherit;
  4698. }
  4699. [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
  4700. [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
  4701. [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright,
  4702. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4703. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4704. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4705. position: absolute;
  4706. /*rtl:ignore*/
  4707. left: calc((100% - 58rem) / 2 + 58rem + 4rem);
  4708. max-width: calc((100% - 58rem) / 2 - 4rem);
  4709. }
  4710. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
  4711. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
  4712. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {
  4713. /*rtl:ignore*/
  4714. left: calc((100% - 58rem) / 2 + 58rem + 4rem);
  4715. }
  4716. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4717. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4718. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4719. /*rtl:ignore*/
  4720. margin-right: 4rem;
  4721. }
  4722. .entry-content > .alignwide:not(.wp-block-group.has-background),
  4723. .entry-content > .alignfull:not(.wp-block-group.has-background) {
  4724. margin-bottom: 8rem;
  4725. margin-top: 8rem;
  4726. }
  4727. /* ENTRY MEDIA */
  4728. .alignfull > figcaption,
  4729. .alignfull > .wp-caption-text {
  4730. width: calc(100% - 10rem);
  4731. }
  4732. /* Comments ------------------------------ */
  4733. .comment-meta {
  4734. padding-left: 0;
  4735. }
  4736. .comment-meta .avatar {
  4737. left: -8rem;
  4738. }
  4739. /* Site Pagination ----------------------- */
  4740. .pagination .nav-links {
  4741. justify-content: space-between;
  4742. margin: 0;
  4743. width: 100%;
  4744. }
  4745. .nav-links > * {
  4746. margin: 0 2rem;
  4747. }
  4748. .pagination .next,
  4749. .pagination .prev {
  4750. display: block;
  4751. }
  4752. .pagination .prev {
  4753. margin: 0 auto 0 0;
  4754. }
  4755. .pagination .next {
  4756. text-align: right;
  4757. margin: 0 0 0 auto;
  4758. }
  4759. /* Site Footer --------------------------- */
  4760. /* FOOTER TOP */
  4761. .footer-top {
  4762. align-items: center;
  4763. }
  4764. .footer-menu {
  4765. align-items: baseline;
  4766. display: flex;
  4767. justify-content: flex-start;
  4768. flex-wrap: wrap;
  4769. font-size: 2.1rem;
  4770. margin: -1.2rem 0 0 -2.4rem;
  4771. }
  4772. .footer-menu li {
  4773. margin: 1.2rem 0 0 2.4rem;
  4774. }
  4775. }
  4776. @media ( min-width: 1220px ) {
  4777. /* Element Base -------------------------- */
  4778. /* TITLES */
  4779. h1,
  4780. .heading-size-1 {
  4781. font-size: 8.4rem;
  4782. }
  4783. /* Helper Classes ------------------------ */
  4784. /* Site Header --------------------------- */
  4785. /* PRIMARY MENU */
  4786. ul.primary-menu {
  4787. margin: -0.8rem 0 0 -2.5rem;
  4788. }
  4789. .primary-menu > li {
  4790. margin: 0.8rem 0 0 2.5rem;
  4791. }
  4792. /* HEADER TOGGLES */
  4793. .primary-menu-wrapper + .header-toggles {
  4794. margin-left: 4rem;
  4795. }
  4796. .header-toggles {
  4797. margin-right: -4rem;
  4798. }
  4799. .header-toggles .toggle {
  4800. padding: 0 4rem;
  4801. }
  4802. /* Menu Modal ---------------------------- */
  4803. /* Search Modal -------------------------- */
  4804. /* Sub Page ------------------------------ */
  4805. /* Template: Cover Template -------------- */
  4806. .cover-header + .post-inner {
  4807. padding-top: 10rem;
  4808. }
  4809. /* Post: Archive ------------------------- */
  4810. /* Post: Single -------------------------- */
  4811. .singular .intro-text {
  4812. font-size: 3.2rem;
  4813. letter-spacing: -0.03125em;
  4814. line-height: 1.375;
  4815. }
  4816. /* Blocks -------------------------------- */
  4817. /* BLOCK: COLUMNS */
  4818. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4819. margin-top: -6rem;
  4820. }
  4821. /* BLOCK: GALLERY */
  4822. figure.wp-block-gallery.alignfull {
  4823. margin-bottom: 10rem;
  4824. margin-top: 10rem;
  4825. }
  4826. /* BLOCK: GROUP */
  4827. .entry-content > .wp-block-group.alignwide.has-background,
  4828. .entry-content > .wp-block-group.alignfull.has-background {
  4829. padding: 8rem 6rem;
  4830. margin-bottom: 0;
  4831. margin-top: 0;
  4832. }
  4833. /* BLOCK: PULLQUOTE */
  4834. .wp-block-pullquote.alignwide blockquote p,
  4835. .wp-block-pullquote.alignfull blockquote p {
  4836. font-size: 6.4rem;
  4837. }
  4838. .wp-block-pullquote.is-style-solid-color.alignwide,
  4839. .wp-block-pullquote.is-style-solid-color.alignfull {
  4840. padding: 9rem 4rem 8rem;
  4841. }
  4842. /* Entry Content ------------------------- */
  4843. /* ALIGNMENT CLASSES */
  4844. .entry-content > .alignfull {
  4845. margin-bottom: 10rem;
  4846. margin-top: 10rem;
  4847. }
  4848. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
  4849. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
  4850. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {
  4851. /*rtl:ignore*/
  4852. right: calc((100% - 58rem) / 2 + 58rem - 2rem);
  4853. }
  4854. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
  4855. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
  4856. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {
  4857. /*rtl:ignore*/
  4858. left: calc((100% - 58rem) / 2 + 58rem + 6rem);
  4859. }
  4860. /* Comments ------------------------------ */
  4861. .comment-reply-title {
  4862. font-size: 5.6rem;
  4863. line-height: 1.2;
  4864. margin-bottom: 6rem;
  4865. }
  4866. .comment-respond p.comment-notes,
  4867. .comment-respond p.logged-in-as {
  4868. margin: -4rem 0 6rem 0;
  4869. }
  4870. .comments .comment-respond .comment-reply-title {
  4871. font-size: 4.8rem;
  4872. }
  4873. .comments .comment-respond p.comment-notes,
  4874. .comments .comment-respond p.logged-in-as {
  4875. margin: -4.5rem 0 4rem 0;
  4876. }
  4877. /* Site Pagination ----------------------- */
  4878. /* Widgets ------------------------------- */
  4879. .widget-content {
  4880. font-size: 2.1rem;
  4881. }
  4882. /* Site Footer --------------------------- */
  4883. .footer-menu {
  4884. font-size: 2.4rem;
  4885. margin: -1.5rem 0 0 -3rem;
  4886. }
  4887. .footer-menu li {
  4888. margin: 1.5rem 0 0 3rem;
  4889. }
  4890. ul.footer-social {
  4891. margin: -1rem 0 0 -1rem;
  4892. }
  4893. ul.footer-social li {
  4894. margin: 1rem 0 0 1rem;
  4895. }
  4896. .footer-social a {
  4897. height: 4.4rem;
  4898. width: 4.4rem;
  4899. }
  4900. .footer-social a::before {
  4901. font-size: 2rem;
  4902. }
  4903. /* FOOTER WIDGETS */
  4904. .footer-widgets-wrapper {
  4905. margin-left: -6rem;
  4906. width: calc(100% + 6rem);
  4907. }
  4908. .footer-widgets {
  4909. margin-left: 6rem;
  4910. }
  4911. }
  4912. @media ( min-width: 1240px ) {
  4913. /* Blocks -------------------------------- */
  4914. body.template-full-width .entry-content > .alignleft {
  4915. /*rtl:ignore*/
  4916. margin-left: calc(( 100vw - 120rem ) / 2);
  4917. }
  4918. body.template-full-width .entry-content > .alignright {
  4919. /*rtl:ignore*/
  4920. margin-right: calc(( 100vw - 120rem ) / 2);
  4921. }
  4922. }
  4923. @media ( min-width: 1280px ) {
  4924. /* Blocks -------------------------------- */
  4925. /* BLOCK: GALLERY */
  4926. figure.wp-block-gallery.alignleft {
  4927. /*rtl:ignore*/
  4928. margin-left: -31rem;
  4929. }
  4930. figure.wp-block-gallery.alignright {
  4931. /*rtl:ignore*/
  4932. margin-right: -31rem;
  4933. }
  4934. /* BLOCK: SEPARATOR */
  4935. .wp-block-separator.is-style-wide {
  4936. max-width: 120rem;
  4937. width: 120rem;
  4938. }
  4939. /* Entry Content ------------------------- */
  4940. /* ALIGNMENT CLASSES */
  4941. .entry-content > .alignleft,
  4942. .entry-content > p .alignleft,
  4943. .entry-content > .wp-block-image .alignleft {
  4944. /*rtl:ignore*/
  4945. right: calc((100vw - 58rem) / 2 + 58rem + 4rem);
  4946. /*rtl:ignore*/
  4947. margin-left: -31rem;
  4948. }
  4949. .entry-content > .alignright,
  4950. .entry-content > p .alignright,
  4951. .entry-content > .wp-block-image .alignright {
  4952. /*rtl:ignore*/
  4953. left: calc((100vw - 58rem) / 2 + 58rem + 4rem);
  4954. /*rtl:ignore*/
  4955. margin-right: -31rem;
  4956. }
  4957. .entry-content > .alignwide {
  4958. max-width: 120rem;
  4959. width: 120rem;
  4960. }
  4961. [class*="__inner-container"] > .alignwide {
  4962. max-width: 120rem;
  4963. width: 100%;
  4964. }
  4965. .alignleft,
  4966. .alignright,
  4967. .entry-content > .alignleft,
  4968. .entry-content > p .alignleft,
  4969. .entry-content > .wp-block-image .alignleft,
  4970. .entry-content > .alignright,
  4971. .entry-content > p .alignright,
  4972. .entry-content > .wp-block-image .alignright,
  4973. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
  4974. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
  4975. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
  4976. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4977. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4978. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
  4979. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
  4980. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
  4981. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
  4982. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4983. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4984. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4985. max-width: 25rem;
  4986. }
  4987. /* Template: Full Width ------------------ */
  4988. body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  4989. padding-left: 0;
  4990. padding-right: 0;
  4991. }
  4992. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  4993. /*rtl:ignore*/
  4994. margin-left: 0;
  4995. }
  4996. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4997. /*rtl:ignore*/
  4998. margin-right: 0;
  4999. }
  5000. }
  5001. @media ( min-width: 1330px ) {
  5002. /* Entry Content ------------------------- */
  5003. /* ALIGNMENT CLASSES */
  5004. .alignleft,
  5005. .alignright,
  5006. .entry-content > .alignleft,
  5007. .entry-content > p .alignleft,
  5008. .entry-content > .wp-block-image .alignleft,
  5009. .entry-content > .alignright,
  5010. .entry-content > p .alignright,
  5011. .entry-content > .wp-block-image .alignright,
  5012. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
  5013. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
  5014. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
  5015. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  5016. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  5017. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
  5018. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
  5019. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
  5020. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
  5021. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  5022. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  5023. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  5024. max-width: 29rem;
  5025. }
  5026. /* Blocks -------------------------------- */
  5027. /* BLOCK: PULLQUOTE */
  5028. .wp-block-pullquote.is-style-solid-color.alignleft::before,
  5029. .wp-block-pullquote.is-style-solid-color.alignright::before {
  5030. top: 0;
  5031. }
  5032. }