style-rtl.css 109 KB

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