style-rtl.css 111 KB

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