style-rtl.css 167 KB

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