style.css 114 KB

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