style.css 117 KB

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