style-rtl.css 114 KB

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