style-rtl.css 117 KB

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