style-rtl.css 152 KB

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