style.css 117 KB

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