style-rtl.css 115 KB

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