style-rtl.css 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Calm Business
  4. Theme URI: https://github.com/automattic/themes
  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.3
  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-right: 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-right: 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-right: 2px solid #8D6708;
  734. margin-right: 0;
  735. padding: 0 1rem 0 0;
  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-left: 0.5rem;
  979. }
  980. .main-navigation .main-menu > li > a + svg {
  981. margin-left: 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-left: 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-left: 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-right: 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-left: 0;
  1033. }
  1034. .main-navigation .sub-menu {
  1035. text-align: right;
  1036. background-color: #8D6708;
  1037. color: #FAF8F5;
  1038. list-style: none;
  1039. padding-right: 0;
  1040. position: absolute;
  1041. opacity: 0;
  1042. right: -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. left: 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-left: 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) 1rem calc( .5 * 1rem) calc( 24px + 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: right;
  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-left: calc( .25 * 1rem);
  1116. }
  1117. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
  1118. display: block;
  1119. right: 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. right: 0;
  1135. left: 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. right: 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. left: 0;
  1152. right: 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. right: 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. right: 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. right: 0;
  1207. left: 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. right: 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. left: 0;
  1228. right: 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. right: 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-right: 0;
  1297. /* Mobile position */
  1298. right: 0;
  1299. top: 0;
  1300. left: 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-right: 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-right: 0;
  1411. }
  1412. .footer-navigation .footer-menu li {
  1413. display: inline;
  1414. margin-left: 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-right: 1rem;
  1476. margin-right: 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-right: 0;
  1492. }
  1493. .pagination .nav-links > *.dots, .pagination .nav-links > *.next {
  1494. padding-left: 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-right: 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-right: 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. right: 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. float: left;
  1610. margin-right: 1rem;
  1611. }
  1612. @media only screen and (min-width: 768px) {
  1613. .alignleft {
  1614. margin-right: calc(2 * 1rem);
  1615. }
  1616. }
  1617. .alignright {
  1618. float: right;
  1619. margin-left: 1rem;
  1620. }
  1621. @media only screen and (min-width: 768px) {
  1622. .alignright {
  1623. margin-left: calc(2 * 1rem);
  1624. }
  1625. }
  1626. .aligncenter {
  1627. clear: both;
  1628. display: block;
  1629. margin-right: auto;
  1630. margin-left: auto;
  1631. }
  1632. /* Clearings */
  1633. .clear:before,
  1634. .clear:after,
  1635. .entry-content:before,
  1636. .entry-content:after,
  1637. .comment-content:before,
  1638. .comment-content:after,
  1639. .site-header:before,
  1640. .site-header:after,
  1641. .site-content:before,
  1642. .site-content:after,
  1643. .site-footer:before,
  1644. .site-footer:after {
  1645. content: "";
  1646. display: table;
  1647. table-layout: fixed;
  1648. }
  1649. .clear:after,
  1650. .entry-content:after,
  1651. .comment-content:after,
  1652. .site-header:after,
  1653. .site-content:after,
  1654. .site-footer:after {
  1655. clear: both;
  1656. }
  1657. /* Layout */
  1658. /** === Layout === */
  1659. #page {
  1660. width: 100%;
  1661. }
  1662. .site-content {
  1663. overflow: hidden;
  1664. }
  1665. /* Content */
  1666. /*--------------------------------------------------------------
  1667. ## Header
  1668. --------------------------------------------------------------*/
  1669. .site-header {
  1670. padding: 1rem 1em 0.75rem;
  1671. text-align: center;
  1672. }
  1673. .site-header.featured-image {
  1674. display: flex;
  1675. flex-direction: column;
  1676. justify-content: space-between;
  1677. min-height: 90vh;
  1678. }
  1679. .site-header.featured-image .site-branding-container {
  1680. margin-bottom: auto;
  1681. }
  1682. @media only screen and (min-width: 768px) {
  1683. .site-header {
  1684. margin: 0;
  1685. padding: 2rem 0 1.5rem;
  1686. }
  1687. .site-header.featured-image {
  1688. min-height: 100vh;
  1689. margin-bottom: 3rem;
  1690. }
  1691. }
  1692. .site-branding {
  1693. color: #fff;
  1694. position: relative;
  1695. }
  1696. @media only screen and (min-width: 768px) {
  1697. .site-branding {
  1698. margin: 0 calc(10% + 60px);
  1699. }
  1700. }
  1701. .site-logo {
  1702. position: relative;
  1703. z-index: 999;
  1704. display: inline-block;
  1705. margin-bottom: 0.5rem;
  1706. }
  1707. @media only screen and (min-width: 768px) {
  1708. .site-logo {
  1709. margin-bottom: 1rem;
  1710. z-index: 999;
  1711. }
  1712. }
  1713. .site-logo .custom-logo-link {
  1714. box-sizing: content-box;
  1715. overflow: hidden;
  1716. display: block;
  1717. }
  1718. .site-logo .custom-logo-link .custom-logo {
  1719. min-height: inherit;
  1720. max-height: 66px;
  1721. vertical-align: top;
  1722. width: auto;
  1723. }
  1724. @media only screen and (min-width: 768px) {
  1725. .site-logo .custom-logo-link .custom-logo {
  1726. max-height: 88px;
  1727. }
  1728. }
  1729. .site-title,
  1730. .site-title.wp-block-a8c-site-title,
  1731. .site-title.wp-block-a8c-site-title:focus {
  1732. margin: 0;
  1733. display: block;
  1734. color: #242424;
  1735. font-size: 1.6875em;
  1736. /* When there is no description set, make sure navigation appears below title. */
  1737. }
  1738. .site-title a,
  1739. .site-title.wp-block-a8c-site-title a,
  1740. .site-title.wp-block-a8c-site-title:focus a {
  1741. color: #242424;
  1742. }
  1743. .site-title a:link, .site-title a:visited,
  1744. .site-title.wp-block-a8c-site-title a:link,
  1745. .site-title.wp-block-a8c-site-title a:visited,
  1746. .site-title.wp-block-a8c-site-title:focus a:link,
  1747. .site-title.wp-block-a8c-site-title:focus a:visited {
  1748. color: #242424;
  1749. }
  1750. .site-title a:hover,
  1751. .site-title.wp-block-a8c-site-title a:hover,
  1752. .site-title.wp-block-a8c-site-title:focus a:hover {
  1753. color: #4a4a4a;
  1754. }
  1755. .featured-image .site-title, .featured-image
  1756. .site-title.wp-block-a8c-site-title, .featured-image
  1757. .site-title.wp-block-a8c-site-title:focus {
  1758. margin: 0;
  1759. }
  1760. .site-title + .main-navigation,
  1761. .site-title.wp-block-a8c-site-title + .main-navigation,
  1762. .site-title.wp-block-a8c-site-title:focus + .main-navigation {
  1763. display: block;
  1764. }
  1765. @media only screen and (min-width: 768px) {
  1766. .site-title,
  1767. .site-title.wp-block-a8c-site-title,
  1768. .site-title.wp-block-a8c-site-title:focus {
  1769. display: block;
  1770. }
  1771. }
  1772. .site-description,
  1773. .block-editor .wp-block-a8c-site-description,
  1774. .wp-block-a8c-site-description,
  1775. .wp-block-a8c-site-description:focus {
  1776. display: block;
  1777. color: #242424;
  1778. font-weight: normal;
  1779. margin: 8px 0 0;
  1780. }
  1781. .site-header.featured-image {
  1782. /* Hide overflow for overflowing featured image */
  1783. overflow: hidden;
  1784. /* Need relative positioning to properly align layers. */
  1785. position: relative;
  1786. /* Add text shadow to text, to increase readability. */
  1787. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  1788. /* Set white text color when featured image is set. */
  1789. /* add focus state to social media icons */
  1790. /* Entry header */
  1791. /* Custom Logo Link */
  1792. /* Make sure important elements are above pseudo elements used for effects. */
  1793. /* Set up image filter layer positioning */
  1794. /* Background & Effects */
  1795. /* Shared background settings between pseudo elements. */
  1796. background-position: center;
  1797. background-repeat: no-repeat;
  1798. background-size: cover;
  1799. /* The intensity of each blend mode is controlled via layer opacity. */
  1800. /* Second layer: screen. */
  1801. /* Third layer: multiply. */
  1802. /* When image filters are inactive, a black overlay is added. */
  1803. /* Fourth layer: overlay. */
  1804. /* Fifth layer: readability overlay */
  1805. }
  1806. .site-header.featured-image .site-branding .site-title,
  1807. .site-header.featured-image .site-branding .site-description,
  1808. .site-header.featured-image .main-navigation a:after,
  1809. .site-header.featured-image .main-navigation .main-menu > li.menu-item-has-children:after,
  1810. .site-header.featured-image .main-navigation li,
  1811. .site-header.featured-image .social-navigation li,
  1812. .site-header.featured-image .entry-meta,
  1813. .site-header.featured-image .entry-title {
  1814. color: #FAF8F5;
  1815. }
  1816. .site-header.featured-image .main-navigation a,
  1817. .site-header.featured-image .main-navigation a + svg,
  1818. .site-header.featured-image .social-navigation a,
  1819. .site-header.featured-image .site-title a,
  1820. .site-header.featured-image .site-featured-image a {
  1821. color: #FAF8F5;
  1822. transition: opacity 110ms ease-in-out;
  1823. }
  1824. .site-header.featured-image .main-navigation a:hover, .site-header.featured-image .main-navigation a:active,
  1825. .site-header.featured-image .main-navigation a:hover + svg,
  1826. .site-header.featured-image .main-navigation a:active + svg,
  1827. .site-header.featured-image .main-navigation a + svg:hover,
  1828. .site-header.featured-image .main-navigation a + svg:active,
  1829. .site-header.featured-image .main-navigation a + svg:hover + svg,
  1830. .site-header.featured-image .main-navigation a + svg:active + svg,
  1831. .site-header.featured-image .social-navigation a:hover,
  1832. .site-header.featured-image .social-navigation a:active,
  1833. .site-header.featured-image .social-navigation a:hover + svg,
  1834. .site-header.featured-image .social-navigation a:active + svg,
  1835. .site-header.featured-image .site-title a:hover,
  1836. .site-header.featured-image .site-title a:active,
  1837. .site-header.featured-image .site-title a:hover + svg,
  1838. .site-header.featured-image .site-title a:active + svg,
  1839. .site-header.featured-image .site-featured-image a:hover,
  1840. .site-header.featured-image .site-featured-image a:active,
  1841. .site-header.featured-image .site-featured-image a:hover + svg,
  1842. .site-header.featured-image .site-featured-image a:active + svg {
  1843. color: #FAF8F5;
  1844. opacity: 0.6;
  1845. }
  1846. .site-header.featured-image .main-navigation a:focus,
  1847. .site-header.featured-image .main-navigation a:focus + svg,
  1848. .site-header.featured-image .main-navigation a + svg:focus,
  1849. .site-header.featured-image .main-navigation a + svg:focus + svg,
  1850. .site-header.featured-image .social-navigation a:focus,
  1851. .site-header.featured-image .social-navigation a:focus + svg,
  1852. .site-header.featured-image .site-title a:focus,
  1853. .site-header.featured-image .site-title a:focus + svg,
  1854. .site-header.featured-image .site-featured-image a:focus,
  1855. .site-header.featured-image .site-featured-image a:focus + svg {
  1856. color: #FAF8F5;
  1857. }
  1858. .site-header.featured-image .main-navigation .sub-menu a {
  1859. opacity: inherit;
  1860. }
  1861. .site-header.featured-image .social-navigation a:focus {
  1862. color: #FAF8F5;
  1863. opacity: 1;
  1864. border-bottom: 1px solid #FAF8F5;
  1865. }
  1866. .site-header.featured-image .social-navigation svg,
  1867. .site-header.featured-image .site-featured-image svg {
  1868. /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
  1869. filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  1870. }
  1871. .site-header.featured-image .site-featured-image {
  1872. /* First layer: grayscale. */
  1873. }
  1874. .site-header.featured-image .site-featured-image .post-thumbnail img {
  1875. height: auto;
  1876. right: 50%;
  1877. max-width: 1000%;
  1878. min-height: 100%;
  1879. min-width: 100vw;
  1880. position: absolute;
  1881. top: 50%;
  1882. transform: translateX(50%) translateY(-50%);
  1883. width: auto;
  1884. z-index: 1;
  1885. /* When image filters are active, make it grayscale to colorize it blue. */
  1886. }
  1887. @supports ((-o-object-fit: cover) or (object-fit: cover)) {
  1888. .site-header.featured-image .site-featured-image .post-thumbnail img {
  1889. height: 100%;
  1890. right: 0;
  1891. -o-object-fit: cover;
  1892. object-fit: cover;
  1893. top: 0;
  1894. transform: none;
  1895. width: 100%;
  1896. }
  1897. }
  1898. .image-filters-enabled .site-header.featured-image .site-featured-image .post-thumbnail img {
  1899. filter: grayscale(100%);
  1900. }
  1901. .site-header.featured-image .site-featured-image .entry-header {
  1902. margin-top: calc( 4 * 1rem);
  1903. margin-bottom: 0;
  1904. margin-right: 0;
  1905. margin-left: 0;
  1906. /* Entry meta */
  1907. }
  1908. @media only screen and (min-width: 768px) {
  1909. .site-header.featured-image .site-featured-image .entry-header {
  1910. margin-right: calc(10% + 60px);
  1911. margin-left: calc(10% + 60px);
  1912. }
  1913. }
  1914. @media only screen and (min-width: 768px) {
  1915. .site-header.featured-image .site-featured-image .entry-header .entry-title {
  1916. font-size: 1.6875em;
  1917. }
  1918. }
  1919. .site-header.featured-image .site-featured-image .entry-header .entry-title:before {
  1920. background: #FAF8F5;
  1921. }
  1922. .site-header.featured-image .site-featured-image .entry-header .entry-meta {
  1923. font-weight: 500;
  1924. }
  1925. .site-header.featured-image .site-featured-image .entry-header .entry-meta > span {
  1926. margin-left: 1rem;
  1927. display: inline-block;
  1928. }
  1929. .site-header.featured-image .site-featured-image .entry-header .entry-meta > span:last-child {
  1930. margin-left: 0;
  1931. }
  1932. .site-header.featured-image .site-featured-image .entry-header .entry-meta a {
  1933. transition: color 110ms ease-in-out;
  1934. color: currentColor;
  1935. }
  1936. .site-header.featured-image .site-featured-image .entry-header .entry-meta a:hover {
  1937. text-decoration: none;
  1938. }
  1939. .site-header.featured-image .site-featured-image .entry-header .entry-meta .svg-icon {
  1940. position: relative;
  1941. display: inline-block;
  1942. vertical-align: middle;
  1943. margin-left: 0.5em;
  1944. }
  1945. .site-header.featured-image .site-featured-image .entry-header .entry-meta .discussion-avatar-list {
  1946. display: none;
  1947. }
  1948. @media only screen and (min-width: 768px) {
  1949. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta {
  1950. display: flex;
  1951. position: relative;
  1952. }
  1953. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-title {
  1954. padding-left: calc(1 * (100vw / 12) + 1rem);
  1955. }
  1956. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .comment-count {
  1957. position: absolute;
  1958. left: 0;
  1959. }
  1960. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .discussion-avatar-list {
  1961. display: block;
  1962. position: absolute;
  1963. bottom: 100%;
  1964. }
  1965. }
  1966. .site-header.featured-image .custom-logo-link {
  1967. background: #FAF8F5;
  1968. box-shadow: 0 0 0 0 rgba(250, 248, 245, 0);
  1969. }
  1970. .site-header.featured-image .custom-logo-link:hover, .site-header.featured-image .custom-logo-link:active, .site-header.featured-image .custom-logo-link:focus {
  1971. box-shadow: 0 0 0 2px #faf8f5;
  1972. }
  1973. .site-header.featured-image .site-branding {
  1974. position: relative;
  1975. z-index: 10;
  1976. }
  1977. .site-header.featured-image .site-featured-image .entry-header {
  1978. position: relative;
  1979. z-index: 9;
  1980. text-align: right;
  1981. }
  1982. @media only screen and (min-width: 1168px) {
  1983. .site-header.featured-image .site-featured-image .entry-header {
  1984. margin: 32px auto;
  1985. max-width: calc(6*(100vw/12) - 28px);
  1986. }
  1987. }
  1988. .site-header.featured-image .site-branding-container:after,
  1989. .site-header.featured-image .site-featured-image:before,
  1990. .site-header.featured-image .site-featured-image:after, .site-header.featured-image:after {
  1991. display: block;
  1992. position: absolute;
  1993. top: 0;
  1994. right: 0;
  1995. content: "\020";
  1996. width: 100%;
  1997. height: 100%;
  1998. }
  1999. .image-filters-enabled .site-header.featured-image .site-featured-image:before {
  2000. background: #8D6708;
  2001. mix-blend-mode: screen;
  2002. opacity: 0.1;
  2003. }
  2004. .site-header.featured-image .site-featured-image:after {
  2005. background: #000;
  2006. mix-blend-mode: multiply;
  2007. opacity: .7;
  2008. /* When image filters are active, a blue overlay is added. */
  2009. }
  2010. .image-filters-enabled .site-header.featured-image .site-featured-image:after {
  2011. background: #8D6708;
  2012. opacity: .8;
  2013. z-index: 3;
  2014. /* Browsers supporting mix-blend-mode don't need opacity < 1 */
  2015. }
  2016. @supports (mix-blend-mode: multiply) {
  2017. .image-filters-enabled .site-header.featured-image .site-featured-image:after {
  2018. opacity: 1;
  2019. }
  2020. }
  2021. .image-filters-enabled .site-header.featured-image .site-branding-container:after {
  2022. background: rgba(0, 0, 0, 0.35);
  2023. mix-blend-mode: overlay;
  2024. opacity: 0.5;
  2025. z-index: 4;
  2026. /* Browsers supporting mix-blend-mode can have a light overlay */
  2027. }
  2028. @supports (mix-blend-mode: overlay) {
  2029. .image-filters-enabled .site-header.featured-image .site-branding-container:after {
  2030. background: rgba(250, 248, 245, 0.35);
  2031. }
  2032. }
  2033. .site-header.featured-image:after {
  2034. background: #000;
  2035. /**
  2036. * Add a transition to the readability overlay, to add a subtle
  2037. * but smooth effect when resizing the screen.
  2038. */
  2039. transition: opacity 1200ms ease-in-out;
  2040. opacity: 0.7;
  2041. z-index: 5;
  2042. /* When image filters are active, a blue overlay is added. */
  2043. }
  2044. .image-filters-enabled .site-header.featured-image:after {
  2045. background: #110c01;
  2046. opacity: 0.38;
  2047. }
  2048. @media only screen and (min-width: 768px) {
  2049. .image-filters-enabled .site-header.featured-image:after {
  2050. opacity: 0.18;
  2051. }
  2052. }
  2053. .site-header.featured-image ::selection {
  2054. background: rgba(250, 248, 245, 0.17);
  2055. }
  2056. /*--------------------------------------------------------------
  2057. ## Posts and pages
  2058. --------------------------------------------------------------*/
  2059. .sticky {
  2060. display: block;
  2061. }
  2062. .sticky-post {
  2063. background: #8D6708;
  2064. color: #fff;
  2065. display: inline-block;
  2066. font-weight: bold;
  2067. line-height: 1;
  2068. padding: .25rem;
  2069. text-transform: uppercase;
  2070. z-index: 1;
  2071. }
  2072. .updated:not(.published) {
  2073. display: none;
  2074. }
  2075. .page-links {
  2076. clear: both;
  2077. margin: 0 0 calc(1.5 * 1rem);
  2078. }
  2079. .entry {
  2080. margin-top: calc(6 * 1rem);
  2081. }
  2082. .entry:first-of-type {
  2083. margin-top: 0;
  2084. }
  2085. .entry .entry-header {
  2086. margin: calc(3 * 1rem) 1rem 32px;
  2087. position: relative;
  2088. }
  2089. @media only screen and (min-width: 768px) {
  2090. .entry .entry-header {
  2091. margin: calc(3 * 1rem) auto 32px;
  2092. max-width: calc(8 * (100vw / 12) - 28px);
  2093. }
  2094. }
  2095. @media only screen and (min-width: 1168px) {
  2096. .entry .entry-header {
  2097. max-width: calc(6 * (100vw / 12) - 28px);
  2098. }
  2099. }
  2100. .entry .entry-title {
  2101. font-size: 1.6875em;
  2102. margin: 0;
  2103. }
  2104. @media only screen and (min-width: 768px) {
  2105. .entry .entry-title {
  2106. margin: 32px auto;
  2107. max-width: calc(8 * (100vw / 12) - 28px);
  2108. }
  2109. }
  2110. @media only screen and (min-width: 1168px) {
  2111. .entry .entry-title {
  2112. max-width: calc(6 * (100vw / 12) - 28px);
  2113. }
  2114. }
  2115. .entry .entry-title a {
  2116. color: inherit;
  2117. }
  2118. .entry .entry-title a:hover {
  2119. color: #4a4a4a;
  2120. }
  2121. .entry .entry-meta,
  2122. .entry .entry-footer {
  2123. color: #242424;
  2124. font-weight: 500;
  2125. }
  2126. .entry .entry-meta > span,
  2127. .entry .entry-footer > span {
  2128. margin-left: 1rem;
  2129. display: inline-block;
  2130. }
  2131. .entry .entry-meta > span:last-child,
  2132. .entry .entry-footer > span:last-child {
  2133. margin-left: 0;
  2134. }
  2135. .entry .entry-meta a,
  2136. .entry .entry-footer a {
  2137. transition: color 110ms ease-in-out;
  2138. color: currentColor;
  2139. }
  2140. .entry .entry-meta a:hover,
  2141. .entry .entry-footer a:hover {
  2142. text-decoration: none;
  2143. color: #8D6708;
  2144. }
  2145. .entry .entry-meta .svg-icon,
  2146. .entry .entry-footer .svg-icon {
  2147. position: relative;
  2148. display: inline-block;
  2149. vertical-align: middle;
  2150. margin-left: 0.5em;
  2151. }
  2152. .entry .entry-meta {
  2153. margin: 32px auto;
  2154. }
  2155. .entry .entry-footer {
  2156. margin: calc(2 * 1rem) 1rem 1rem;
  2157. }
  2158. @media only screen and (min-width: 768px) {
  2159. .entry .entry-footer {
  2160. margin: 1rem calc(10% + 60px) calc(3 * 1rem);
  2161. max-width: calc(8 * (100vw / 12) - 28px);
  2162. }
  2163. }
  2164. @media only screen and (min-width: 768px) {
  2165. .entry .entry-footer {
  2166. margin: 32px auto;
  2167. max-width: calc(8 * (100vw / 12) - 28px);
  2168. }
  2169. }
  2170. @media only screen and (min-width: 1168px) {
  2171. .entry .entry-footer {
  2172. max-width: calc(6 * (100vw / 12) - 28px);
  2173. }
  2174. }
  2175. .entry .post-thumbnail {
  2176. margin: 1rem;
  2177. }
  2178. @media only screen and (min-width: 768px) {
  2179. .entry .post-thumbnail {
  2180. margin: 1rem calc(10% + 60px);
  2181. }
  2182. }
  2183. .entry .post-thumbnail:focus {
  2184. outline: none;
  2185. }
  2186. .entry .post-thumbnail .post-thumbnail-inner {
  2187. display: block;
  2188. }
  2189. .entry .post-thumbnail .post-thumbnail-inner img {
  2190. position: relative;
  2191. display: block;
  2192. width: 100%;
  2193. }
  2194. .image-filters-enabled .entry .post-thumbnail {
  2195. position: relative;
  2196. display: block;
  2197. }
  2198. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner {
  2199. filter: grayscale(100%);
  2200. }
  2201. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
  2202. background: rgba(0, 0, 0, 0.35);
  2203. content: "";
  2204. display: block;
  2205. height: 100%;
  2206. opacity: .5;
  2207. pointer-events: none;
  2208. position: absolute;
  2209. top: 0;
  2210. width: 100%;
  2211. z-index: 4;
  2212. }
  2213. @supports (mix-blend-mode: multiply) {
  2214. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
  2215. display: none;
  2216. }
  2217. }
  2218. .image-filters-enabled .entry .post-thumbnail:before, .image-filters-enabled .entry .post-thumbnail:after {
  2219. position: absolute;
  2220. display: block;
  2221. width: 100%;
  2222. height: 100%;
  2223. top: 0;
  2224. right: 0;
  2225. content: "\020";
  2226. pointer-events: none;
  2227. }
  2228. .image-filters-enabled .entry .post-thumbnail:before {
  2229. background: #8D6708;
  2230. mix-blend-mode: screen;
  2231. opacity: 0.1;
  2232. z-index: 2;
  2233. }
  2234. .image-filters-enabled .entry .post-thumbnail:after {
  2235. background: #8D6708;
  2236. mix-blend-mode: multiply;
  2237. opacity: .8;
  2238. z-index: 3;
  2239. /* Browsers supporting mix-blend-mode don't need opacity < 1 */
  2240. }
  2241. @supports (mix-blend-mode: multiply) {
  2242. .image-filters-enabled .entry .post-thumbnail:after {
  2243. opacity: 1;
  2244. }
  2245. }
  2246. .entry .entry-content,
  2247. .entry .entry-summary {
  2248. max-width: calc(100% - (2 * 1rem));
  2249. margin: 0 1rem;
  2250. }
  2251. @media only screen and (min-width: 768px) {
  2252. .entry .entry-content,
  2253. .entry .entry-summary {
  2254. max-width: 80%;
  2255. margin: 0 10%;
  2256. padding: 0 60px;
  2257. }
  2258. }
  2259. .entry .entry-content p {
  2260. word-wrap: break-word;
  2261. }
  2262. .entry .entry-content .more-link {
  2263. transition: color 110ms ease-in-out;
  2264. display: inline;
  2265. color: inherit;
  2266. }
  2267. .entry .entry-content .more-link:after {
  2268. content: "←";
  2269. display: inline-block;
  2270. margin-right: 0.5em;
  2271. }
  2272. .entry .entry-content .more-link:hover {
  2273. color: #8D6708;
  2274. text-decoration: none;
  2275. }
  2276. .entry .entry-content a {
  2277. text-decoration: underline;
  2278. }
  2279. .entry .entry-content a.button, .entry .entry-content a:hover {
  2280. text-decoration: none;
  2281. }
  2282. .entry .entry-content a.button {
  2283. display: inline-block;
  2284. }
  2285. .entry .entry-content a.button:hover {
  2286. background: #5d4405;
  2287. color: #FAF8F5;
  2288. cursor: pointer;
  2289. }
  2290. .entry .entry-content > iframe[style] {
  2291. margin: 32px 0 !important;
  2292. max-width: 100% !important;
  2293. }
  2294. @media only screen and (min-width: 768px) {
  2295. .entry .entry-content > iframe[style] {
  2296. max-width: calc(8 * (100vw / 12) - 28px) !important;
  2297. }
  2298. }
  2299. @media only screen and (min-width: 1168px) {
  2300. .entry .entry-content > iframe[style] {
  2301. max-width: calc(6 * (100vw / 12) - 28px) !important;
  2302. }
  2303. }
  2304. .entry .entry-content .page-links a {
  2305. margin: calc(0.5 * 1rem);
  2306. text-decoration: none;
  2307. }
  2308. .entry .entry-content .wp-audio-shortcode {
  2309. max-width: calc(100vw - (2 * 1rem));
  2310. }
  2311. @media only screen and (min-width: 768px) {
  2312. .entry .entry-content .wp-audio-shortcode {
  2313. max-width: calc(8 * (100vw / 12) - 28px);
  2314. }
  2315. }
  2316. @media only screen and (min-width: 1168px) {
  2317. .entry .entry-content .wp-audio-shortcode {
  2318. max-width: calc(6 * (100vw / 12) - 28px);
  2319. }
  2320. }
  2321. /* Author description */
  2322. .author-bio {
  2323. margin: calc(2 * 1rem) 1rem 1rem;
  2324. }
  2325. @media only screen and (min-width: 768px) {
  2326. .author-bio {
  2327. max-width: calc(8 * (100vw / 12) - 28px);
  2328. }
  2329. }
  2330. @media only screen and (min-width: 1168px) {
  2331. .author-bio {
  2332. max-width: calc(6 * (100vw / 12) - 28px);
  2333. }
  2334. }
  2335. @media only screen and (min-width: 768px) {
  2336. .author-bio {
  2337. margin: calc(3 * 1rem) calc(10% + 60px);
  2338. }
  2339. }
  2340. @media only screen and (min-width: 768px) {
  2341. .author-bio {
  2342. margin: 32px auto;
  2343. max-width: calc(8 * (100vw / 12) - 28px);
  2344. }
  2345. }
  2346. @media only screen and (min-width: 1168px) {
  2347. .author-bio {
  2348. max-width: calc(6 * (100vw / 12) - 28px);
  2349. }
  2350. }
  2351. .author-bio .author-title {
  2352. z-index: 1;
  2353. align-self: start;
  2354. display: inline;
  2355. font-size: 1.125em;
  2356. }
  2357. .author-bio .author-title > :first-child:before {
  2358. border-width: 1px;
  2359. border-style: solid;
  2360. border-color: inherit;
  2361. content: "";
  2362. display: block;
  2363. height: 2px;
  2364. margin: 1.46rem 0 1rem;
  2365. width: 20px;
  2366. }
  2367. .author-bio .author-description {
  2368. display: inline;
  2369. color: #2E2E2E;
  2370. font-size: 1.125em;
  2371. line-height: 1.2;
  2372. }
  2373. .author-bio .author-description .author-link {
  2374. display: inline-block;
  2375. }
  2376. .author-bio .author-description .author-link:hover {
  2377. color: #5d4405;
  2378. text-decoration: none;
  2379. }
  2380. /*--------------------------------------------------------------
  2381. ## Comments
  2382. --------------------------------------------------------------*/
  2383. .comment-content a {
  2384. word-wrap: break-word;
  2385. }
  2386. .bypostauthor {
  2387. display: block;
  2388. }
  2389. .comments-area {
  2390. margin: calc(2 * 1rem) 1rem;
  2391. /* Add extra margin when the comments section is located immediately after the
  2392. * post itself (this happens on pages).
  2393. */
  2394. }
  2395. @media only screen and (min-width: 768px) {
  2396. .comments-area {
  2397. max-width: calc(8 * (100vw / 12) - 28px);
  2398. }
  2399. }
  2400. @media only screen and (min-width: 1168px) {
  2401. .comments-area {
  2402. max-width: calc(6 * (100vw / 12) - 28px);
  2403. }
  2404. }
  2405. @media only screen and (min-width: 768px) {
  2406. .comments-area {
  2407. margin: calc(3 * 1rem) calc(10% + 60px);
  2408. }
  2409. }
  2410. .comments-area > * {
  2411. margin-top: calc(2 * 1rem);
  2412. margin-bottom: calc(2 * 1rem);
  2413. }
  2414. @media only screen and (min-width: 768px) {
  2415. .comments-area > * {
  2416. margin-top: calc(3 * 1rem);
  2417. margin-bottom: calc(3 * 1rem);
  2418. }
  2419. }
  2420. .entry + .comments-area {
  2421. margin-top: calc(3 * 1rem);
  2422. }
  2423. @media only screen and (min-width: 768px) {
  2424. .comments-area .comments-title-wrap {
  2425. align-items: baseline;
  2426. display: flex;
  2427. justify-content: space-between;
  2428. }
  2429. }
  2430. .comments-area .comments-title-wrap .comments-title {
  2431. z-index: 1;
  2432. align-self: start;
  2433. margin: 0;
  2434. }
  2435. .comments-area .comments-title-wrap .comments-title > :first-child:before {
  2436. border-width: 1px;
  2437. border-style: solid;
  2438. border-color: inherit;
  2439. content: "";
  2440. display: block;
  2441. height: 2px;
  2442. margin: 1.46rem 0 1rem;
  2443. width: 20px;
  2444. }
  2445. @media only screen and (min-width: 768px) {
  2446. .comments-area .comments-title-wrap .comments-title {
  2447. flex: 1 0 calc(3 * (100vw / 12));
  2448. }
  2449. }
  2450. @media only screen and (min-width: 768px) {
  2451. .comments-area .comments-title-wrap .discussion-meta {
  2452. flex: 0 0 calc(2 * (100vw / 12));
  2453. margin-right: 1rem;
  2454. }
  2455. }
  2456. #comment {
  2457. max-width: 100%;
  2458. box-sizing: border-box;
  2459. }
  2460. #respond {
  2461. position: relative;
  2462. }
  2463. #respond .comment-user-avatar {
  2464. margin: 1rem 0 -1rem;
  2465. }
  2466. #respond .comment .comment-form {
  2467. padding-right: 0;
  2468. }
  2469. #respond > small {
  2470. display: block;
  2471. font-size: 22px;
  2472. position: absolute;
  2473. right: calc(1rem + 100%);
  2474. top: calc(-3.5 * 1rem);
  2475. width: calc(100vw / 12);
  2476. }
  2477. @media only screen and (min-width: 768px) {
  2478. #comments {
  2479. margin: 32px auto;
  2480. max-width: calc(8 * (100vw / 12) - 28px);
  2481. }
  2482. }
  2483. @media only screen and (min-width: 1168px) {
  2484. #comments {
  2485. max-width: calc(6 * (100vw / 12) - 28px);
  2486. }
  2487. }
  2488. #comments > .comments-title:last-child {
  2489. display: none;
  2490. }
  2491. .comment-form-flex {
  2492. display: flex;
  2493. flex-direction: column;
  2494. }
  2495. .comment-form-flex .comments-title {
  2496. display: none;
  2497. margin: 0;
  2498. order: 1;
  2499. }
  2500. .comment-form-flex #respond {
  2501. order: 2;
  2502. }
  2503. .comment-form-flex #respond + .comments-title {
  2504. display: block;
  2505. }
  2506. .comment-list {
  2507. list-style: none;
  2508. padding: 0;
  2509. }
  2510. .comment-list .children {
  2511. margin: 0;
  2512. padding: 0 1rem 0 0;
  2513. }
  2514. .comment-list > .comment:first-child {
  2515. margin-top: 0;
  2516. }
  2517. .comment-list .pingback .comment-body,
  2518. .comment-list .trackback .comment-body {
  2519. color: #fff;
  2520. font-family: "Poppins", sans-serif;
  2521. font-size: 0.71111em;
  2522. font-weight: 500;
  2523. margin-top: 1rem;
  2524. margin-bottom: 1rem;
  2525. }
  2526. .comment-list .pingback .comment-body a:not(.comment-edit-link),
  2527. .comment-list .trackback .comment-body a:not(.comment-edit-link) {
  2528. font-weight: bold;
  2529. font-size: 19.55556px;
  2530. line-height: 1.5;
  2531. padding-left: 0.5rem;
  2532. display: block;
  2533. }
  2534. .comment-list .pingback .comment-body .comment-edit-link,
  2535. .comment-list .trackback .comment-body .comment-edit-link {
  2536. color: #fff;
  2537. font-family: "Poppins", sans-serif;
  2538. font-weight: 500;
  2539. }
  2540. #respond + .comment-reply {
  2541. display: none;
  2542. }
  2543. .comment-reply .comment-reply-link {
  2544. display: inline-block;
  2545. }
  2546. .comment {
  2547. list-style: none;
  2548. position: relative;
  2549. }
  2550. @media only screen and (min-width: 768px) {
  2551. .comment {
  2552. padding-right: calc(.5 * (1rem + calc(100vw / 12 )));
  2553. }
  2554. .comment.depth-1,
  2555. .comment .children {
  2556. padding-right: 0;
  2557. }
  2558. .comment.depth-1 {
  2559. margin-right: calc(3.25 * 1rem);
  2560. }
  2561. }
  2562. .comment .comment-body {
  2563. margin: calc(2 * 1rem) 0 0;
  2564. }
  2565. .comment .comment-meta {
  2566. position: relative;
  2567. }
  2568. .comment .comment-author .avatar {
  2569. float: right;
  2570. margin-left: 1rem;
  2571. position: relative;
  2572. }
  2573. @media only screen and (min-width: 768px) {
  2574. .comment .comment-author .avatar {
  2575. float: inherit;
  2576. margin-left: inherit;
  2577. position: absolute;
  2578. top: 0;
  2579. left: calc(100% + 1rem);
  2580. }
  2581. }
  2582. .comment .comment-author .fn {
  2583. position: relative;
  2584. display: block;
  2585. }
  2586. .comment .comment-author .fn a {
  2587. color: inherit;
  2588. }
  2589. .comment .comment-author .fn a:hover {
  2590. color: #5d4405;
  2591. }
  2592. .comment .comment-author .post-author-badge {
  2593. border-radius: 100%;
  2594. display: block;
  2595. height: 18px;
  2596. position: absolute;
  2597. background: #b4830a;
  2598. left: calc(100% - 2.5rem);
  2599. top: -3px;
  2600. width: 18px;
  2601. }
  2602. @media only screen and (min-width: 768px) {
  2603. .comment .comment-author .post-author-badge {
  2604. left: calc(100% + 0.75rem);
  2605. }
  2606. }
  2607. .comment .comment-author .post-author-badge svg {
  2608. width: inherit;
  2609. height: inherit;
  2610. display: block;
  2611. fill: white;
  2612. transform: scale(0.875);
  2613. }
  2614. .comment .comment-metadata > a,
  2615. .comment .comment-metadata .comment-edit-link {
  2616. display: inline;
  2617. font-weight: 500;
  2618. color: #8D6708;
  2619. vertical-align: baseline;
  2620. }
  2621. .comment .comment-metadata > a time,
  2622. .comment .comment-metadata .comment-edit-link time {
  2623. vertical-align: baseline;
  2624. }
  2625. .comment .comment-metadata > a:hover,
  2626. .comment .comment-metadata .comment-edit-link:hover {
  2627. color: #5d4405;
  2628. text-decoration: none;
  2629. }
  2630. .comment .comment-metadata > * {
  2631. display: inline-block;
  2632. }
  2633. .comment .comment-metadata .edit-link-sep {
  2634. color: #8D6708;
  2635. margin: 0 0.2em;
  2636. vertical-align: baseline;
  2637. }
  2638. .comment .comment-metadata .edit-link {
  2639. color: #8D6708;
  2640. }
  2641. .comment .comment-metadata .edit-link svg {
  2642. transform: scale(0.8);
  2643. vertical-align: baseline;
  2644. margin-left: 0.1em;
  2645. }
  2646. .comment .comment-metadata .comment-edit-link {
  2647. position: relative;
  2648. padding-right: 1rem;
  2649. margin-right: -1rem;
  2650. z-index: 1;
  2651. }
  2652. .comment .comment-metadata .comment-edit-link:hover {
  2653. color: #8D6708;
  2654. }
  2655. .comment .comment-content {
  2656. margin: 1rem 0;
  2657. }
  2658. @media only screen and (min-width: 1168px) {
  2659. .comment .comment-content {
  2660. padding-left: 1rem;
  2661. }
  2662. }
  2663. .comment .comment-content > *:first-child {
  2664. margin-top: 0;
  2665. }
  2666. .comment .comment-content > *:last-child {
  2667. margin-bottom: 0;
  2668. }
  2669. .comment .comment-content blockquote {
  2670. margin-right: 0;
  2671. }
  2672. .comment .comment-content a {
  2673. text-decoration: underline;
  2674. }
  2675. .comment .comment-content a:hover {
  2676. text-decoration: none;
  2677. }
  2678. .comment-reply-link,
  2679. #cancel-comment-reply-link {
  2680. font-weight: 500;
  2681. }
  2682. .comment-reply-link:hover,
  2683. #cancel-comment-reply-link:hover {
  2684. color: #5d4405;
  2685. }
  2686. .discussion-avatar-list {
  2687. content: "";
  2688. display: table;
  2689. table-layout: fixed;
  2690. margin: 0;
  2691. padding: 0;
  2692. }
  2693. .discussion-avatar-list li {
  2694. position: relative;
  2695. list-style: none;
  2696. margin: 0 0 0 -8px;
  2697. padding: 0;
  2698. float: right;
  2699. }
  2700. .discussion-avatar-list .comment-user-avatar img {
  2701. height: calc(1.5 * 1rem);
  2702. width: calc(1.5 * 1rem);
  2703. }
  2704. .discussion-meta .discussion-meta-info {
  2705. margin: 0;
  2706. }
  2707. .discussion-meta .discussion-meta-info .svg-icon {
  2708. vertical-align: middle;
  2709. fill: currentColor;
  2710. transform: scale(0.6) scaleX(-1) translateY(-0.1em);
  2711. margin-right: -0.25rem;
  2712. }
  2713. .comment-form .comment-notes,
  2714. .comment-form label {
  2715. font-family: "Poppins", sans-serif;
  2716. font-size: 0.71111em;
  2717. color: #242424;
  2718. }
  2719. @media only screen and (min-width: 768px) {
  2720. .comment-form .comment-form-author:not(.comment-form-field),
  2721. .comment-form .comment-form-email:not(.comment-form-field) {
  2722. width: calc(50% - 0.5rem);
  2723. float: right;
  2724. }
  2725. }
  2726. @media only screen and (min-width: 768px) {
  2727. .comment-form .comment-form-email:not(.comment-form-field) {
  2728. margin-right: 1rem;
  2729. }
  2730. }
  2731. .comment-form input[name="author"],
  2732. .comment-form input[name="email"],
  2733. .comment-form input[name="url"] {
  2734. display: block;
  2735. width: 100%;
  2736. }
  2737. /*--------------------------------------------------------------
  2738. ## Archives
  2739. --------------------------------------------------------------*/
  2740. .archive .page-header,
  2741. .search .page-header,
  2742. .error404 .page-header {
  2743. margin: 1rem 1rem calc(3 * 1rem);
  2744. }
  2745. @media only screen and (min-width: 768px) {
  2746. .archive .page-header,
  2747. .search .page-header,
  2748. .error404 .page-header {
  2749. margin: 32px auto;
  2750. max-width: calc(8 * (100vw / 12) - 28px);
  2751. }
  2752. }
  2753. @media only screen and (min-width: 1168px) {
  2754. .archive .page-header,
  2755. .search .page-header,
  2756. .error404 .page-header {
  2757. max-width: calc(6 * (100vw / 12) - 28px);
  2758. }
  2759. }
  2760. .archive .page-header .page-title,
  2761. .search .page-header .page-title,
  2762. .error404 .page-header .page-title {
  2763. color: #2E2E2E;
  2764. display: inline;
  2765. letter-spacing: normal;
  2766. font-weight: 600;
  2767. }
  2768. .archive .page-header .page-title:before,
  2769. .search .page-header .page-title:before,
  2770. .error404 .page-header .page-title:before {
  2771. display: none;
  2772. }
  2773. .archive .page-header .search-term,
  2774. .archive .page-header .page-description,
  2775. .search .page-header .search-term,
  2776. .search .page-header .page-description,
  2777. .error404 .page-header .search-term,
  2778. .error404 .page-header .page-description {
  2779. display: inherit;
  2780. clear: both;
  2781. }
  2782. .archive .page-header .search-term:after,
  2783. .archive .page-header .page-description:after,
  2784. .search .page-header .search-term:after,
  2785. .search .page-header .page-description:after,
  2786. .error404 .page-header .search-term:after,
  2787. .error404 .page-header .page-description:after {
  2788. content: ".";
  2789. font-weight: bold;
  2790. color: #fff;
  2791. }
  2792. .archive .page-header .page-description, .search .page-header .page-description {
  2793. display: block;
  2794. color: #242424;
  2795. font-size: 1em;
  2796. font-weight: 600;
  2797. }
  2798. @media only screen and (min-width: 768px) {
  2799. .hfeed .entry .entry-header {
  2800. margin: calc(3 * 1rem) auto calc(1rem / 2);
  2801. max-width: calc(8 * (100vw / 12) - 28px);
  2802. }
  2803. }
  2804. @media only screen and (min-width: 1168px) {
  2805. .hfeed .entry .entry-header {
  2806. max-width: calc(6 * (100vw / 12) - 28px);
  2807. }
  2808. }
  2809. /* 404 & Not found */
  2810. .error-404.not-found .page-title,
  2811. .error-404.not-found .page-content,
  2812. .no-results.not-found .page-title,
  2813. .no-results.not-found .page-content {
  2814. margin: calc(3 * 1rem) 1rem;
  2815. }
  2816. @media only screen and (min-width: 768px) {
  2817. .error-404.not-found .page-title,
  2818. .error-404.not-found .page-content,
  2819. .no-results.not-found .page-title,
  2820. .no-results.not-found .page-content {
  2821. margin: 32px auto;
  2822. max-width: calc(8 * (100vw / 12) - 28px);
  2823. }
  2824. }
  2825. @media only screen and (min-width: 1168px) {
  2826. .error-404.not-found .page-title,
  2827. .error-404.not-found .page-content,
  2828. .no-results.not-found .page-title,
  2829. .no-results.not-found .page-content {
  2830. max-width: calc(6 * (100vw / 12) - 28px);
  2831. }
  2832. }
  2833. .error-404.not-found .search-submit,
  2834. .no-results.not-found .search-submit {
  2835. vertical-align: middle;
  2836. margin: 1rem 0;
  2837. }
  2838. .error-404.not-found .search-field,
  2839. .no-results.not-found .search-field {
  2840. width: 100%;
  2841. }
  2842. /*--------------------------------------------------------------
  2843. ## Footer
  2844. --------------------------------------------------------------*/
  2845. /* Site footer */
  2846. #colophon .widget-area,
  2847. #colophon .site-info {
  2848. margin: calc(2 * 1rem) 1rem;
  2849. }
  2850. @media only screen and (min-width: 768px) {
  2851. #colophon .widget-area,
  2852. #colophon .site-info {
  2853. margin: calc(3 * 1rem) calc(10% + 60px);
  2854. }
  2855. }
  2856. #colophon .widget-column {
  2857. display: flex;
  2858. flex-wrap: wrap;
  2859. }
  2860. @media only screen and (min-width: 1168px) {
  2861. #colophon .widget-column {
  2862. margin: 32px auto;
  2863. max-width: calc(6*(100vw/12) - 28px);
  2864. }
  2865. }
  2866. #colophon .widget-column .widget {
  2867. width: 100%;
  2868. }
  2869. @media only screen and (min-width: 1168px) {
  2870. #colophon .widget-column .widget {
  2871. margin-left: calc(3 * 1rem);
  2872. width: calc(50% - (3 * 1rem));
  2873. }
  2874. }
  2875. #colophon .site-info {
  2876. color: #242424;
  2877. margin: 32px auto;
  2878. }
  2879. @media only screen and (min-width: 768px) {
  2880. #colophon .site-info {
  2881. max-width: calc(8 * (100vw / 12) - 28px);
  2882. }
  2883. }
  2884. @media only screen and (min-width: 1168px) {
  2885. #colophon .site-info {
  2886. max-width: calc(6 * (100vw / 12) - 28px);
  2887. }
  2888. }
  2889. #colophon .site-info a {
  2890. color: inherit;
  2891. }
  2892. #colophon .site-info a:hover {
  2893. text-decoration: none;
  2894. color: #8D6708;
  2895. }
  2896. #colophon .site-info .imprint,
  2897. #colophon .site-info .privacy-policy-link {
  2898. margin-left: 1rem;
  2899. }
  2900. /* Widgets */
  2901. .widget {
  2902. margin: 0 0 1rem;
  2903. /* Make sure select elements fit in widgets. */
  2904. }
  2905. .widget select {
  2906. max-width: 100%;
  2907. }
  2908. .widget a {
  2909. color: #8D6708;
  2910. }
  2911. .widget a:hover {
  2912. color: #5d4405;
  2913. }
  2914. .widget_archive ul,
  2915. .widget_categories ul,
  2916. .widget_meta ul,
  2917. .widget_nav_menu ul,
  2918. .widget_pages ul,
  2919. .widget_recent_comments ul,
  2920. .widget_recent_entries ul,
  2921. .widget_rss ul {
  2922. padding: 0;
  2923. list-style: none;
  2924. }
  2925. .widget_archive ul li,
  2926. .widget_categories ul li,
  2927. .widget_meta ul li,
  2928. .widget_nav_menu ul li,
  2929. .widget_pages ul li,
  2930. .widget_recent_comments ul li,
  2931. .widget_recent_entries ul li,
  2932. .widget_rss ul li {
  2933. color: #fff;
  2934. font-family: "Poppins", sans-serif;
  2935. font-size: 1.125em;
  2936. font-weight: 600;
  2937. line-height: 1.2;
  2938. margin-top: 0.5rem;
  2939. margin-bottom: 0.5rem;
  2940. }
  2941. .widget_archive ul ul,
  2942. .widget_categories ul ul,
  2943. .widget_meta ul ul,
  2944. .widget_nav_menu ul ul,
  2945. .widget_pages ul ul,
  2946. .widget_recent_comments ul ul,
  2947. .widget_recent_entries ul ul,
  2948. .widget_rss ul ul {
  2949. counter-reset: submenu;
  2950. }
  2951. .widget_archive ul ul > li > a::before,
  2952. .widget_categories ul ul > li > a::before,
  2953. .widget_meta ul ul > li > a::before,
  2954. .widget_nav_menu ul ul > li > a::before,
  2955. .widget_pages ul ul > li > a::before,
  2956. .widget_recent_comments ul ul > li > a::before,
  2957. .widget_recent_entries ul ul > li > a::before,
  2958. .widget_rss ul ul > li > a::before {
  2959. font-family: "Poppins", sans-serif;
  2960. font-size: 0.88889em;
  2961. font-weight: 600;
  2962. line-height: 1.2;
  2963. content: "– " counters(submenu, "– ", none);
  2964. counter-increment: submenu;
  2965. }
  2966. .widget_tag_cloud .tagcloud {
  2967. font-family: "Poppins", sans-serif;
  2968. font-weight: 700;
  2969. }
  2970. .widget_search .search-field {
  2971. width: 100%;
  2972. }
  2973. @media only screen and (min-width: 600px) {
  2974. .widget_search .search-field {
  2975. width: auto;
  2976. }
  2977. }
  2978. .widget_search .search-submit {
  2979. display: block;
  2980. margin-top: 1rem;
  2981. font-size: 0.88889em;
  2982. font-weight: 600;
  2983. }
  2984. .widget_calendar .calendar_wrap {
  2985. text-align: center;
  2986. }
  2987. .widget_calendar .calendar_wrap table td,
  2988. .widget_calendar .calendar_wrap table th {
  2989. border: none;
  2990. }
  2991. .widget_calendar .calendar_wrap a {
  2992. text-decoration: underline;
  2993. }
  2994. /* Blocks */
  2995. /* !Block styles */
  2996. .entry .entry-content > *,
  2997. .entry .entry-summary > * {
  2998. margin: 32px 0;
  2999. max-width: 100%;
  3000. }
  3001. @media only screen and (min-width: 768px) {
  3002. .entry .entry-content > *,
  3003. .entry .entry-summary > * {
  3004. max-width: calc(8 * (100vw / 12) - 28px);
  3005. }
  3006. }
  3007. @media only screen and (min-width: 1168px) {
  3008. .entry .entry-content > *,
  3009. .entry .entry-summary > * {
  3010. max-width: calc(6 * (100vw / 12) - 28px);
  3011. }
  3012. }
  3013. @media only screen and (min-width: 768px) {
  3014. .entry .entry-content > *,
  3015. .entry .entry-summary > * {
  3016. margin: 32px auto;
  3017. max-width: calc(8 * (100vw / 12) - 28px);
  3018. }
  3019. }
  3020. @media only screen and (min-width: 1168px) {
  3021. .entry .entry-content > *,
  3022. .entry .entry-summary > * {
  3023. max-width: calc(6 * (100vw / 12) - 28px);
  3024. }
  3025. }
  3026. .entry .entry-content > * > *:first-child,
  3027. .entry .entry-summary > * > *:first-child {
  3028. margin-top: 0;
  3029. }
  3030. .entry .entry-content > * > *:last-child,
  3031. .entry .entry-summary > * > *:last-child {
  3032. margin-bottom: 0;
  3033. }
  3034. .entry .entry-content > *.alignwide,
  3035. .entry .entry-summary > *.alignwide {
  3036. margin-right: auto;
  3037. margin-left: auto;
  3038. clear: both;
  3039. }
  3040. @media only screen and (min-width: 768px) {
  3041. .entry .entry-content > *.alignwide,
  3042. .entry .entry-summary > *.alignwide {
  3043. width: 100%;
  3044. max-width: 100%;
  3045. }
  3046. }
  3047. .entry .entry-content > *.alignfull,
  3048. .entry .entry-summary > *.alignfull {
  3049. position: relative;
  3050. right: -1rem;
  3051. width: calc( 100% + (2 * 1rem));
  3052. max-width: calc( 100% + (2 * 1rem));
  3053. clear: both;
  3054. }
  3055. @media only screen and (min-width: 768px) {
  3056. .entry .entry-content > *.alignfull,
  3057. .entry .entry-summary > *.alignfull {
  3058. margin-top: 32px;
  3059. margin-bottom: 32px;
  3060. right: calc( -12.5% - 75px);
  3061. width: calc( 125% + 150px);
  3062. max-width: calc( 125% + 150px);
  3063. }
  3064. }
  3065. .entry .entry-content > *.alignleft,
  3066. .entry .entry-summary > *.alignleft {
  3067. float: left;
  3068. max-width: calc(5 * (100vw / 12));
  3069. margin-top: 0;
  3070. margin-right: 0;
  3071. margin-right: 1rem;
  3072. }
  3073. @media only screen and (min-width: 768px) {
  3074. .entry .entry-content > *.alignleft,
  3075. .entry .entry-summary > *.alignleft {
  3076. max-width: calc(4 * (100vw / 12));
  3077. margin-right: calc(2 * 1rem);
  3078. }
  3079. }
  3080. .entry .entry-content > *.alignright,
  3081. .entry .entry-summary > *.alignright {
  3082. float: right;
  3083. max-width: calc(5 * (100vw / 12));
  3084. margin-top: 0;
  3085. margin-left: 0;
  3086. margin-left: 1rem;
  3087. }
  3088. @media only screen and (min-width: 768px) {
  3089. .entry .entry-content > *.alignright,
  3090. .entry .entry-summary > *.alignright {
  3091. max-width: calc(4 * (100vw / 12));
  3092. margin-left: 0;
  3093. margin-left: calc(2 * 1rem);
  3094. }
  3095. }
  3096. .entry .entry-content > *.aligncenter,
  3097. .entry .entry-summary > *.aligncenter {
  3098. margin-right: auto;
  3099. margin-left: auto;
  3100. }
  3101. @media only screen and (min-width: 768px) {
  3102. .entry .entry-content > *.aligncenter,
  3103. .entry .entry-summary > *.aligncenter {
  3104. max-width: calc(8 * (100vw / 12) - 28px);
  3105. }
  3106. }
  3107. @media only screen and (min-width: 1168px) {
  3108. .entry .entry-content > *.aligncenter,
  3109. .entry .entry-summary > *.aligncenter {
  3110. max-width: calc(6 * (100vw / 12) - 28px);
  3111. }
  3112. }
  3113. /*
  3114. * Make sure the first block has margin-top: 0
  3115. */
  3116. .entry:not(.has-post-thumbnail) .entry-content > :first-child {
  3117. margin-top: 0;
  3118. }
  3119. /*
  3120. * Unset nested content selector styles
  3121. * - Prevents layout styles from cascading too deeply
  3122. * - helps with plugin compatibility
  3123. */
  3124. .entry .entry-content .entry-content,
  3125. .entry .entry-content .entry-summary,
  3126. .entry .entry-content .entry,
  3127. .entry .entry-summary .entry-content,
  3128. .entry .entry-summary .entry-summary,
  3129. .entry .entry-summary .entry {
  3130. margin: inherit;
  3131. max-width: inherit;
  3132. padding: inherit;
  3133. }
  3134. @media only screen and (min-width: 768px) {
  3135. .entry .entry-content .entry-content,
  3136. .entry .entry-content .entry-summary,
  3137. .entry .entry-content .entry,
  3138. .entry .entry-summary .entry-content,
  3139. .entry .entry-summary .entry-summary,
  3140. .entry .entry-summary .entry {
  3141. margin: inherit;
  3142. max-width: inherit;
  3143. padding: inherit;
  3144. }
  3145. }
  3146. .entry .entry-content p.has-background {
  3147. padding: 20px 30px;
  3148. }
  3149. .entry .entry-content .wp-block-audio {
  3150. width: 100%;
  3151. }
  3152. .entry .entry-content .wp-block-audio audio {
  3153. width: 100%;
  3154. }
  3155. .entry .entry-content .wp-block-audio.alignleft audio,
  3156. .entry .entry-content .wp-block-audio.alignright audio {
  3157. max-width: 198px;
  3158. }
  3159. @media only screen and (min-width: 768px) {
  3160. .entry .entry-content .wp-block-audio.alignleft audio,
  3161. .entry .entry-content .wp-block-audio.alignright audio {
  3162. max-width: 384px;
  3163. }
  3164. }
  3165. @media only screen and (min-width: 1379px) {
  3166. .entry .entry-content .wp-block-audio.alignleft audio,
  3167. .entry .entry-content .wp-block-audio.alignright audio {
  3168. max-width: 385.44px;
  3169. }
  3170. }
  3171. .entry .entry-content .wp-block-video video {
  3172. width: 100%;
  3173. }
  3174. .entry .entry-content .wp-block-button .wp-block-button__link {
  3175. transition: background 150ms ease-in-out;
  3176. border: none;
  3177. font-size: 0.88889em;
  3178. font-family: "Poppins", sans-serif;
  3179. line-height: 1.2;
  3180. box-sizing: border-box;
  3181. font-weight: bold;
  3182. text-decoration: none;
  3183. padding: 0.76rem 1rem;
  3184. outline: none;
  3185. outline: none;
  3186. }
  3187. .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-background) {
  3188. background-color: #8D6708;
  3189. }
  3190. .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-text-color) {
  3191. color: white;
  3192. }
  3193. .entry .entry-content .wp-block-button .wp-block-button__link:hover {
  3194. color: white;
  3195. background: #5d4405;
  3196. cursor: pointer;
  3197. }
  3198. .entry .entry-content .wp-block-button .wp-block-button__link:focus {
  3199. color: white;
  3200. background: #5d4405;
  3201. outline: thin dotted;
  3202. outline-offset: -4px;
  3203. }
  3204. .entry .entry-content .wp-block-button:not(.is-style-squared) .wp-block-button__link {
  3205. border-radius: 5px;
  3206. }
  3207. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link,
  3208. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus,
  3209. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active {
  3210. transition: all 150ms ease-in-out;
  3211. border-width: 2px;
  3212. border-style: solid;
  3213. }
  3214. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background),
  3215. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background),
  3216. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background) {
  3217. background: transparent;
  3218. }
  3219. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
  3220. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-text-color),
  3221. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-text-color) {
  3222. color: #8D6708;
  3223. border-color: currentColor;
  3224. }
  3225. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  3226. color: white;
  3227. border-color: #5d4405;
  3228. }
  3229. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover:not(.has-background) {
  3230. color: #5d4405;
  3231. }
  3232. .entry .entry-content .wp-block-archives,
  3233. .entry .entry-content .wp-block-categories,
  3234. .entry .entry-content .wp-block-latest-posts {
  3235. padding: 0;
  3236. list-style: none;
  3237. }
  3238. .entry .entry-content .wp-block-archives li,
  3239. .entry .entry-content .wp-block-categories li,
  3240. .entry .entry-content .wp-block-latest-posts li {
  3241. color: #fff;
  3242. font-family: "Poppins", sans-serif;
  3243. font-size: calc(22px * 1.125);
  3244. font-weight: bold;
  3245. line-height: 1.2;
  3246. padding-bottom: 0.75rem;
  3247. }
  3248. .entry .entry-content .wp-block-archives li.menu-item-has-children, .entry .entry-content .wp-block-archives li:last-child,
  3249. .entry .entry-content .wp-block-categories li.menu-item-has-children,
  3250. .entry .entry-content .wp-block-categories li:last-child,
  3251. .entry .entry-content .wp-block-latest-posts li.menu-item-has-children,
  3252. .entry .entry-content .wp-block-latest-posts li:last-child {
  3253. padding-bottom: 0;
  3254. }
  3255. .entry .entry-content .wp-block-archives li a,
  3256. .entry .entry-content .wp-block-categories li a,
  3257. .entry .entry-content .wp-block-latest-posts li a {
  3258. text-decoration: none;
  3259. }
  3260. .entry .entry-content .wp-block-archives.aligncenter,
  3261. .entry .entry-content .wp-block-categories.aligncenter {
  3262. text-align: center;
  3263. }
  3264. .entry .entry-content .wp-block-categories ul {
  3265. padding-top: 0.75rem;
  3266. }
  3267. .entry .entry-content .wp-block-categories li ul {
  3268. list-style: none;
  3269. padding-right: 0;
  3270. }
  3271. .entry .entry-content .wp-block-categories ul {
  3272. counter-reset: submenu;
  3273. }
  3274. .entry .entry-content .wp-block-categories ul > li > a::before {
  3275. font-family: "Poppins", sans-serif;
  3276. font-size: 0.88889em;
  3277. font-weight: 600;
  3278. line-height: 1.2;
  3279. content: "– " counters(submenu, "– ", none);
  3280. counter-increment: submenu;
  3281. }
  3282. .entry .entry-content .wp-block-latest-posts.is-grid li {
  3283. border-top: 2px solid #ccc;
  3284. padding-top: 1rem;
  3285. margin-bottom: 32px;
  3286. }
  3287. .entry .entry-content .wp-block-latest-posts.is-grid li a:after {
  3288. content: '';
  3289. }
  3290. .entry .entry-content .wp-block-latest-posts.is-grid li:last-child {
  3291. margin-bottom: auto;
  3292. }
  3293. .entry .entry-content .wp-block-latest-posts.is-grid li:last-child a:after {
  3294. content: '';
  3295. }
  3296. .entry .entry-content .wp-block-preformatted {
  3297. font-size: 0.71111em;
  3298. line-height: 1.8;
  3299. padding: 1rem;
  3300. }
  3301. .entry .entry-content .wp-block-verse {
  3302. font-family: "Poppins", sans-serif;
  3303. font-size: 22px;
  3304. line-height: 1.8;
  3305. }
  3306. .entry .entry-content .has-drop-cap:not(:focus):first-letter {
  3307. font-family: "Poppins", sans-serif;
  3308. font-size: 3.375em;
  3309. line-height: 1;
  3310. font-weight: bold;
  3311. margin: 0 0 0 0.25em;
  3312. }
  3313. .entry .entry-content .wp-block-pullquote {
  3314. border-color: transparent;
  3315. border-width: 2px;
  3316. padding: 1rem;
  3317. }
  3318. .entry .entry-content .wp-block-pullquote blockquote {
  3319. color: #242424;
  3320. border: none;
  3321. margin-top: calc(3 * 32px);
  3322. margin-bottom: calc(3.33 * 32px);
  3323. margin-left: 0;
  3324. padding-right: 0;
  3325. }
  3326. .entry .entry-content .wp-block-pullquote p {
  3327. font-size: 1.6875em;
  3328. font-style: italic;
  3329. line-height: 1.3;
  3330. margin-bottom: 0.5em;
  3331. margin-top: 0.5em;
  3332. }
  3333. .entry .entry-content .wp-block-pullquote p em {
  3334. font-style: normal;
  3335. }
  3336. @media only screen and (min-width: 768px) {
  3337. .entry .entry-content .wp-block-pullquote p {
  3338. font-size: 2.25em;
  3339. }
  3340. }
  3341. .entry .entry-content .wp-block-pullquote cite {
  3342. display: inline-block;
  3343. font-family: "Poppins", sans-serif;
  3344. line-height: 1.6;
  3345. text-transform: none;
  3346. color: #fff;
  3347. /*
  3348. * This requires a rem-based font size calculation instead of our normal em-based one,
  3349. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3350. */
  3351. font-size: calc(1rem / (1.25 * 1.125));
  3352. }
  3353. .entry .entry-content .wp-block-pullquote.alignleft, .entry .entry-content .wp-block-pullquote.alignright {
  3354. width: 100%;
  3355. padding: 0;
  3356. }
  3357. .entry .entry-content .wp-block-pullquote.alignleft blockquote, .entry .entry-content .wp-block-pullquote.alignright blockquote {
  3358. margin: 32px 0;
  3359. padding: 0;
  3360. text-align: right;
  3361. max-width: 100%;
  3362. }
  3363. .entry .entry-content .wp-block-pullquote.alignleft blockquote p:first-child, .entry .entry-content .wp-block-pullquote.alignright blockquote p:first-child {
  3364. margin-top: 0;
  3365. }
  3366. .entry .entry-content .wp-block-pullquote.is-style-solid-color {
  3367. background-color: #8D6708;
  3368. padding-right: 0;
  3369. padding-left: 0;
  3370. }
  3371. @media only screen and (min-width: 768px) {
  3372. .entry .entry-content .wp-block-pullquote.is-style-solid-color {
  3373. padding-right: 10%;
  3374. padding-left: 10%;
  3375. }
  3376. }
  3377. .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  3378. font-size: 1.6875em;
  3379. line-height: 1.3;
  3380. margin-bottom: 0.5em;
  3381. margin-top: 0.5em;
  3382. }
  3383. @media only screen and (min-width: 768px) {
  3384. .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  3385. font-size: 2.25em;
  3386. }
  3387. }
  3388. .entry .entry-content .wp-block-pullquote.is-style-solid-color a {
  3389. color: #FAF8F5;
  3390. }
  3391. .entry .entry-content .wp-block-pullquote.is-style-solid-color cite {
  3392. color: inherit;
  3393. }
  3394. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  3395. max-width: 100%;
  3396. color: #FAF8F5;
  3397. padding-right: 0;
  3398. margin-right: 1rem;
  3399. margin-left: 1rem;
  3400. }
  3401. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,
  3402. .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 {
  3403. color: inherit;
  3404. }
  3405. @media only screen and (min-width: 768px) {
  3406. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  3407. margin-right: 0;
  3408. margin-left: 0;
  3409. }
  3410. }
  3411. @media only screen and (min-width: 768px) {
  3412. .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignright, .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignleft {
  3413. padding: 1rem calc(2 * 1rem);
  3414. }
  3415. }
  3416. @media only screen and (min-width: 768px) {
  3417. .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignfull {
  3418. padding-right: calc(10% + 58px + (2 * 1rem));
  3419. padding-left: calc(10% + 58px + (2 * 1rem));
  3420. }
  3421. }
  3422. .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
  3423. border-width: 2px;
  3424. border-color: #8D6708;
  3425. padding-top: 0;
  3426. padding-bottom: 0;
  3427. }
  3428. .entry .entry-content .wp-block-quote p {
  3429. font-size: 1em;
  3430. font-style: normal;
  3431. line-height: 1.8;
  3432. }
  3433. .entry .entry-content .wp-block-quote cite {
  3434. /*
  3435. * This requires a rem-based font size calculation instead of our normal em-based one,
  3436. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3437. */
  3438. font-size: calc(1rem / (1.25 * 1.125));
  3439. }
  3440. .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
  3441. padding: 0;
  3442. border-right: none;
  3443. }
  3444. .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
  3445. font-size: 1.6875em;
  3446. line-height: 1.4;
  3447. font-style: italic;
  3448. }
  3449. .entry .entry-content .wp-block-quote.is-large cite,
  3450. .entry .entry-content .wp-block-quote.is-large footer, .entry .entry-content .wp-block-quote.is-style-large cite,
  3451. .entry .entry-content .wp-block-quote.is-style-large footer {
  3452. /*
  3453. * This requires a rem-based font size calculation instead of our normal em-based one,
  3454. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3455. */
  3456. font-size: calc(1rem / (1.25 * 1.125));
  3457. }
  3458. @media only screen and (min-width: 768px) {
  3459. .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
  3460. padding: 1rem 0;
  3461. }
  3462. .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
  3463. font-size: 1.6875em;
  3464. }
  3465. }
  3466. .entry .entry-content .wp-block-image {
  3467. max-width: 100%;
  3468. }
  3469. .entry .entry-content .wp-block-image img {
  3470. display: block;
  3471. }
  3472. .entry .entry-content .wp-block-image.alignfull img {
  3473. width: 100vw;
  3474. max-width: calc( 100% + (2 * 1rem));
  3475. }
  3476. @media only screen and (min-width: 768px) {
  3477. .entry .entry-content .wp-block-image.alignfull img {
  3478. max-width: calc( 125% + 150px);
  3479. margin-right: auto;
  3480. margin-left: auto;
  3481. }
  3482. }
  3483. .entry .entry-content .wp-block-cover-image,
  3484. .entry .entry-content .wp-block-cover {
  3485. position: relative;
  3486. min-height: 380px;
  3487. padding: 1rem;
  3488. }
  3489. @media only screen and (min-width: 768px) {
  3490. .entry .entry-content .wp-block-cover-image,
  3491. .entry .entry-content .wp-block-cover {
  3492. padding: 1rem 10%;
  3493. min-height: 620px;
  3494. }
  3495. }
  3496. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
  3497. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
  3498. padding: 0;
  3499. color: #fff;
  3500. }
  3501. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container a,
  3502. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container a {
  3503. color: inherit;
  3504. }
  3505. @media only screen and (min-width: 768px) {
  3506. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
  3507. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
  3508. max-width: 100%;
  3509. }
  3510. }
  3511. .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,
  3512. .entry .entry-content .wp-block-cover h1,
  3513. .entry .entry-content .wp-block-cover h2,
  3514. .entry .entry-content .wp-block-cover h3,
  3515. .entry .entry-content .wp-block-cover h4,
  3516. .entry .entry-content .wp-block-cover h5,
  3517. .entry .entry-content .wp-block-cover h6 {
  3518. font-weight: 700;
  3519. }
  3520. .entry .entry-content .wp-block-cover-image h1,
  3521. .entry .entry-content .wp-block-cover h1 {
  3522. font-size: 2.25em;
  3523. }
  3524. .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
  3525. .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
  3526. .entry .entry-content .wp-block-cover-image h2,
  3527. .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
  3528. .entry .entry-content .wp-block-cover .wp-block-cover-text,
  3529. .entry .entry-content .wp-block-cover h2 {
  3530. font-size: 1.6875em;
  3531. margin: inherit;
  3532. max-width: inherit;
  3533. padding: 0;
  3534. text-align: inherit;
  3535. }
  3536. .entry .entry-content .wp-block-cover-image h2,
  3537. .entry .entry-content .wp-block-cover h2 {
  3538. padding: 0;
  3539. max-width: inherit;
  3540. text-align: inherit;
  3541. }
  3542. .entry .entry-content .wp-block-cover-image h2.has-text-align-left,
  3543. .entry .entry-content .wp-block-cover h2.has-text-align-left {
  3544. text-align: right;
  3545. }
  3546. .entry .entry-content .wp-block-cover-image h2.has-text-align-center,
  3547. .entry .entry-content .wp-block-cover h2.has-text-align-center {
  3548. text-align: center;
  3549. }
  3550. .entry .entry-content .wp-block-cover-image h2.has-text-align-right,
  3551. .entry .entry-content .wp-block-cover h2.has-text-align-right {
  3552. text-align: left;
  3553. }
  3554. .entry .entry-content .wp-block-cover-image h3,
  3555. .entry .entry-content .wp-block-cover h3 {
  3556. font-size: 1.125em;
  3557. }
  3558. .entry .entry-content .wp-block-cover-image h4,
  3559. .entry .entry-content .wp-block-cover h4 {
  3560. font-size: 22px;
  3561. }
  3562. .entry .entry-content .wp-block-cover-image h5,
  3563. .entry .entry-content .wp-block-cover h5 {
  3564. font-size: 0.88889em;
  3565. }
  3566. .entry .entry-content .wp-block-cover-image h6,
  3567. .entry .entry-content .wp-block-cover h6 {
  3568. font-size: 0.71111em;
  3569. }
  3570. .entry .entry-content .wp-block-cover-image p,
  3571. .entry .entry-content .wp-block-cover p {
  3572. margin-top: 1rem;
  3573. margin-bottom: 1rem;
  3574. }
  3575. @media only screen and (min-width: 768px) {
  3576. .entry .entry-content .wp-block-cover-image h1,
  3577. .entry .entry-content .wp-block-cover h1 {
  3578. font-size: 3.375em;
  3579. }
  3580. .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
  3581. .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
  3582. .entry .entry-content .wp-block-cover-image h2,
  3583. .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
  3584. .entry .entry-content .wp-block-cover .wp-block-cover-text,
  3585. .entry .entry-content .wp-block-cover h2 {
  3586. font-size: 2.8125em;
  3587. }
  3588. .entry .entry-content .wp-block-cover-image h3,
  3589. .entry .entry-content .wp-block-cover h3 {
  3590. font-size: 1.6875em;
  3591. }
  3592. .entry .entry-content .wp-block-cover-image h4,
  3593. .entry .entry-content .wp-block-cover h4 {
  3594. font-size: 1.125em;
  3595. }
  3596. .entry .entry-content .wp-block-cover-image h5,
  3597. .entry .entry-content .wp-block-cover h5 {
  3598. font-size: 22px;
  3599. }
  3600. .entry .entry-content .wp-block-cover-image h6,
  3601. .entry .entry-content .wp-block-cover h6 {
  3602. font-size: 0.88889em;
  3603. }
  3604. }
  3605. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover__inner-container,
  3606. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover__inner-container {
  3607. max-width: 100%;
  3608. }
  3609. @media only screen and (min-width: 768px) {
  3610. .entry .entry-content .wp-block-cover-image.alignfull,
  3611. .entry .entry-content .wp-block-cover.alignfull {
  3612. padding-right: calc(10% + 58px + (2 * 1rem));
  3613. padding-left: calc(10% + 58px + (2 * 1rem));
  3614. }
  3615. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover__inner-container,
  3616. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover__inner-container {
  3617. padding: 0;
  3618. }
  3619. }
  3620. .entry .entry-content .wp-block-gallery {
  3621. list-style-type: none;
  3622. padding-right: 0;
  3623. }
  3624. .entry .entry-content .wp-block-gallery .blocks-gallery-image:last-child,
  3625. .entry .entry-content .wp-block-gallery .blocks-gallery-item:last-child {
  3626. margin-bottom: 16px;
  3627. }
  3628. .entry .entry-content .wp-block-gallery figcaption a {
  3629. color: #fff;
  3630. }
  3631. .entry .entry-content .wp-block-audio figcaption,
  3632. .entry .entry-content .wp-block-video figcaption,
  3633. .entry .entry-content .wp-block-image figcaption,
  3634. .entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption,
  3635. .entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption {
  3636. font-size: 0.71111em;
  3637. font-family: "Poppins", sans-serif;
  3638. line-height: 1.6;
  3639. margin: 0;
  3640. padding: 0.5rem;
  3641. text-align: center;
  3642. }
  3643. .entry .entry-content .wp-block-separator,
  3644. .entry .entry-content hr {
  3645. height: 2px;
  3646. margin-bottom: 32px;
  3647. margin-top: 32px;
  3648. text-align: right;
  3649. background: #FAF8F5;
  3650. max-width: 100%;
  3651. border: 0;
  3652. /* Remove duplicate rule-line when a separator
  3653. * is followed by an H1, or H2 */
  3654. }
  3655. @media only screen and (min-width: 768px) {
  3656. .entry .entry-content .wp-block-separator,
  3657. .entry .entry-content hr {
  3658. max-width: calc(6*(100vw/12) - 28px);
  3659. }
  3660. }
  3661. .entry .entry-content .wp-block-separator:after,
  3662. .entry .entry-content hr:after {
  3663. background-color: #2E2E2E;
  3664. content: '';
  3665. display: block;
  3666. height: 2px;
  3667. max-width: 3.25em;
  3668. }
  3669. .entry .entry-content .wp-block-separator.is-style-wide,
  3670. .entry .entry-content hr.is-style-wide {
  3671. background-color: #2E2E2E;
  3672. max-width: 100%;
  3673. }
  3674. @media only screen and (min-width: 768px) {
  3675. .entry .entry-content .wp-block-separator.is-style-wide,
  3676. .entry .entry-content hr.is-style-wide {
  3677. max-width: calc(8 * (100vw / 12) - 28px);
  3678. }
  3679. }
  3680. @media only screen and (min-width: 1168px) {
  3681. .entry .entry-content .wp-block-separator.is-style-wide,
  3682. .entry .entry-content hr.is-style-wide {
  3683. max-width: calc(6 * (100vw / 12) - 28px);
  3684. }
  3685. }
  3686. .entry .entry-content .wp-block-separator.is-style-wide:after,
  3687. .entry .entry-content hr.is-style-wide:after {
  3688. display: none;
  3689. }
  3690. .entry .entry-content .wp-block-separator.is-style-dots,
  3691. .entry .entry-content hr.is-style-dots {
  3692. max-width: 100%;
  3693. background-color: inherit;
  3694. border: inherit;
  3695. height: inherit;
  3696. text-align: center;
  3697. }
  3698. @media only screen and (min-width: 768px) {
  3699. .entry .entry-content .wp-block-separator.is-style-dots,
  3700. .entry .entry-content hr.is-style-dots {
  3701. max-width: calc(8 * (100vw / 12) - 28px);
  3702. }
  3703. }
  3704. @media only screen and (min-width: 1168px) {
  3705. .entry .entry-content .wp-block-separator.is-style-dots,
  3706. .entry .entry-content hr.is-style-dots {
  3707. max-width: calc(6 * (100vw / 12) - 28px);
  3708. }
  3709. }
  3710. .entry .entry-content .wp-block-separator.is-style-dots:before,
  3711. .entry .entry-content hr.is-style-dots:before {
  3712. color: #2E2E2E;
  3713. font-size: 1.6875em;
  3714. letter-spacing: 0.88889em;
  3715. padding-right: 0.88889em;
  3716. }
  3717. .entry .entry-content .wp-block-separator.is-style-dots:after,
  3718. .entry .entry-content hr.is-style-dots:after {
  3719. display: none;
  3720. }
  3721. .entry .entry-content .wp-block-separator + h1:before,
  3722. .entry .entry-content .wp-block-separator + h2:before,
  3723. .entry .entry-content hr + h1:before,
  3724. .entry .entry-content hr + h2:before {
  3725. display: none;
  3726. }
  3727. .entry .entry-content .wp-block-spacer.desktop-only {
  3728. display: none;
  3729. }
  3730. @media only screen and (min-width: 768px) {
  3731. .entry .entry-content .wp-block-spacer.desktop-only {
  3732. display: block;
  3733. }
  3734. }
  3735. .entry .entry-content .wp-block-embed-twitter {
  3736. word-break: break-word;
  3737. }
  3738. .entry .entry-content .wp-block-table th,
  3739. .entry .entry-content .wp-block-table td {
  3740. border-color: #fff;
  3741. }
  3742. .entry .entry-content .wp-block-file {
  3743. font-family: "Poppins", sans-serif;
  3744. }
  3745. .entry .entry-content .wp-block-file .wp-block-file__button {
  3746. display: table;
  3747. transition: background 150ms ease-in-out;
  3748. border: none;
  3749. border-radius: 5px;
  3750. background: #8D6708;
  3751. font-size: 22px;
  3752. font-family: "Poppins", sans-serif;
  3753. line-height: 1.2;
  3754. text-decoration: none;
  3755. font-weight: bold;
  3756. padding: 0.75rem 1rem;
  3757. color: #fff;
  3758. margin-right: 0;
  3759. margin-top: calc(0.75 * 32px);
  3760. }
  3761. @media only screen and (min-width: 1168px) {
  3762. .entry .entry-content .wp-block-file .wp-block-file__button {
  3763. font-size: 22px;
  3764. padding: 0.875rem 1.5rem;
  3765. }
  3766. }
  3767. .entry .entry-content .wp-block-file .wp-block-file__button:hover {
  3768. background: #5d4405;
  3769. cursor: pointer;
  3770. }
  3771. .entry .entry-content .wp-block-file .wp-block-file__button:focus {
  3772. background: #5d4405;
  3773. outline: thin dotted;
  3774. outline-offset: -4px;
  3775. }
  3776. .entry .entry-content .wp-block-code {
  3777. border-radius: 0;
  3778. }
  3779. .entry .entry-content .wp-block-code code {
  3780. font-size: 1.125em;
  3781. white-space: pre-wrap;
  3782. word-break: break-word;
  3783. }
  3784. .entry .entry-content .wp-block-columns.alignfull {
  3785. padding-right: 1rem;
  3786. padding-left: 1rem;
  3787. }
  3788. @media only screen and (min-width: 782px) {
  3789. .entry .entry-content .wp-block-columns .wp-block-column {
  3790. margin-right: 0.5rem;
  3791. margin-left: 0.5rem;
  3792. }
  3793. .entry .entry-content .wp-block-columns .wp-block-column:first-child {
  3794. margin-right: 0;
  3795. }
  3796. .entry .entry-content .wp-block-columns .wp-block-column:last-child {
  3797. margin-left: 0;
  3798. }
  3799. .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
  3800. margin-top: 0;
  3801. }
  3802. .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
  3803. margin-bottom: 0;
  3804. }
  3805. .entry .entry-content .wp-block-columns.alignfull {
  3806. padding-right: calc(2 * 1rem);
  3807. padding-left: calc(2 * 1rem);
  3808. }
  3809. }
  3810. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  3811. font-family: "Poppins", sans-serif;
  3812. font-weight: bold;
  3813. }
  3814. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  3815. font-weight: normal;
  3816. }
  3817. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment,
  3818. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date,
  3819. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  3820. font-size: inherit;
  3821. }
  3822. .entry .entry-content .wp-block-latest-comments.has-dates .wp-block-latest-comments__comment-date {
  3823. font-size: 0.71111em;
  3824. }
  3825. .entry .entry-content .wp-block-media-text {
  3826. background-color: #6C6C74;
  3827. color: #fff;
  3828. position: relative;
  3829. margin: 0 auto;
  3830. }
  3831. .entry .entry-content .wp-block-media-text a {
  3832. color: inherit;
  3833. }
  3834. @media only screen and (min-width: 768px) {
  3835. .entry .entry-content .wp-block-media-text:before {
  3836. content: '';
  3837. position: absolute;
  3838. right: 0;
  3839. width: 100%;
  3840. border-top: 32px solid #FAF8F5;
  3841. border-bottom: 32px solid #FAF8F5;
  3842. height: 100%;
  3843. z-index: 1;
  3844. }
  3845. }
  3846. .entry .entry-content .wp-block-media-text.has-media-on-the-right {
  3847. background-color: #fff;
  3848. color: #242424;
  3849. }
  3850. .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  3851. z-index: 1;
  3852. align-self: start;
  3853. }
  3854. .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content > :first-child:before {
  3855. border-width: 1px;
  3856. border-style: solid;
  3857. border-color: inherit;
  3858. content: "";
  3859. display: block;
  3860. height: 2px;
  3861. margin: 1.46rem 0 1rem;
  3862. width: 20px;
  3863. }
  3864. @media only screen and (min-width: 768px) {
  3865. .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  3866. padding-top: 32px;
  3867. padding-bottom: 32px;
  3868. }
  3869. }
  3870. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__media {
  3871. grid-row: 1;
  3872. }
  3873. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
  3874. grid-row: 2;
  3875. }
  3876. @media only screen and (min-width: 600px) {
  3877. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
  3878. grid-row: 1;
  3879. }
  3880. }
  3881. .entry .entry-content .wp-block-media-text .wp-block-media-text__media {
  3882. z-index: 2;
  3883. }
  3884. .entry .entry-content .wp-block-media-text.alignfull .wp-block-media-text__content {
  3885. padding: 0 1rem;
  3886. }
  3887. @media only screen and (min-width: 768px) {
  3888. .entry .entry-content .wp-block-media-text.alignfull .wp-block-media-text__content {
  3889. padding: 32px 8%;
  3890. }
  3891. }
  3892. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3893. z-index: 1;
  3894. align-self: start;
  3895. }
  3896. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :first-child:before {
  3897. border-width: 1px;
  3898. border-style: solid;
  3899. border-color: inherit;
  3900. content: "";
  3901. display: block;
  3902. height: 2px;
  3903. margin: 1.46rem 0 1rem;
  3904. width: 20px;
  3905. }
  3906. @media only screen and (min-width: 768px) {
  3907. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3908. padding-top: 32px;
  3909. padding-bottom: 32px;
  3910. }
  3911. }
  3912. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :first-child {
  3913. margin-top: 0.88889rem;
  3914. }
  3915. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :last-child {
  3916. margin-bottom: 0.88889rem;
  3917. }
  3918. @media all and (-ms-high-contrast: none) {
  3919. .entry .entry-content .wp-block-media-text:after {
  3920. display: table;
  3921. content: "";
  3922. clear: both;
  3923. }
  3924. .entry .entry-content .wp-block-media-text figure {
  3925. float: right;
  3926. width: 50%;
  3927. }
  3928. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3929. float: left;
  3930. width: 50%;
  3931. }
  3932. .entry .entry-content .wp-block-media-text.has-media-on-the-right figure {
  3933. float: left;
  3934. }
  3935. .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  3936. float: right;
  3937. }
  3938. }
  3939. .entry .entry-content .has-small-font-size {
  3940. font-size: 0.88889em;
  3941. }
  3942. .entry .entry-content .has-normal-font-size {
  3943. font-size: 1.125em;
  3944. }
  3945. .entry .entry-content .has-large-font-size {
  3946. font-size: 1.6875em;
  3947. }
  3948. .entry .entry-content .has-huge-font-size {
  3949. font-size: 2.25em;
  3950. }
  3951. .entry .entry-content .has-primary-background-color,
  3952. .entry .entry-content .has-secondary-background-color,
  3953. .entry .entry-content .has-dark-gray-background-color,
  3954. .entry .entry-content .has-light-gray-background-color {
  3955. color: #FAF8F5;
  3956. }
  3957. .entry .entry-content .has-primary-background-color p,
  3958. .entry .entry-content .has-primary-background-color h1,
  3959. .entry .entry-content .has-primary-background-color h2,
  3960. .entry .entry-content .has-primary-background-color h3,
  3961. .entry .entry-content .has-primary-background-color h4,
  3962. .entry .entry-content .has-primary-background-color h5,
  3963. .entry .entry-content .has-primary-background-color h6,
  3964. .entry .entry-content .has-primary-background-color a,
  3965. .entry .entry-content .has-secondary-background-color p,
  3966. .entry .entry-content .has-secondary-background-color h1,
  3967. .entry .entry-content .has-secondary-background-color h2,
  3968. .entry .entry-content .has-secondary-background-color h3,
  3969. .entry .entry-content .has-secondary-background-color h4,
  3970. .entry .entry-content .has-secondary-background-color h5,
  3971. .entry .entry-content .has-secondary-background-color h6,
  3972. .entry .entry-content .has-secondary-background-color a,
  3973. .entry .entry-content .has-dark-gray-background-color p,
  3974. .entry .entry-content .has-dark-gray-background-color h1,
  3975. .entry .entry-content .has-dark-gray-background-color h2,
  3976. .entry .entry-content .has-dark-gray-background-color h3,
  3977. .entry .entry-content .has-dark-gray-background-color h4,
  3978. .entry .entry-content .has-dark-gray-background-color h5,
  3979. .entry .entry-content .has-dark-gray-background-color h6,
  3980. .entry .entry-content .has-dark-gray-background-color a,
  3981. .entry .entry-content .has-light-gray-background-color p,
  3982. .entry .entry-content .has-light-gray-background-color h1,
  3983. .entry .entry-content .has-light-gray-background-color h2,
  3984. .entry .entry-content .has-light-gray-background-color h3,
  3985. .entry .entry-content .has-light-gray-background-color h4,
  3986. .entry .entry-content .has-light-gray-background-color h5,
  3987. .entry .entry-content .has-light-gray-background-color h6,
  3988. .entry .entry-content .has-light-gray-background-color a {
  3989. color: #FAF8F5;
  3990. }
  3991. .entry .entry-content .has-white-background-color {
  3992. color: #242424;
  3993. }
  3994. .entry .entry-content .has-white-background-color p,
  3995. .entry .entry-content .has-white-background-color h1,
  3996. .entry .entry-content .has-white-background-color h2,
  3997. .entry .entry-content .has-white-background-color h3,
  3998. .entry .entry-content .has-white-background-color h4,
  3999. .entry .entry-content .has-white-background-color h5,
  4000. .entry .entry-content .has-white-background-color h6,
  4001. .entry .entry-content .has-white-background-color a {
  4002. color: #242424;
  4003. }
  4004. .entry .entry-content .has-primary-background-color,
  4005. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-primary-background-color {
  4006. background-color: #8D6708;
  4007. }
  4008. .entry .entry-content .has-secondary-background-color,
  4009. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-secondary-background-color {
  4010. background-color: #5d4405;
  4011. }
  4012. .entry .entry-content .has-dark-gray-background-color,
  4013. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-dark-gray-background-color {
  4014. background-color: #242424;
  4015. }
  4016. .entry .entry-content .has-light-gray-background-color,
  4017. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-light-gray-background-color {
  4018. background-color: #6C6C74;
  4019. }
  4020. .entry .entry-content .has-white-background-color,
  4021. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-white-background-color {
  4022. background-color: #FFF;
  4023. }
  4024. .entry .entry-content .has-primary-color,
  4025. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
  4026. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p {
  4027. color: #8D6708;
  4028. }
  4029. .entry .entry-content .has-secondary-color,
  4030. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
  4031. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p {
  4032. color: #5d4405;
  4033. }
  4034. .entry .entry-content .has-dark-gray-color,
  4035. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
  4036. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p {
  4037. color: #242424;
  4038. }
  4039. .entry .entry-content .has-light-gray-color,
  4040. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
  4041. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p {
  4042. color: #fff;
  4043. }
  4044. .entry .entry-content .has-white-color,
  4045. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
  4046. color: #FFF;
  4047. }
  4048. .entry .entry-content .a8c-posts-list-item__title a,
  4049. .entry .entry-content .a8c-posts-list-item__meta a {
  4050. text-decoration: none;
  4051. }
  4052. .entry .entry-content .a8c-posts-list__view-all {
  4053. text-decoration: none;
  4054. }
  4055. .entry .entry-content .a8c-posts-list-item__title a {
  4056. color: inherit;
  4057. }
  4058. .entry .entry-content .a8c-posts-list-item__title a:hover, .entry .entry-content .a8c-posts-list-item__title a:focus {
  4059. color: #4a4a4a;
  4060. }
  4061. .entry .entry-content .a8c-posts-list-item__meta a {
  4062. color: inherit;
  4063. }
  4064. .entry .entry-content .a8c-posts-list-item__meta a:hover, .entry .entry-content .a8c-posts-list-item__meta a:focus {
  4065. color: #8D6708;
  4066. }
  4067. .entry .entry-content .a8c-posts-list-item__meta .a8c-posts-list-item__edit-link a {
  4068. color: #FAF8F5;
  4069. }
  4070. .entry .entry-content .a8c-posts-list__item:not(:first-child) {
  4071. margin-top: calc(6 * 1rem);
  4072. }
  4073. .entry .entry-content .a8c-posts-list-item__featured {
  4074. margin: 0 auto;
  4075. }
  4076. .entry .entry-content .a8c-posts-list-item__featured span {
  4077. background: #8D6708;
  4078. color: #fff;
  4079. display: inline-block;
  4080. font-size: 0.71111em;
  4081. font-weight: bold;
  4082. line-height: 1;
  4083. padding: .25rem;
  4084. text-transform: uppercase;
  4085. z-index: 1;
  4086. }
  4087. @media only screen and (min-width: 768px) and (min-width: 768px) {
  4088. .entry .entry-content .a8c-posts-list-item__featured {
  4089. max-width: calc(8 * (100vw / 12) - 28px);
  4090. }
  4091. }
  4092. @media only screen and (min-width: 768px) and (min-width: 1168px) {
  4093. .entry .entry-content .a8c-posts-list-item__featured {
  4094. max-width: calc(6 * (100vw / 12) - 28px);
  4095. }
  4096. }
  4097. .entry .entry-content .a8c-posts-list-item__post-thumbnail {
  4098. margin-bottom: 32px;
  4099. }
  4100. .entry .entry-content .a8c-posts-list-item__post-thumbnail img {
  4101. display: block;
  4102. }
  4103. .entry .entry-content .a8c-posts-list-item__title {
  4104. font-size: 1.6875em;
  4105. margin: 0 auto;
  4106. }
  4107. @media only screen and (min-width: 768px) and (min-width: 768px) {
  4108. .entry .entry-content .a8c-posts-list-item__title {
  4109. max-width: calc(8 * (100vw / 12) - 28px);
  4110. }
  4111. }
  4112. @media only screen and (min-width: 768px) and (min-width: 1168px) {
  4113. .entry .entry-content .a8c-posts-list-item__title {
  4114. max-width: calc(6 * (100vw / 12) - 28px);
  4115. }
  4116. }
  4117. .entry .entry-content .a8c-posts-list-item__meta {
  4118. color: #242424;
  4119. font-size: 0.71111em;
  4120. margin: 0 auto;
  4121. }
  4122. .entry .entry-content .a8c-posts-list-item__meta a {
  4123. color: #242424;
  4124. }
  4125. @media only screen and (min-width: 768px) and (min-width: 768px) {
  4126. .entry .entry-content .a8c-posts-list-item__meta {
  4127. max-width: calc(8 * (100vw / 12) - 28px);
  4128. }
  4129. }
  4130. @media only screen and (min-width: 768px) and (min-width: 1168px) {
  4131. .entry .entry-content .a8c-posts-list-item__meta {
  4132. max-width: calc(6 * (100vw / 12) - 28px);
  4133. }
  4134. }
  4135. .entry .entry-content .a8c-posts-list-item__author {
  4136. margin-left: calc(.5 * 1rem);
  4137. }
  4138. .entry .entry-content .a8c-posts-list-item__edit-link {
  4139. transition: background 150ms ease-in-out;
  4140. background: #8D6708;
  4141. border-radius: 3px;
  4142. font-family: "Poppins", sans-serif;
  4143. font-weight: 700;
  4144. padding: .05rem .4rem;
  4145. }
  4146. .entry .entry-content .a8c-posts-list-item__edit-link:hover, .entry .entry-content .a8c-posts-list-item__edit-link:focus {
  4147. background: #5d4405;
  4148. cursor: pointer;
  4149. }
  4150. .entry .entry-content .a8c-posts-list-item__excerpt {
  4151. margin: 0 auto;
  4152. }
  4153. @media only screen and (min-width: 768px) {
  4154. .entry .entry-content .a8c-posts-list-item__excerpt {
  4155. max-width: calc(8 * (100vw / 12) - 28px);
  4156. }
  4157. }
  4158. @media only screen and (min-width: 1168px) {
  4159. .entry .entry-content .a8c-posts-list-item__excerpt {
  4160. max-width: calc(6 * (100vw / 12) - 28px);
  4161. }
  4162. }
  4163. .entry .entry-content .a8c-posts-list-item__excerpt p {
  4164. margin: 32px 0;
  4165. }
  4166. .entry .entry-content .a8c-posts-list__view-all {
  4167. transition: background 150ms ease-in-out;
  4168. background: #8D6708;
  4169. border: none;
  4170. border-radius: 5px;
  4171. box-sizing: border-box;
  4172. color: #FAF8F5;
  4173. display: inline-block;
  4174. font-family: "Poppins", sans-serif;
  4175. font-size: 0.88889em;
  4176. font-weight: 700;
  4177. line-height: 1.2;
  4178. margin-top: calc(6 * 1rem - 32px);
  4179. outline: none;
  4180. padding: 0.76rem 1rem;
  4181. vertical-align: bottom;
  4182. }
  4183. .entry .entry-content .a8c-posts-list__view-all:hover {
  4184. background: #5d4405;
  4185. cursor: pointer;
  4186. }
  4187. .entry .entry-content .a8c-posts-list__view-all:visited {
  4188. color: #FAF8F5;
  4189. text-decoration: none;
  4190. }
  4191. .entry .entry-content .a8c-posts-list__view-all:focus {
  4192. background: #5d4405;
  4193. outline: thin dotted;
  4194. outline-offset: -4px;
  4195. }
  4196. /* Site Builder */
  4197. /* !Site Builder styles */
  4198. .entry .entry-content .site-builder__header {
  4199. padding: 1rem 0 0.75rem;
  4200. text-align: center;
  4201. color: #fff;
  4202. position: relative;
  4203. max-width: 100%;
  4204. }
  4205. @media only screen and (min-width: 768px) {
  4206. .entry .entry-content .site-builder__header {
  4207. max-width: calc(8 * (100vw / 12) - 28px);
  4208. }
  4209. }
  4210. @media only screen and (min-width: 1168px) {
  4211. .entry .entry-content .site-builder__header {
  4212. max-width: calc(6 * (100vw / 12) - 28px);
  4213. }
  4214. }
  4215. @media only screen and (min-width: 768px) {
  4216. .entry .entry-content .site-builder__header {
  4217. margin: 0;
  4218. padding: 2rem 0 1.5rem;
  4219. }
  4220. }
  4221. @media only screen and (min-width: 768px) {
  4222. .entry .entry-content .site-builder__header {
  4223. margin: 0 calc(10% + 60px);
  4224. }
  4225. }
  4226. .entry .entry-content .site-builder__title {
  4227. color: #242424;
  4228. display: block;
  4229. font-family: "Poppins", sans-serif;
  4230. font-size: 1.6875em;
  4231. font-weight: 700;
  4232. -webkit-font-smoothing: antialiased;
  4233. -moz-osx-font-smoothing: grayscale;
  4234. letter-spacing: normal;
  4235. line-height: 1.2;
  4236. margin: 0;
  4237. }
  4238. .entry .entry-content .site-builder__title a {
  4239. color: #242424;
  4240. text-decoration: none;
  4241. }
  4242. .entry .entry-content .site-builder__title a:link, .entry .entry-content .site-builder__title a:visited {
  4243. color: #242424;
  4244. }
  4245. .entry .entry-content .site-builder__title a:hover {
  4246. color: #4a4a4a;
  4247. }
  4248. @media only screen and (min-width: 768px) {
  4249. .entry .entry-content .site-builder__title {
  4250. display: block;
  4251. }
  4252. }
  4253. .entry .entry-content .site-builder__description {
  4254. color: #242424;
  4255. display: block;
  4256. font-size: 0.71111em;
  4257. font-weight: normal;
  4258. letter-spacing: normal;
  4259. margin: 8px 0 0;
  4260. }
  4261. /* Media */
  4262. .page-content .wp-smiley,
  4263. .entry-content .wp-smiley,
  4264. .comment-content .wp-smiley {
  4265. border: none;
  4266. margin-bottom: 0;
  4267. margin-top: 0;
  4268. padding: 0;
  4269. }
  4270. embed,
  4271. iframe,
  4272. object {
  4273. max-width: 100%;
  4274. }
  4275. .custom-logo-link {
  4276. display: inline-block;
  4277. }
  4278. .avatar {
  4279. border-radius: 100%;
  4280. display: block;
  4281. height: calc(2.25 * 1rem);
  4282. min-height: inherit;
  4283. width: calc(2.25 * 1rem);
  4284. }
  4285. svg {
  4286. transition: fill 120ms ease-in-out;
  4287. fill: currentColor;
  4288. }
  4289. /*--------------------------------------------------------------
  4290. ## Captions
  4291. --------------------------------------------------------------*/
  4292. .wp-caption {
  4293. margin-bottom: calc(1.5 * 1rem);
  4294. }
  4295. @media only screen and (min-width: 768px) {
  4296. .wp-caption.aligncenter {
  4297. position: relative;
  4298. right: calc( calc(8 * (100vw / 12) - 28px) / 2);
  4299. transform: translateX(50%);
  4300. }
  4301. }
  4302. @media only screen and (min-width: 1168px) {
  4303. .wp-caption.aligncenter {
  4304. right: calc( calc(6 * (100vw / 12) - 28px) / 2);
  4305. }
  4306. }
  4307. .wp-caption img[class*="wp-image-"] {
  4308. display: block;
  4309. margin-right: auto;
  4310. margin-left: auto;
  4311. }
  4312. .wp-caption-text {
  4313. color: #242424;
  4314. font-size: 0.71111em;
  4315. font-family: "Poppins", sans-serif;
  4316. line-height: 1.6;
  4317. margin: 0;
  4318. padding: 0.5rem;
  4319. text-align: center;
  4320. }
  4321. /*--------------------------------------------------------------
  4322. ## Galleries
  4323. --------------------------------------------------------------*/
  4324. .gallery {
  4325. display: flex;
  4326. flex-flow: row wrap;
  4327. justify-content: center;
  4328. margin-bottom: calc(1.5 * 1rem);
  4329. }
  4330. .gallery-item {
  4331. display: inline-block;
  4332. margin-left: 16px;
  4333. margin-bottom: 16px;
  4334. text-align: center;
  4335. vertical-align: top;
  4336. width: 100%;
  4337. }
  4338. .gallery-columns-2 .gallery-item {
  4339. max-width: calc((100% - 16px * 1) / 2);
  4340. }
  4341. .gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
  4342. margin-left: 0;
  4343. }
  4344. .gallery-columns-3 .gallery-item {
  4345. max-width: calc((100% - 16px * 2) / 3);
  4346. }
  4347. .gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  4348. margin-left: 0;
  4349. }
  4350. .gallery-columns-4 .gallery-item {
  4351. max-width: calc((100% - 16px * 3) / 4);
  4352. }
  4353. .gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  4354. margin-left: 0;
  4355. }
  4356. .gallery-columns-5 .gallery-item {
  4357. max-width: calc((100% - 16px * 4) / 5);
  4358. }
  4359. .gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  4360. margin-left: 0;
  4361. }
  4362. .gallery-columns-6 .gallery-item {
  4363. max-width: calc((100% - 16px * 5) / 6);
  4364. }
  4365. .gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  4366. margin-left: 0;
  4367. }
  4368. .gallery-columns-7 .gallery-item {
  4369. max-width: calc((100% - 16px * 6) / 7);
  4370. }
  4371. .gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  4372. margin-left: 0;
  4373. }
  4374. .gallery-columns-8 .gallery-item {
  4375. max-width: calc((100% - 16px * 7) / 8);
  4376. }
  4377. .gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  4378. margin-left: 0;
  4379. }
  4380. .gallery-columns-9 .gallery-item {
  4381. max-width: calc((100% - 16px * 8) / 9);
  4382. }
  4383. .gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  4384. margin-left: 0;
  4385. }
  4386. .gallery-item:last-of-type {
  4387. padding-left: 0;
  4388. }
  4389. .gallery-caption {
  4390. display: block;
  4391. font-size: 0.71111em;
  4392. font-family: "Poppins", sans-serif;
  4393. line-height: 1.6;
  4394. margin: 0;
  4395. padding: 0.5rem;
  4396. }
  4397. .gallery-item > div > a {
  4398. display: block;
  4399. line-height: 0;
  4400. box-shadow: 0 0 0 0 transparent;
  4401. }
  4402. .gallery-item > div > a:focus {
  4403. box-shadow: 0 0 0 2px #8d6708;
  4404. }