123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689 |
- @charset "UTF-8";
- /*
- Theme Name: Redhill
- Theme URI: https://wordpress.com/theme/redhill
- Author: Automattic
- Author URI: https://automattic.com/
- Description: A simple theme with clean typography, created with entrepreneurs and small business owners in mind.
- Requires at least: WordPress 4.9.6
- Version: 1.5.22
- License: GNU General Public License v2 or later
- License URI: LICENSE
- Status: inactive
- Template: varia
- Text Domain: redhill
- 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
- AMP: true
- This theme, like WordPress, is licensed under the GPL.
- Use it to make something cool, have fun, and share what you've learned with others.
- Redhill is a child theme of Varia which is based on Underscores https://underscores.me/, (C) 2012-2019 Automattic, Inc.
- Underscores is distributed under the terms of the GNU GPL v2 or later.
- Normalizing styles have been helped along thanks to the fine work of
- Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- /* Sass Functions go here */
- /**
- * Map deep get
- * @author Hugo Giraudel
- * @access public
- * @param {Map} $map - Map
- * @param {Arglist} $keys - Key chain
- * @return {*} - Desired value
- *
- * Example:
- * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
- */
- /**
- * Deep set function to set a value in nested maps
- * @author Hugo Giraudel
- * @access public
- * @param {Map} $map - Map
- * @param {List} $keys - Key chaine
- * @param {*} $value - Value to assign
- * @return {Map}
- *
- * Example:
- * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
- */
- /**
- * jQuery-style extend function
- * - Child themes can use this function to `reset` the values in
- * config maps without editing the `master` Sass files.
- * - src: https://www.sitepoint.com/extra-map-functions-sass/
- * - About `map-merge()`:
- * - - only takes 2 arguments
- * - - is not recursive
- * @param {Map} $map - first map
- * @param {ArgList} $maps - other maps
- * @param {Bool} $deep - recursive mode
- * @return {Map}
- *
- * Examples:
- $grid-configuration-default: (
- 'columns': 12,
- 'layouts': (
- 'small': 800px,
- 'medium': 1000px,
- 'large': 1200px,
- ),
- );
- $grid-configuration-custom: (
- 'layouts': (
- 'large': 1300px,
- 'huge': 1500px
- ),
- );
- $grid-configuration-user: (
- 'direction': 'ltr',
- 'columns': 16,
- 'layouts': (
- 'large': 1300px,
- 'huge': 1500px
- ),
- );
- // $deep: false
- $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
- // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
- // $deep: true
- $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
- // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
- */
- /**
- * Button
- */
- /**
- * Cover
- */
- /**
- * Heading
- */
- /**
- * List
- */
- /**
- * Pullquote
- */
- /**
- * Quote
- */
- /**
- * Separator
- */
- /**
- * Responsive breakpoints
- * - breakpoints values are defined in _config-global.scss
- */
- /**
- * Align wide widths
- * - Sets .alignwide widths
- */
- /**
- * Crop Text Boundry
- * - Sets a fixed-width on content within alignwide and alignfull blocks
- */
- /**
- * Add font-family using CSS variables.
- * It also adds the proper fallback for browsers without support.
- */
- /**
- * Child Theme Deep
- */
- /**
- * Redefine Sass map values for child theme output.
- * - See: style-child-theme.scss
- */
- /**
- * Global
- */
- /**
- * Elements
- */
- /**
- * Button
- */
- /**
- * Cover
- */
- /**
- * Heading
- */
- /**
- * List
- */
- /**
- * Pullquote
- */
- /**
- * Quote
- */
- /**
- * Separator
- */
- /**
- * Header
- */
- /**
- * Footer
- */
- /**
- * Base
- * - Reset the browser
- */
- /**
- * Base
- * - Reset the browser
- */
- /**
- * Button Placeholder style
- * - Since buttons appear in various blocks,
- * let’s use a placeholder to keep them all
- * in-sync
- */
- button[data-load-more-btn],
- .button, button,
- input[type="submit"],
- .wp-block-button__link,
- .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 {
- line-height: 1;
- color: #FFFFFF;
- cursor: pointer;
- font-weight: bold;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 1rem;
- background-color: #CA2017;
- border-radius: 4px;
- border-width: 0;
- text-decoration: none;
- padding: 16px 24px;
- }
- button[data-load-more-btn]:before,
- .button:before, button:before,
- input[type="submit"]:before,
- .wp-block-button__link:before,
- .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,
- .button:after, button:after,
- input[type="submit"]:after,
- .wp-block-button__link:after,
- .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 {
- content: '';
- display: block;
- height: 0;
- width: 0;
- }
- button[data-load-more-btn]:before,
- .button:before, button:before,
- input[type="submit"]:before,
- .wp-block-button__link:before,
- .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 {
- margin-bottom: -0.12em;
- }
- button[data-load-more-btn]:after,
- .button:after, button:after,
- input[type="submit"]:after,
- .wp-block-button__link:after,
- .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 {
- margin-top: -0.11em;
- }
- .button:not(.has-background):hover, button:not(.has-background):hover,
- input:not(.has-background):hover[type="submit"],
- .wp-block-button__link:not(.has-background):hover,
- .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,
- .button:focus, button:focus,
- input:focus[type="submit"],
- .wp-block-button__link:focus,
- .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,
- .has-focus.button, button.has-focus,
- input.has-focus[type="submit"],
- .has-focus.wp-block-button__link,
- .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 {
- color: #FFFFFF;
- background-color: #222222;
- }
- /**
- * Onsale Placeholder style
- * - Since buttons appear in various blocks,
- * let’s use a placeholder to keep them all
- * in-sync
- */
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
- /* Document
- ========================================================================== */
- /**
- * 1. Correct the line height in all browsers.
- * 2. Prevent adjustments of font size after orientation changes in iOS.
- */
- html {
- line-height: 1.15;
- /* 1 */
- -webkit-text-size-adjust: 100%;
- /* 2 */
- }
- /* Sections
- ========================================================================== */
- /**
- * Remove the margin in all browsers.
- */
- body {
- margin: 0;
- }
- /**
- * Render the `main` element consistently in IE.
- */
- main {
- display: block;
- }
- /**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- /* Grouping content
- ========================================================================== */
- /**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
- hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- pre {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /* Text-level semantics
- ========================================================================== */
- /**
- * Remove the gray background on active links in IE 10.
- */
- a {
- background-color: transparent;
- }
- /**
- * 1. Remove the bottom border in Chrome 57-
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
- abbr[title] {
- border-bottom: none;
- /* 1 */
- text-decoration: underline;
- /* 2 */
- text-decoration: underline dotted;
- /* 2 */
- }
- /**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
- b,
- strong {
- font-weight: bolder;
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- code,
- kbd,
- samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /**
- * Add the correct font size in all browsers.
- */
- small {
- font-size: 80%;
- }
- /**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sub {
- bottom: -0.25em;
- }
- sup {
- top: -0.5em;
- }
- /* Embedded content
- ========================================================================== */
- /**
- * Remove the border on images inside links in IE 10.
- */
- img {
- border-style: none;
- }
- /* Forms
- ========================================================================== */
- /**
- * 1. Change the font styles in all browsers.
- * 2. Remove the margin in Firefox and Safari.
- */
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: inherit;
- /* 1 */
- font-size: 100%;
- /* 1 */
- line-height: 1.15;
- /* 1 */
- margin: 0;
- /* 2 */
- }
- /**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
- button,
- input {
- /* 1 */
- overflow: visible;
- }
- /**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
- button,
- select {
- /* 1 */
- text-transform: none;
- }
- /**
- * Correct the inability to style clickable types in iOS and Safari.
- */
- button,
- [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- }
- /**
- * Remove the inner border and padding in Firefox.
- */
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
- /**
- * Restore the focus styles unset by the previous rule.
- */
- button:-moz-focusring,
- [type="button"]:-moz-focusring,
- [type="reset"]:-moz-focusring,
- [type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
- /**
- * Correct the padding in Firefox.
- */
- fieldset {
- padding: 0.35em 0.75em 0.625em;
- }
- /**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
- legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */
- }
- /**
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
- progress {
- vertical-align: baseline;
- }
- /**
- * Remove the default vertical scrollbar in IE 10+.
- */
- textarea {
- overflow: auto;
- }
- /**
- * 1. Add the correct box sizing in IE 10.
- * 2. Remove the padding in IE 10.
- */
- [type="checkbox"],
- [type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */
- }
- /**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- /**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
- [type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */
- }
- /**
- * Remove the inner padding in Chrome and Safari on macOS.
- */
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- /**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
- ::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */
- }
- /* Interactive
- ========================================================================== */
- /*
- * Add the correct display in Edge, IE 10+, and Firefox.
- */
- details {
- display: block;
- }
- /*
- * Add the correct display in all browsers.
- */
- summary {
- display: list-item;
- }
- /* Misc
- ========================================================================== */
- /**
- * Add the correct display in IE 10+.
- */
- template {
- display: none;
- }
- /**
- * Add the correct display in IE 10.
- */
- [hidden] {
- display: none;
- }
- /**
- * Reset specific elements to make them easier to style in other contexts.
- */
- html,
- body,
- p,
- ol,
- ul,
- li,
- dl,
- dt,
- dd,
- blockquote,
- figure,
- fieldset,
- form,
- legend,
- textarea,
- pre,
- iframe,
- hr,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- padding: 0;
- margin: 0;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- }
- /**
- * Apply generic border-box to all elements.
- * See:
- * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
- */
- /**
- * Apply border-box across the entire page.
- */
- html {
- box-sizing: border-box;
- }
- /**
- * Relax the definition a bit, to allow components to override it manually.
- */
- *, *::before, *::after {
- box-sizing: inherit;
- }
- /**
- * HTML resets
- */
- html {
- font-size: 16.66667px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- line-height: 1.6;
- }
- @media only screen and (min-width: 560px) {
- html {
- font-size: 20px;
- }
- }
- body {
- font-size: 1rem;
- font-weight: normal;
- color: #222222;
- text-align: right;
- background-color: #FFFFFF;
- }
- /**
- * Links styles
- */
- a {
- color: #CA2017;
- }
- a:hover {
- color: #222222;
- }
- .has-primary-background-color a:not(.has-text-color) {
- color: #FFFFFF;
- }
- button,
- a {
- cursor: pointer;
- }
- /* Text meant only for screen readers. */
- .screen-reader-text {
- border: 0;
- clip: rect(1px, 1px, 1px, 1px);
- clip-path: inset(50%);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute !important;
- width: 1px;
- word-wrap: normal !important;
- /* Many screen reader and browser combinations announce broken words as they would appear visually. */
- }
- .screen-reader-text:focus {
- background-color: #FFFFFF;
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- clip-path: none;
- color: #222222;
- display: block;
- font-size: 1.2rem;
- font-weight: bold;
- height: auto;
- right: 5px;
- line-height: normal;
- padding: 15px 23px 14px;
- text-decoration: none;
- top: 5px;
- width: auto;
- z-index: 100000;
- /* Above WP toolbar. */
- }
- /* Do not show the outline on the skip link target. */
- #content[tabindex="-1"]:focus {
- outline: 0;
- }
- .clear:before,
- .clear:after,
- .entry-content:before,
- .entry-content:after,
- .comment-content:before,
- .comment-content:after,
- .site-header:before,
- .site-header:after,
- .site-content:before,
- .site-content:after,
- .site-footer:before,
- .site-footer:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .clear:after,
- .entry-content:after,
- .comment-content:after,
- .site-header:after,
- .site-content:after,
- .site-footer:after {
- clear: both;
- }
- /**
- * Measure
- * - The width of a line of text, in characters, is known as its measure.
- */
- header *,
- main *,
- footer * {
- max-width: unset;
- }
- html,
- body,
- div,
- header,
- nav,
- article,
- figure,
- hr,
- main,
- section,
- footer {
- max-width: none;
- }
- ::selection {
- background-color: #DDDDDD;
- }
- ::-moz-selection {
- background-color: #DDDDDD;
- }
- /**
- * Layout
- * - Structral and responsive styles
- */
- /**
- * Layout
- * - Structral and responsive styles
- */
- /**
- * Site Structure
- *
- * - Set vertical margins and responsive widths on
- * top-level wrappers and content wrappers
- * - `--global--width-content` is a responsive veriable
- * - See: globals/_global-width-responsive.scss
- */
- /**
- * Top Level Wrappers (header, main, footer)
- * - Set vertical padding and horizontal margins
- */
- .site-header,
- .site-main,
- .site-footer {
- padding: 16px 16px;
- margin-right: auto;
- margin-left: auto;
- }
- @media only screen and (min-width: 560px) {
- .site-header,
- .site-main,
- .site-footer {
- padding-top: 32px;
- padding-left: 0;
- padding-bottom: 32px;
- padding-right: 0;
- }
- }
- /**
- * Site-main children wrappers
- * - Add double vertical margins here for clearer heirarchy
- */
- .site-main > * {
- margin-top: calc(3 * 32px);
- margin-bottom: calc(3 * 32px);
- }
- .site-main > *:first-child {
- margin-top: 0;
- }
- .site-main > *:last-child {
- margin-bottom: 0;
- }
- /**
- * Major content sections (article, author-bio, pagination, comments, etc.)
- * - Set a maximum responsive content-width
- *
- * .responsive-max-width is a group selector replacing the following:
- * .site-header,
- * .site-main,
- * .site-footer
- * .entry-header,
- * .post-thumbnail,
- * .entry-content,
- * .entry-footer,
- * .author-bio,
- * .widget-area
- */
- /*
- * Block & non-gutenberg content wrappers
- * - Set margins
- */
- .entry-header,
- .post-thumbnail,
- .entry-content,
- .entry-footer,
- .author-bio,
- .widget-area {
- margin-top: 32px;
- margin-left: auto;
- margin-bottom: 32px;
- margin-right: auto;
- }
- /*
- * Block & non-gutenberg content wrapper children
- * - Sets spacing-vertical margin logic
- */
- .site-footer > *,
- .site-main > article > *,
- .site-main > .not-found > *,
- .entry-content > *,
- .entry-content-child,
- .wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
- .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
- [class*="inner-container"] > *,
- .widget-area > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .site-footer > *,
- .site-main > article > *,
- .site-main > .not-found > *,
- .entry-content > *,
- .entry-content-child,
- .wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
- .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
- [class*="inner-container"] > *,
- .widget-area > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .site-footer > *:first-child,
- .site-main > article > *:first-child,
- .site-main > .not-found > *:first-child,
- .entry-content > *:first-child,
- .entry-content-child:first-child,
- .wp-block-premium-content-container .wp-premium-content-logged-out-view > :first-child,
- .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :first-child,
- [class*="inner-container"] > *:first-child,
- .widget-area > *:first-child {
- margin-top: 0;
- }
- .site-footer > *:last-child,
- .site-main > article > *:last-child,
- .site-main > .not-found > *:last-child,
- .entry-content > *:last-child,
- .entry-content-child:last-child,
- .wp-block-premium-content-container .wp-premium-content-logged-out-view > :last-child,
- .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :last-child,
- [class*="inner-container"] > *:last-child,
- .widget-area > *:last-child {
- margin-bottom: 0;
- }
- /*
- * Block & non-gutenberg content wrapper children
- * - Sets spacing-unit margins
- */
- .site-header > *,
- .entry-header > *,
- .post-thumbnail > *,
- .page-content > *,
- .comment-content > *,
- .author-bio > *,
- .widget-area > .widget > * {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- .site-header > *:first-child,
- .entry-header > *:first-child,
- .post-thumbnail > *:first-child,
- .page-content > *:first-child,
- .comment-content > *:first-child,
- .author-bio > *:first-child,
- .widget-area > .widget > *:first-child {
- margin-top: 0;
- }
- .site-header > *:last-child,
- .entry-header > *:last-child,
- .post-thumbnail > *:last-child,
- .page-content > *:last-child,
- .comment-content > *:last-child,
- .author-bio > *:last-child,
- .widget-area > .widget > *:last-child {
- margin-bottom: 0;
- }
- /*
- * .entry-content children specific controls
- * - Adds special margin overrides for alignment utility classes
- */
- .entry-content > * {
- /* Reset alignleft and alignright margins after alignfull */
- }
- .entry-content > *.alignleft, .entry-content > *.alignright,
- .entry-content > *.alignleft:first-child + *,
- .entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
- margin-top: 0;
- }
- .entry-content > *:last-child, .entry-content > *.alignfull {
- margin-bottom: 0;
- }
- .entry-content > *.alignfull + .alignleft {
- float: right;
- margin-top: 32px;
- margin-right: 16px;
- margin-left: 16px;
- }
- .entry-content > *.alignfull + .alignright {
- float: left;
- margin-top: 32px;
- margin-right: 16px;
- margin-left: 16px;
- }
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- blockquote {
- padding-right: 16px;
- }
- blockquote p {
- font-size: 1.44rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- blockquote cite,
- blockquote footer {
- font-size: 0.83333rem;
- letter-spacing: normal;
- }
- blockquote > * {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- blockquote > *:first-child {
- margin-top: 0;
- }
- blockquote > *:last-child {
- margin-bottom: 0;
- }
- blockquote.alignleft, blockquote.alignright {
- padding-right: inherit;
- }
- blockquote.alignleft p, blockquote.alignright p {
- font-size: 1.2rem;
- max-width: inherit;
- width: inherit;
- }
- blockquote.alignleft cite,
- blockquote.alignleft footer, blockquote.alignright cite,
- blockquote.alignright footer {
- font-size: 0.69444rem;
- letter-spacing: normal;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- color: black;
- border: 1px solid #DDDDDD;
- border-radius: 3px;
- padding: calc( 0.33 * 16px);
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- input[type="number"]:focus,
- input[type="tel"]:focus,
- input[type="range"]:focus,
- input[type="date"]:focus,
- input[type="month"]:focus,
- input[type="week"]:focus,
- input[type="time"]:focus,
- input[type="datetime"]:focus,
- input[type="datetime-local"]:focus,
- input[type="color"]:focus,
- textarea:focus {
- color: black;
- border-color: #222222;
- }
- select {
- border: 1px solid #DDDDDD;
- }
- textarea {
- width: 100%;
- }
- input[type=checkbox] + label {
- display: inline;
- margin-right: 0.5em;
- margin-left: 2em;
- line-height: 1em;
- }
- figcaption {
- color: #666666;
- font-size: 0.69444rem;
- margin-top: calc(0.5 * 16px);
- margin-bottom: 16px;
- text-align: center;
- }
- .alignleft figcaption,
- .alignright figcaption {
- margin-bottom: 0;
- }
- /* WP Smiley */
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- /* Make sure embeds and iframes fit their containers. */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- /* Center-align getty image embeds */
- .getty.embed.image {
- display: block !important;
- }
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides
- * - In the future the Block styles may get compiled to individual .css
- * files and conditionally loaded
- */
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles with font, color, and
- * spacing with CSS-variables overrides
- * - In the future the Block styles may get compiled to individual .css
- * files and conditionally loaded
- */
- .wp-block-audio {
- min-width: inherit;
- }
- .wp-block-audio.alignleft, .wp-block-audio.alignright {
- min-width: 300px;
- }
- .wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
- margin-bottom: 16px;
- }
- .wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
- margin-left: 32px;
- }
- .wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
- margin-right: 32px;
- }
- .wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
- padding: 32px;
- }
- .wp-block-newspack-blocks-homepage-articles.is-grid article {
- margin-top: 0;
- margin-bottom: 64px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-newspack-blocks-homepage-articles.is-grid article {
- margin-bottom: 96px;
- }
- }
- .wp-block-newspack-blocks-homepage-articles .article-section-title {
- font-size: 1rem;
- margin-bottom: 16px;
- }
- .wp-block-newspack-blocks-homepage-articles .article-section-title + article {
- margin-top: 0;
- }
- .wp-block-newspack-blocks-homepage-articles article {
- display: block;
- /* Vertical margins logic between posts */
- margin-top: 64px;
- margin-bottom: 64px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-newspack-blocks-homepage-articles article {
- margin-top: 96px;
- margin-bottom: 96px;
- }
- }
- .wp-block-newspack-blocks-homepage-articles article:first-child {
- margin-top: 0;
- }
- .wp-block-newspack-blocks-homepage-articles article:last-child {
- margin-bottom: 96px;
- }
- .wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
- width: auto;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
- /* Vertical margins logic between post details */
- margin-top: 16px;
- margin-bottom: 16px;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
- margin-top: 0;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-title a {
- color: #CA2017;
- }
- .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
- [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
- color: currentColor;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
- color: #222222;
- text-decoration: underline;
- }
- .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
- [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
- color: currentColor;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-newspack-blocks-homepage-articles article .more-link {
- margin-top: 16px;
- }
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-meta,
- .wp-block-newspack-blocks-homepage-articles article .cat-links {
- color: #666666;
- font-size: 0.83333rem;
- }
- .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
- [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
- .wp-block-newspack-blocks-homepage-articles article .cat-links,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-newspack-blocks-homepage-articles article .cat-links,
- [style*="background-color"]
- .wp-block-newspack-blocks-homepage-articles article .cat-links {
- color: currentColor;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
- .wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
- vertical-align: top;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
- .wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
- margin-left: 16px;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
- .wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
- display: none;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-meta a,
- .wp-block-newspack-blocks-homepage-articles article .cat-links a {
- color: currentColor;
- text-decoration: underline;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
- color: #222222;
- text-decoration: none;
- }
- .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
- [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,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
- [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
- [style*="background-color"]
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
- [style*="background-color"]
- .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
- color: currentColor;
- }
- button[data-load-more-btn],
- .button {
- display: inline-block;
- }
- .has-background:not(.has-background-background-color) button[data-load-more-btn],
- [class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
- [style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color)
- .button,
- [class*="background-color"]:not(.has-background-background-color)
- .button,
- [style*="background-color"]
- .button {
- background-color: transparent;
- border: 2px solid currentColor;
- color: currentColor;
- }
- /**
- * Button
- */
- /**
- * Block Options
- */
- .wp-block-button.is-style-outline.wp-block-button__link,
- .wp-block-button.is-style-outline .wp-block-button__link {
- border: 2px solid currentcolor;
- padding: 14px 24px;
- }
- .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
- background: transparent;
- }
- .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
- color: #CA2017;
- }
- .wp-block-button.is-style-outline.wp-block-button__link:active,
- .wp-block-button.is-style-outline .wp-block-button__link:active {
- color: #CA2017;
- }
- .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,
- .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 {
- color: #222222;
- }
- .has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
- color: #FFFFFF;
- }
- .wp-block-button.is-style-squared,
- .wp-block-button.is-style-squared .wp-block-button__link {
- border-radius: 0;
- }
- .wp-block-code {
- color: #222222;
- font-size: 0.83333rem;
- padding: 16px;
- border-color: #DDDDDD;
- }
- .wp-block-code pre {
- color: #222222;
- }
- .wp-block-columns {
- /**
- * Block Options
- */
- }
- .wp-block-columns .wp-block-column > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-columns .wp-block-column > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-columns .wp-block-column > *:first-child {
- margin-top: 0;
- }
- .wp-block-columns .wp-block-column > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-columns .wp-block-column:last-child {
- margin-bottom: 0;
- }
- .wp-block-columns .wp-block-column:not(:last-child) {
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-columns .wp-block-column:not(:last-child) {
- margin-bottom: 32px;
- }
- }
- @media only screen and (min-width: 772px) {
- .wp-block-columns .wp-block-column:not(:last-child) {
- /* Resetting margins to match _block-container.scss */
- margin-bottom: 0;
- }
- }
- .wp-block-columns.alignfull {
- padding-right: 16px;
- padding-left: 16px;
- }
- .wp-block-columns.alignfull:not(:first-child) {
- margin-top: 32px;
- }
- .wp-block-columns.alignfull:not(:last-child) {
- margin-bottom: 32px;
- }
- .wp-block-cover,
- .wp-block-cover-image {
- background-color: #222222;
- min-height: 576px;
- margin-top: inherit;
- margin-bottom: inherit;
- /* Treating H2 separately to account for legacy /core styles */
- /**
- * Block Options
- */
- }
- .wp-block-cover.has-background-dim,
- .wp-block-cover-image.has-background-dim {
- background-color: #222222;
- }
- .wp-block-cover .wp-block-cover__inner-container,
- .wp-block-cover .wp-block-cover-image-text,
- .wp-block-cover .wp-block-cover-text,
- .wp-block-cover-image .wp-block-cover__inner-container,
- .wp-block-cover-image .wp-block-cover-image-text,
- .wp-block-cover-image .wp-block-cover-text {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .wp-block-cover h2,
- .wp-block-cover-image h2 {
- font-size: 2.0736rem;
- letter-spacing: normal;
- line-height: 1.125;
- max-width: inherit;
- text-align: inherit;
- padding: 0;
- }
- .wp-block-cover h2.has-text-align-left,
- .wp-block-cover-image h2.has-text-align-left {
- text-align: right;
- }
- .wp-block-cover h2.has-text-align-center,
- .wp-block-cover-image h2.has-text-align-center {
- text-align: center;
- }
- .wp-block-cover h2.has-text-align-right,
- .wp-block-cover-image h2.has-text-align-right {
- text-align: left;
- }
- .wp-block-cover .wp-block-cover__inner-container,
- .wp-block-cover-image .wp-block-cover__inner-container {
- width: calc(100% - 64px);
- }
- .wp-block-cover .wp-block-cover__inner-container > *,
- .wp-block-cover-image .wp-block-cover__inner-container > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-cover .wp-block-cover__inner-container > *,
- .wp-block-cover-image .wp-block-cover__inner-container > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-cover .wp-block-cover__inner-container > *:first-child,
- .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
- margin-top: 0;
- }
- .wp-block-cover .wp-block-cover__inner-container > *:last-child,
- .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-cover.alignleft, .wp-block-cover.alignright,
- .wp-block-cover-image.alignleft,
- .wp-block-cover-image.alignright {
- margin-top: 0;
- }
- .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
- .wp-block-cover-image.alignleft > *,
- .wp-block-cover-image.alignright > * {
- margin-top: calc(2 * 32px);
- margin-bottom: calc(2 * 32px);
- padding-right: 16px;
- padding-left: 16px;
- width: 100%;
- }
- .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
- .wp-block-cover-image.has-left-content,
- .wp-block-cover-image.has-right-content {
- justify-content: center;
- }
- .wp-block-file .wp-block-file__button {
- background-color: #CA2017;
- color: #FFFFFF;
- font-size: 0.83333rem;
- margin-right: 16px;
- margin-left: 16px;
- }
- .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
- display: inherit;
- }
- .wp-block-file a.wp-block-file__button:active,
- .wp-block-file a.wp-block-file__button:focus,
- .wp-block-file a.wp-block-file__button:hover,
- .wp-block-file a.wp-block-file__button:visited {
- color: #FFFFFF;
- opacity: .85;
- }
- .wp-block-gallery {
- margin: 0;
- }
- .wp-block-gallery .blocks-gallery-image figcaption,
- .wp-block-gallery .blocks-gallery-item figcaption {
- margin: 0;
- color: white;
- font-size: 0.69444rem;
- }
- .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
- max-width: 50%;
- }
- .wp-block-group .wp-block-group__inner-container {
- margin-right: auto;
- margin-left: auto;
- }
- .wp-block-group .wp-block-group__inner-container > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-group .wp-block-group__inner-container > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-group .wp-block-group__inner-container > *:first-child {
- margin-top: 0;
- }
- .wp-block-group .wp-block-group__inner-container > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-group.has-background {
- padding: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-group.has-background {
- padding: 32px;
- }
- }
- .wp-block-group.alignfull {
- padding-right: 16px;
- padding-left: 16px;
- }
- h1, .h1,
- h2, .h2,
- h3, .h3,
- h4, .h4,
- h5, .h5,
- h6, .h6 {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-weight: bold;
- clear: both;
- }
- h1, .h1 {
- font-size: 2.48832rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- h2, .h2 {
- font-size: 2.0736rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- h3, .h3 {
- font-size: 1.728rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- h4, .h4 {
- font-size: 1.44rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- h5, .h5 {
- font-size: 1.2rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- h6, .h6 {
- font-size: 1rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-image {
- text-align: center;
- }
- .wp-block-image figcaption {
- color: #666666;
- font-size: 0.69444rem;
- margin-top: calc(0.5 * 16px);
- margin-bottom: 16px;
- text-align: center;
- }
- .entry-content > *[class="wp-block-image"],
- .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
- margin-top: 0;
- margin-bottom: 0;
- }
- .entry-content > *[class="wp-block-image"] + *,
- .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
- margin-top: 0;
- }
- img {
- height: auto;
- max-width: 100%;
- vertical-align: middle;
- }
- .wp-block-latest-comments {
- padding-right: 0;
- }
- .wp-block-latest-comments .wp-block-latest-comments__comment {
- font-size: 0.83333rem;
- line-height: 1.6;
- /* Vertical margins logic */
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
- margin-top: 0;
- }
- .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
- margin-bottom: 0;
- }
- .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- }
- .wp-block-latest-comments .wp-block-latest-comments__comment-date {
- color: #666666;
- font-size: 0.83333rem;
- }
- .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
- font-size: 0.83333rem;
- line-height: 1.6;
- margin: 0;
- }
- .wp-block-latest-posts {
- padding-right: 0;
- }
- .wp-block-latest-posts > li {
- word-wrap: break-word;
- /* Vertical margins logic */
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .wp-block-latest-posts > li:first-child {
- margin-top: 0;
- }
- .wp-block-latest-posts > li:last-child {
- margin-bottom: 0;
- }
- .wp-block-latest-posts > li > a {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 1.44rem;
- font-weight: bold;
- line-height: 1.125;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-date {
- color: #666666;
- font-size: 0.69444rem;
- line-height: 1.6;
- }
- .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
- .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
- color: currentColor;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
- .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
- font-size: 0.83333rem;
- line-height: 1.6;
- margin: 0;
- }
- .wp-block-latest-posts.alignfull {
- padding-right: 16px;
- padding-left: 16px;
- }
- .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
- .entry-content .has-background .wp-block-latest-posts.alignfull {
- padding-right: 0;
- padding-left: 0;
- }
- .gallery-item {
- display: inline-block;
- text-align: center;
- vertical-align: top;
- width: 100%;
- }
- .gallery-item a {
- display: block;
- }
- .gallery-columns-2 .gallery-item {
- max-width: 50%;
- }
- .gallery-columns-3 .gallery-item {
- max-width: 33.33%;
- }
- .gallery-columns-4 .gallery-item {
- max-width: 25%;
- }
- .gallery-columns-5 .gallery-item {
- max-width: 20%;
- }
- .gallery-columns-6 .gallery-item {
- max-width: 16.66%;
- }
- .gallery-columns-7 .gallery-item {
- max-width: 14.28%;
- }
- .gallery-columns-8 .gallery-item {
- max-width: 12.5%;
- }
- .gallery-columns-9 .gallery-item {
- max-width: 11.11%;
- }
- .gallery-caption {
- display: block;
- }
- ul,
- ol {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- margin: 0;
- padding-right: 32px;
- }
- ul.aligncenter,
- ol.aligncenter {
- list-style-position: inside;
- padding: 0;
- }
- ul.alignright,
- ol.alignright {
- list-style-position: inside;
- text-align: left;
- padding: 0;
- }
- ul {
- list-style-type: disc;
- }
- ol {
- list-style-type: decimal;
- }
- dt {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-weight: bold;
- }
- dd {
- margin: 0;
- padding-right: 32px;
- }
- .wp-block-media-text {
- /**
- * Block Options
- */
- }
- .wp-block-media-text .wp-block-media-text__content {
- padding: 16px;
- }
- @media only screen and (min-width: 640px) {
- .wp-block-media-text .wp-block-media-text__content {
- padding: 32px;
- }
- }
- .wp-block-media-text .wp-block-media-text__content > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-media-text .wp-block-media-text__content > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-media-text .wp-block-media-text__content > *:first-child {
- margin-top: 0;
- }
- .wp-block-media-text .wp-block-media-text__content > *:last-child {
- margin-bottom: 0;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
- padding-top: 32px;
- padding-bottom: 32px;
- }
- }
- p.has-background {
- padding: 16px 16px;
- }
- .a8c-posts-list__listing {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .a8c-posts-list__listing:not(:last-child) {
- margin-bottom: calc(3 * 32px);
- }
- .a8c-posts-list-item__featured span {
- color: #FFFFFF;
- background-color: #CA2017;
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-weight: bold;
- font-size: 0.83333rem;
- line-height: 1;
- padding: calc(0.5 * 16px) calc(0.66 * 16px);
- }
- .a8c-posts-list__item {
- display: block;
- /* Vertical margins logic between posts */
- margin-top: calc(3 * 32px);
- margin-bottom: calc(3 * 32px);
- }
- .a8c-posts-list__item:first-child {
- margin-top: 0;
- }
- .a8c-posts-list__item:last-child {
- margin-bottom: 0;
- }
- .a8c-posts-list__item .entry > * {
- /* Vertical margins logic between post details */
- margin-top: 16px;
- margin-bottom: 16px;
- }
- .a8c-posts-list__item .entry > *:first-child {
- margin-top: 0;
- }
- .a8c-posts-list__item .entry > *:last-child {
- margin-bottom: 0;
- }
- .a8c-posts-list__item .a8c-posts-list-item__meta {
- color: #666666;
- font-size: 0.83333rem;
- }
- .a8c-posts-list__item .a8c-posts-list-item__meta a {
- color: currentColor;
- }
- .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
- color: #222222;
- }
- .a8c-posts-list__item .a8c-posts-list-item__edit-link {
- margin-right: 16px;
- }
- .a8c-posts-list__view-all {
- display: inline-block;
- }
- .wp-block-pullquote {
- border-top-color: #DDDDDD;
- border-top-width: 4px;
- border-bottom-color: #DDDDDD;
- border-bottom-width: 4px;
- color: #222222;
- }
- .wp-block-pullquote blockquote p {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 1.44rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-pullquote.is-style-solid-color blockquote p {
- font-size: 1.44rem;
- }
- .wp-block-pullquote a {
- color: currentColor;
- }
- .wp-block-pullquote .wp-block-pullquote__citation,
- .wp-block-pullquote cite,
- .wp-block-pullquote footer {
- color: #666666;
- font-size: 0.83333rem;
- letter-spacing: normal;
- }
- .wp-block-pullquote blockquote {
- padding-right: 0;
- }
- .wp-block-pullquote.is-style-solid-color {
- color: #FFFFFF;
- }
- .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
- .wp-block-pullquote.is-style-solid-color cite,
- .wp-block-pullquote.is-style-solid-color footer {
- color: currentColor;
- }
- .wp-block-pullquote.is-style-solid-color:not(.has-background) {
- background-color: #CA2017;
- }
- .wp-block-quote {
- border-right-color: #CA2017;
- margin: 32px 0;
- padding-right: 16px;
- /**
- * Block Options
- */
- }
- .wp-block-quote > * {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- .wp-block-quote > *:first-child {
- margin-top: 0;
- }
- .wp-block-quote > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-quote p {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 1.44rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-quote .wp-block-quote__citation,
- .wp-block-quote cite,
- .wp-block-quote footer {
- color: #666666;
- font-size: 0.83333rem;
- letter-spacing: normal;
- }
- .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
- .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
- .wp-block-quote cite,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-quote cite,
- [style*="background-color"]
- .wp-block-quote cite,
- .wp-block-cover[style*="background-image"]
- .wp-block-quote cite, .has-background:not(.has-background-background-color)
- .wp-block-quote footer,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-quote footer,
- [style*="background-color"]
- .wp-block-quote footer,
- .wp-block-cover[style*="background-image"]
- .wp-block-quote footer {
- color: currentColor;
- }
- .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
- border-left-color: #CA2017;
- }
- .wp-block-quote.is-style-large, .wp-block-quote.is-large {
- /* Resetting margins to match _block-container.scss */
- margin-top: 32px;
- margin-bottom: 32px;
- padding: 0;
- }
- .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
- font-size: 1.728rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-quote.is-style-large .wp-block-quote__citation,
- .wp-block-quote.is-style-large cite,
- .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
- .wp-block-quote.is-large cite,
- .wp-block-quote.is-large footer {
- color: #666666;
- font-size: 0.83333rem;
- letter-spacing: normal;
- }
- .has-background:not(.has-background-background-color) .wp-block-quote,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
- [style*="background-color"] .wp-block-quote,
- .wp-block-cover[style*="background-image"] .wp-block-quote {
- border-color: currentColor;
- }
- .wp-block-search {
- flex-wrap: wrap;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
- background: white;
- color: black;
- border: 1px solid #DDDDDD;
- border-radius: 3px;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
- padding: calc( 0.33 * 16px);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
- padding: 16px 24px;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
- padding: 0;
- }
- .wp-block-search .wp-block-search__label {
- font-weight: normal;
- }
- .wp-block-search .wp-block-search__input {
- color: black;
- border: 1px solid #DDDDDD;
- border-radius: 3px;
- padding: calc( 0.33 * 16px);
- font-size: 1rem;
- line-height: 1rem;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- max-width: inherit;
- margin-left: calc( .66 * 24px);
- background: white;
- }
- .wp-block-search .wp-block-search__input:focus {
- color: black;
- border-color: #DDDDDD;
- }
- .wp-block-search .wp-block-search__button {
- border: none;
- box-shadow: none;
- }
- .wp-block-search .wp-block-search__button.has-icon {
- transform: scaleX(-1);
- padding: 0;
- min-width: calc(2* 16px + 1rem + 4px);
- min-height: calc(2* 16px + 1rem + 4px);
- }
- .wp-block-search .wp-block-search__button.has-icon svg {
- fill: currentColor;
- width: 29px;
- height: 29px;
- }
- hr {
- border-bottom: 2px solid #DDDDDD;
- clear: both;
- margin-right: auto;
- margin-left: auto;
- }
- hr.wp-block-separator {
- border-bottom: 2px solid #DDDDDD;
- /**
- * Block Options
- */
- }
- hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
- max-width: 96px;
- }
- hr.wp-block-separator.is-style-wide {
- border-bottom-width: 2px;
- }
- hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
- background-color: transparent !important;
- }
- hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
- color: currentColor !important;
- }
- hr.wp-block-separator.is-style-dots:before {
- color: #DDDDDD;
- font-size: 1.728rem;
- letter-spacing: 0.83333rem;
- padding-right: 0.83333rem;
- }
- .has-background:not(.has-background-background-color) hr.wp-block-separator,
- [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
- [style*="background-color"] hr.wp-block-separator,
- .wp-block-cover[style*="background-image"] hr.wp-block-separator {
- border-color: currentColor;
- }
- .wp-block-jetpack-slideshow ul {
- margin-right: 0;
- margin-left: 0;
- }
- .wp-block-spacer {
- display: block;
- margin-bottom: 0 !important;
- margin-top: 0 !important;
- }
- @media only screen and (max-width: 559px) {
- .wp-block-spacer[style] {
- height: 16px !important;
- }
- }
- .jetpack_subscription_widget input[type="text"] {
- padding: calc( 0.33 * 16px) !important;
- width: 100% !important;
- }
- table,
- .wp-block-table {
- width: 100%;
- min-width: 240px;
- border-collapse: collapse;
- }
- table th,
- .wp-block-table th {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- }
- table td,
- table th,
- .wp-block-table td,
- .wp-block-table th {
- padding: calc( 0.5 * 16px);
- border: 1px solid;
- }
- table.is-style-stripes tbody tr:nth-child(odd),
- .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
- background-color: #FAFAFA;
- color: #222222;
- }
- .wp-block-video figcaption {
- color: #666666;
- font-size: 0.69444rem;
- margin-top: calc(0.5 * 16px);
- margin-bottom: 16px;
- text-align: center;
- }
- * > figure > video {
- max-width: unset;
- width: 100%;
- vertical-align: middle;
- }
- /* Block Alignments */
- /**
- * .alignleft
- */
- .alignleft {
- text-align: left;
- float: left;
- margin-top: 0;
- margin-right: 16px;
- margin-bottom: 32px;
- }
- .entry-content > .alignleft {
- float: left;
- }
- /**
- * .aligncenter
- */
- .aligncenter {
- clear: both;
- display: block;
- float: none;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- /**
- * .alignright
- */
- .alignright {
- float: right;
- margin-top: 0;
- margin-bottom: 32px;
- margin-left: 16px;
- }
- .entry-content > .alignright {
- float: right;
- }
- .entry-content * > .alignleft + *,
- .entry-content * > .alignright + * {
- margin-top: 0;
- }
- /**
- * .aligndefault
- */
- /**
- * .alignwide
- */
- .alignwide {
- clear: both;
- }
- /**
- * .alignfull
- */
- .alignfull {
- clear: both;
- }
- .has-left-content {
- justify-content: flex-start;
- }
- .has-right-content {
- justify-content: flex-end;
- }
- .has-parallax {
- background-attachment: fixed;
- }
- .has-primary-color {
- color: #CA2017;
- }
- .has-secondary-color {
- color: #007FDB;
- }
- .has-foreground-color {
- color: #222222;
- }
- .has-foreground-light-color {
- color: #666666;
- }
- .has-foreground-dark-color {
- color: #111111;
- }
- .has-background-light-color {
- color: #FAFAFA;
- }
- .has-background-dark-color {
- color: #DDDDDD;
- }
- .has-background-dim,
- .has-background-color {
- color: #FFFFFF;
- }
- .has-background p:not(.has-text-color),
- .has-background h1:not(.has-text-color),
- .has-background h2:not(.has-text-color),
- .has-background h3:not(.has-text-color),
- .has-background h4:not(.has-text-color),
- .has-background h5:not(.has-text-color),
- .has-background h6:not(.has-text-color) {
- color: currentcolor;
- }
- .has-primary-background-color,
- .has-primary-background-color.has-background-dim {
- background-color: #CA2017;
- }
- .has-primary-background-color:not(.has-text-color),
- .has-primary-background-color.has-background-dim:not(.has-text-color) {
- color: #FFFFFF;
- }
- .has-secondary-background-color,
- .has-secondary-background-color.has-background-dim {
- background-color: #007FDB;
- }
- .has-secondary-background-color:not(.has-text-color),
- .has-secondary-background-color.has-background-dim:not(.has-text-color) {
- color: #FFFFFF;
- }
- .has-background-dim,
- .has-foreground-background-color,
- .has-foreground-background-color.has-background-dim {
- background-color: #222222;
- }
- .has-background-dim,
- .has-foreground-background-color:not(.has-text-color),
- .has-foreground-background-color.has-background-dim:not(.has-text-color) {
- color: #FFFFFF;
- }
- .has-foreground-light-background-color,
- .has-foreground-light-background-color.has-background-dim {
- background-color: #666666;
- }
- .has-foreground-light-background-color:not(.has-text-color),
- .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
- color: #FFFFFF;
- }
- .has-foreground-dark-background-color,
- .has-foreground-dark-background-color.has-background-dim {
- background-color: #111111;
- }
- .has-foreground-dark-background-color:not(.has-text-color),
- .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
- color: #FFFFFF;
- }
- .has-background-light-background-color,
- .has-background-light-background-color.has-background-dim {
- background-color: #FAFAFA;
- }
- .has-background-light-background-color:not(.has-text-color),
- .has-background-light-background-color.has-background-dim:not(.has-text-color) {
- color: #222222;
- }
- .has-background-dark-background-color,
- .has-background-dark-background-color.has-background-dim {
- background-color: #DDDDDD;
- }
- .has-background-dark-background-color:not(.has-text-color),
- .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
- color: #222222;
- }
- .has-background-background-color,
- .has-background-background-color.has-background-dim {
- background-color: #FFFFFF;
- }
- .has-background-background-color:not(.has-text-color),
- .has-background-background-color.has-background-dim:not(.has-text-color) {
- color: #222222;
- }
- .is-small-text,
- .has-small-font-size {
- font-size: 0.83333rem;
- }
- .is-regular-text,
- .has-regular-font-size,
- .has-normal-font-size,
- .has-medium-font-size {
- font-size: 1rem;
- }
- .is-large-text,
- .has-large-font-size {
- font-size: 1.44rem;
- line-height: 1.125;
- }
- .is-larger-text,
- .has-larger-font-size,
- .has-huge-font-size {
- font-size: 1.728rem;
- line-height: 1.125;
- }
- .has-drop-cap:not(:focus)::first-letter {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: calc(2 * 2.48832rem);
- font-weight: bold;
- line-height: 0.66;
- text-transform: uppercase;
- font-style: normal;
- float: right;
- margin: 0.1em 0 0 0.1em;
- }
- .has-drop-cap:not(:focus)::after {
- content: "";
- display: table;
- clear: both;
- padding-top: 14px;
- }
- .desktop-only {
- display: none;
- }
- @media only screen and (min-width: 560px) {
- .desktop-only {
- display: block;
- }
- }
- /**
- * Spacing Overrides
- */
- /*
- * Margins
- */
- .margin-top-none {
- margin-top: 0 !important;
- }
- .margin-top-half {
- margin-top: 16px !important;
- }
- .margin-top-default {
- margin-top: 32px !important;
- }
- .margin-right-none {
- margin-right: 0 !important;
- }
- .margin-right-half {
- margin-right: 16px !important;
- }
- .margin-right-default {
- margin-right: 32px !important;
- }
- .margin-bottom-none {
- margin-bottom: 0 !important;
- }
- .margin-bottom-half {
- margin-bottom: 16px !important;
- }
- .margin-bottom-default {
- margin-bottom: 32px !important;
- }
- .margin-left-none {
- margin-left: 0 !important;
- }
- .margin-left-half {
- margin-left: 16px !important;
- }
- .margin-left-default {
- margin-left: 32px !important;
- }
- /*
- * Padding
- */
- .padding-top-none {
- padding-top: 0 !important;
- }
- .padding-top-half {
- padding-top: 16px !important;
- }
- .padding-top-default {
- padding-top: 32px !important;
- }
- .padding-right-none {
- padding-right: 0 !important;
- }
- .padding-right-half {
- padding-right: 16px !important;
- }
- .padding-right-default {
- padding-right: 32px !important;
- }
- .padding-bottom-none {
- padding-bottom: 0 !important;
- }
- .padding-bottom-half {
- padding-bottom: 16px !important;
- }
- .padding-bottom-default {
- padding-bottom: 32px !important;
- }
- .padding-left-none {
- padding-left: 0 !important;
- }
- .padding-left-half {
- padding-left: 16px !important;
- }
- .padding-left-default {
- padding-left: 32px !important;
- }
- /**
- * Components
- * - Similar to Blocks but exist outside of the "current" editor context
- */
- /*
- * Components
- * - Similar to Blocks but exist outside of the "current" editor context
- */
- .site-branding {
- color: #666666;
- }
- .site-title {
- color: #111111;
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- letter-spacing: normal;
- line-height: 1;
- }
- .site-title a {
- color: currentColor;
- font-weight: bold;
- }
- .site-title a:link, .site-title a:visited {
- color: currentColor;
- }
- .site-title a:hover {
- color: #CA2017;
- }
- .site-description {
- color: currentColor;
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- }
- body:not(.fse-enabled) .site-title {
- font-size: 2.98598rem;
- }
- body:not(.fse-enabled) .site-description {
- font-size: 0.83333rem;
- }
- .main-navigation {
- color: #222222;
- }
- .main-navigation > div {
- display: none;
- }
- .main-navigation #toggle-menu {
- display: inline-block;
- margin: 0;
- }
- .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
- display: block;
- }
- .main-navigation #toggle:focus + #toggle-menu {
- background-color: #CA2017;
- outline: inherit;
- text-decoration: underline;
- }
- .main-navigation .dropdown-icon.close {
- display: none;
- }
- .main-navigation #toggle:checked + #toggle-menu .open {
- display: none;
- }
- .main-navigation #toggle:checked + #toggle-menu .close {
- display: inline;
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div {
- display: inline-block;
- }
- .main-navigation #toggle-menu {
- display: none;
- }
- .main-navigation > div > ul > li > ul {
- display: none;
- }
- }
- .main-navigation > div > ul {
- display: flex;
- flex-wrap: wrap;
- list-style: none;
- margin: 0;
- max-width: none;
- padding-right: 0;
- position: relative;
- /* Sub-menus Flyout */
- }
- .main-navigation > div > ul ul {
- padding-right: 0;
- }
- .main-navigation > div > ul li {
- display: block;
- position: relative;
- width: 100%;
- z-index: 1;
- }
- .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
- cursor: pointer;
- z-index: 99999;
- }
- .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
- cursor: pointer;
- z-index: 99999;
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div > ul li {
- display: inherit;
- width: inherit;
- /* Submenu display */
- }
- .main-navigation > div > ul li:hover > ul,
- .main-navigation > div > ul li[focus-within] > ul,
- .main-navigation > div > ul li ul:hover,
- .main-navigation > div > ul li ul:focus {
- visibility: visible;
- opacity: 1;
- display: block;
- }
- .main-navigation > div > ul li:hover > ul,
- .main-navigation > div > ul li:focus-within > ul,
- .main-navigation > div > ul li ul:hover,
- .main-navigation > div > ul li ul:focus {
- visibility: visible;
- opacity: 1;
- display: block;
- }
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div > ul > li > a {
- line-height: 1;
- }
- .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
- content: '';
- display: block;
- height: 0;
- width: 0;
- }
- .main-navigation > div > ul > li > a:before {
- margin-bottom: -0.12em;
- }
- .main-navigation > div > ul > li > a:after {
- margin-top: -0.11em;
- }
- .main-navigation > div > ul > li:first-of-type > a {
- padding-right: 0;
- }
- .main-navigation > div > ul > li:last-of-type > a {
- padding-left: 0;
- }
- }
- .main-navigation > div > ul > li > .sub-menu {
- margin: 0;
- position: relative;
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div > ul > li > .sub-menu {
- background: #FFFFFF;
- box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
- right: 0;
- top: 100%;
- min-width: max-content;
- opacity: 0;
- position: absolute;
- transition: all 0.5s ease;
- visibility: hidden;
- }
- }
- .main-navigation > div > ul > li > .sub-menu .sub-menu {
- width: 100%;
- }
- .main-navigation a {
- color: #222222;
- display: block;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-weight: bold;
- padding: 8px 0;
- }
- @media only screen and (min-width: 560px) {
- .main-navigation a {
- padding: 16px;
- }
- }
- .main-navigation a:link, .main-navigation a:visited {
- color: #222222;
- }
- .main-navigation a:hover {
- color: #CA2017;
- }
- .main-navigation .sub-menu {
- list-style: none;
- margin-right: 0;
- /* Reset the counter for each UL */
- counter-reset: nested-list;
- }
- .main-navigation .sub-menu .menu-item a {
- padding-top: 8px;
- padding-bottom: 8px;
- }
- .main-navigation .sub-menu .menu-item a::before {
- /* Increment the dashes */
- counter-increment: nested-list;
- /* Insert dashes with spaces in between */
- content: "– " counters(nested-list, "– ", none);
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div > ul > .menu-item-has-children > a::after {
- content: "\00a0\25BC";
- display: inline-block;
- font-size: 0.69444rem;
- height: inherit;
- width: inherit;
- }
- }
- .main-navigation .hide-visually {
- position: absolute !important;
- clip: rect(1px, 1px, 1px, 1px);
- padding: 0 !important;
- border: 0 !important;
- height: 1px !important;
- width: 1px !important;
- overflow: hidden;
- }
- body:not(.fse-enabled) .main-navigation a {
- font-size: 0.83333rem;
- }
- .social-navigation > div > ul {
- align-content: center;
- display: flex;
- list-style: none;
- margin: 0;
- padding-right: 0;
- }
- .social-navigation > div > ul > li:first-of-type > a {
- padding-right: 0;
- }
- .social-navigation > div > ul > li:last-of-type > a {
- padding-left: 0;
- }
- .social-navigation a {
- color: #CA2017;
- display: inline-block;
- padding: 0 4px;
- }
- .social-navigation a:hover {
- color: #222222;
- }
- .social-navigation svg {
- fill: currentColor;
- vertical-align: middle;
- }
- .site-footer {
- overflow: hidden;
- }
- @media only screen and (min-width: 640px) {
- .site-footer {
- align-items: flex-end;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- }
- .site-info {
- color: #666666;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 0.83333rem;
- }
- @media only screen and (min-width: 640px) {
- .site-info {
- order: 1;
- flex: 1 0 50%;
- margin-top: 0;
- margin-bottom: 0;
- }
- }
- .site-info .site-name {
- font-weight: bold;
- }
- .site-info a {
- color: currentColor;
- }
- .site-info a:link, .site-info a:visited {
- color: currentColor;
- }
- .site-info a:hover {
- color: #CA2017;
- }
- .footer-navigation {
- display: inline;
- }
- @media only screen and (min-width: 640px) {
- .footer-navigation {
- flex: 1 0 50%;
- order: 2;
- margin-top: 0;
- margin-bottom: 0;
- text-align: left;
- }
- }
- .footer-navigation > div {
- display: inline;
- }
- .footer-navigation .footer-menu {
- color: #666666;
- margin: 0;
- padding-right: 0;
- }
- @media only screen and (min-width: 640px) {
- .footer-navigation .footer-menu {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-end;
- }
- }
- .footer-navigation .footer-menu > li {
- display: inline;
- }
- .footer-navigation .footer-menu > li:first-of-type > a {
- padding-right: 0;
- }
- .footer-navigation .footer-menu > li:last-of-type {
- padding-left: 0;
- }
- .footer-navigation .footer-menu a {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-weight: bold;
- padding: 16px;
- color: currentColor;
- }
- .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
- color: currentColor;
- }
- .footer-navigation .footer-menu a:hover {
- color: #CA2017;
- }
- body:not(.fse-enabled) .footer-menu a {
- font-size: 0.83333rem;
- }
- .entry-title {
- font-size: 2.0736rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .entry-meta,
- .entry-footer {
- color: #666666;
- clear: both;
- float: none;
- font-size: 0.83333rem;
- display: block;
- }
- .entry-meta > span,
- .entry-footer > span {
- display: inline-block;
- margin-left: 16px;
- }
- .entry-meta > span > *,
- .entry-footer > span > * {
- display: inline-block;
- vertical-align: middle;
- }
- .entry-meta > span:last-child,
- .entry-footer > span:last-child {
- margin-left: 0;
- }
- .entry-meta > span .published + .updated,
- .entry-footer > span .published + .updated {
- display: none;
- }
- .entry-meta a,
- .entry-footer a {
- color: currentColor;
- }
- .entry-meta a:hover, .entry-meta a:active,
- .entry-footer a:hover,
- .entry-footer a:active {
- color: #222222;
- }
- .entry-meta .svg-icon,
- .entry-footer .svg-icon {
- fill: currentColor;
- position: relative;
- display: inline-block;
- vertical-align: middle;
- margin-left: calc(0.25 * 16px);
- }
- /**
- * Entry Content
- */
- .entry-content p {
- word-wrap: break-word;
- }
- .entry-content .more-link {
- display: block;
- color: inherit;
- margin-top: 16px;
- }
- @media only screen and (min-width: 560px) {
- .entry-content .more-link {
- margin-top: 32px;
- }
- }
- .entry-content .more-link:after {
- content: "←";
- display: inline-block;
- margin-right: 0.5em;
- }
- .entry-content .more-link:hover {
- text-decoration: none;
- }
- .entry-content > iframe,
- .entry-content > iframe[style],
- .entry-content > fb\:post {
- display: block !important;
- margin-right: auto !important;
- margin-left: auto !important;
- overflow: scroll;
- }
- .home.page.hide-homepage-header.hide-homepage-title .entry-content {
- margin-top: 0;
- padding-top: 0;
- }
- .home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
- margin-top: 32px;
- }
- .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
- .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
- .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
- .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
- margin-top: -32px;
- }
- .entry-attachment {
- text-align: center;
- }
- /**
- * Post Thumbnails
- */
- .post-thumbnail {
- text-align: center;
- }
- .post-thumbnail .post-thumbnail-inner {
- display: block;
- }
- /**
- * Author
- */
- /* Author description */
- .site-main > article > .author-bio {
- margin-top: calc(2 * 32px);
- }
- .author-bio .author-title {
- font-size: 1.728rem;
- }
- /* Next/Previous navigation */
- .post-navigation .meta-nav {
- font-size: 0.83333rem;
- }
- .post-navigation .post-title {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 1.44rem;
- font-weight: 600;
- }
- .post-navigation .nav-next,
- .post-navigation .nav-previous {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .post-navigation .nav-next:first-child,
- .post-navigation .nav-previous:first-child {
- margin-top: 0;
- }
- .post-navigation .nav-next:last-child,
- .post-navigation .nav-previous:last-child {
- margin-bottom: 0;
- }
- .pagination .nav-links {
- justify-content: start;
- margin: 0 calc(-0.66 * 16px);
- }
- .pagination .nav-links > * {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 1.2rem;
- font-weight: 600;
- padding-right: calc(0.66 * 16px);
- padding-left: calc(0.66 * 16px);
- }
- .pagination .nav-links .svg-icon {
- display: inline-block;
- vertical-align: middle;
- fill: currentColor;
- }
- @media only screen and (min-width: 560px) {
- .nav-links {
- display: flex;
- justify-content: space-between;
- }
- .nav-links .nav-next,
- .nav-links .nav-previous {
- flex: 0 1 auto;
- margin-bottom: inherit;
- margin-top: inherit;
- max-width: calc(50% - (0.5 * 16px));
- }
- .nav-links .nav-next {
- text-align: left;
- }
- }
- /**
- * Comments Wrapper
- */
- .comments-area > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .comments-area > *:first-child {
- margin-top: 0;
- }
- .comments-area > *:last-child {
- margin-bottom: 0;
- }
- /**
- * Comment Title
- */
- .comments-title {
- font-size: 1.728rem;
- letter-spacing: normal;
- }
- .comment-reply-title {
- font-size: 1.728rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .comment-reply-title small {
- font-size: 1rem;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- letter-spacing: normal;
- line-height: 1.125;
- }
- /**
- * Comment Lists
- */
- .comment-list {
- border-bottom: 1px solid #DDDDDD;
- padding-right: 0;
- list-style: none;
- }
- .comment-list > li {
- border-top: 1px solid #DDDDDD;
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .comment-list .children {
- list-style: none;
- padding-right: 16px;
- }
- .comment-list .children > li {
- border-top: 1px solid #DDDDDD;
- margin-top: 32px;
- margin-bottom: 32px;
- }
- @media only screen and (min-width: 560px) {
- .comment-list .children {
- padding-right: 32px;
- }
- }
- /**
- * Comment Meta
- */
- .comment-meta {
- margin-left: calc( 32px + (0.5 * 16px));
- }
- .comment-meta .comment-author {
- line-height: 1.125;
- margin-bottom: 4px;
- padding-left: 40px;
- max-width: calc(100% - 48px);
- }
- @media only screen and (min-width: 560px) {
- .comment-meta .comment-author {
- display: flex;
- align-items: center;
- margin-bottom: 0;
- padding-left: 0;
- }
- }
- .comment-meta .comment-author .fn {
- word-wrap: break-word;
- word-break: break-word;
- hyphens: auto;
- }
- .comment-meta .comment-author .avatar {
- display: block;
- position: absolute;
- left: 0;
- }
- .comment-meta .comment-metadata {
- color: #222222;
- padding-left: 40px;
- }
- @media only screen and (min-width: 560px) {
- .comment-meta .comment-metadata {
- padding-left: 0;
- }
- }
- .comment-meta .comment-metadata a {
- color: currentColor;
- }
- .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
- color: #222222;
- }
- @media only screen and (min-width: 560px) {
- .comment-meta {
- margin-left: inherit;
- align-items: center;
- display: flex;
- justify-content: space-between;
- }
- .comment-meta .comment-author {
- display: flex;
- align-items: center;
- max-width: inherit;
- flex: 0 1 auto;
- }
- .comment-meta .comment-author .fn {
- padding-left: 16px;
- }
- .comment-meta .comment-author .avatar {
- margin-left: 16px;
- display: inherit;
- position: relative;
- left: inherit;
- }
- .comment-meta .comment-metadata {
- flex: 0 1 auto;
- }
- }
- .comment-metadata,
- .reply {
- font-size: 0.69444rem;
- line-height: 1.125;
- }
- .reply {
- text-align: left;
- }
- @media only screen and (min-width: 560px) {
- .reply {
- text-align: right;
- }
- }
- .bypostauthor {
- display: block;
- }
- .says {
- display: none;
- }
- .comment-author .fn,
- .pingback .url,
- .trackback .url {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- }
- /**
- * Comment body
- */
- .comment-body {
- position: relative;
- }
- .comment-body > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .comment-content a {
- word-wrap: break-word;
- }
- /**
- * Pingbacks & Trackbacks
- */
- .pingback .comment-body,
- .trackback .comment-body {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- /**
- * Comment Form
- */
- .comment-respond {
- margin-top: calc(2 * 32px);
- }
- .comment-respond > * {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- .comment-respond > *:first-child {
- margin-top: 0;
- }
- .comment-respond > *:last-child {
- margin-bottom: 0;
- }
- .comment-form > p {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- .comment-form > p:first-of-type {
- margin-top: 0;
- }
- .comment-form > p:last-of-type {
- margin-bottom: 0;
- }
- .comment-form > p label,
- .comment-form > p input[type="email"],
- .comment-form > p input[type="text"],
- .comment-form > p input[type="url"],
- .comment-form > p textarea {
- width: 100%;
- }
- .comment-form > p.comment-form-cookies-consent > label {
- width: auto;
- }
- @media only screen and (min-width: 560px) {
- .comment-form > p {
- display: flex;
- }
- .comment-form > p label {
- width: 25%;
- }
- .comment-form > p.comment-form-cookies-consent {
- margin-right: 25%;
- }
- .comment-form > p.comment-form-cookies-consent > label {
- width: auto;
- display: inline-block;
- }
- .comment-form > p input[type="email"],
- .comment-form > p input[type="text"],
- .comment-form > p input[type="url"],
- .comment-form > p textarea {
- width: 75%;
- }
- .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
- display: block;
- }
- }
- /**
- * Comment Nav
- */
- .comment-navigation a {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 1.2rem;
- font-weight: 600;
- }
- .widget-area {
- flex: 0 0 100%;
- }
- /**
- * Site Pages
- * - Page specific styles
- */
- /**
- * Site Pages
- * - Page specific styles
- */
- .sticky-post {
- color: #FFFFFF;
- background-color: #CA2017;
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-weight: bold;
- font-size: 0.83333rem;
- line-height: 1;
- padding: calc(0.5 * 16px) calc(0.66 * 16px);
- }
- .page-title {
- font-size: 1.44rem;
- }
- /**
- * Responsive Logic
- * - Loading this last to respect cascaing rules
- */
- /**
- * Page Layout Styles & Repsonsive Styles
- */
- /* Responsive width-content overrides */
- .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),
- .entry-content > *:not(.wp-block-button),
- .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 {
- max-width: 100%;
- margin-right: auto;
- margin-left: auto;
- }
- @media only screen and (min-width: 560px) {
- .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),
- .entry-content > *:not(.wp-block-button),
- .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 {
- max-width: calc( 560px - 32px);
- }
- }
- @media only screen and (min-width: 640px) {
- .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),
- .entry-content > *:not(.wp-block-button),
- .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 {
- max-width: calc( 640px - 32px);
- }
- }
- @media only screen and (min-width: 772px) {
- .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),
- .entry-content > *:not(.wp-block-button),
- .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 {
- max-width: calc( 772px - 32px);
- }
- }
- @media only screen and (min-width: 1024px) {
- .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),
- .entry-content > *:not(.wp-block-button),
- .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 {
- max-width: calc( 772px - 32px);
- }
- }
- @media only screen and (min-width: 1280px) {
- .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),
- .entry-content > *:not(.wp-block-button),
- .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 {
- max-width: calc( 772px - 32px);
- }
- }
- .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
- margin-right: auto;
- margin-left: auto;
- max-width: 100%;
- /* Matches normal width until desktop breakpoint */
- }
- @media only screen and (min-width: 560px) {
- .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
- max-width: calc( 560px - 32px);
- }
- }
- @media only screen and (min-width: 640px) {
- .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
- max-width: calc( 640px - 32px);
- }
- }
- @media only screen and (min-width: 772px) {
- .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
- max-width: calc( 772px - 32px);
- }
- }
- @media only screen and (min-width: 1024px) {
- .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
- width: calc(calc( 772px - 32px) + 256px);
- max-width: calc(100% - 32px);
- }
- }
- @media only screen and (min-width: 1280px) {
- .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
- width: calc(calc( 772px - 32px) + 256px);
- max-width: calc(100% - 32px);
- }
- }
- .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
- width: calc(100% + 256px);
- max-width: 100%;
- margin-right: auto;
- margin-left: auto;
- }
- @media only screen and (min-width: 560px) {
- .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
- width: calc(calc( 560px - 32px) + 256px);
- max-width: 100%;
- }
- }
- @media only screen and (min-width: 640px) {
- .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
- width: calc(calc( 640px - 32px) + 256px);
- max-width: 100%;
- }
- }
- @media only screen and (min-width: 772px) {
- .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
- width: calc(calc( 772px - 32px) + 256px);
- max-width: 100%;
- }
- }
- @media only screen and (min-width: 1024px) {
- .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
- width: calc(calc( 772px - 32px) + 256px);
- max-width: 100%;
- }
- }
- @media only screen and (min-width: 1280px) {
- .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
- width: calc(calc( 772px - 32px) + 256px);
- max-width: 100%;
- }
- }
- .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 {
- margin-right: -16px;
- margin-left: -16px;
- width: calc(100% + 32px);
- max-width: calc(100% + 32px);
- /* Letting the box-model do most of the work here. */
- }
- @media only screen and (min-width: 560px) {
- .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 {
- margin-right: inherit;
- margin-left: inherit;
- width: inherit;
- max-width: inherit;
- }
- }
- .entry-content > .alignright {
- }
- @media only screen and (min-width: 560px) {
- .entry-content > .alignright {
- /*rtl:ignore*/
- margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
- max-width: calc( 0.5 * calc( 560px - 32px));
- margin-left: 16px;
- }
- }
- @media only screen and (min-width: 640px) {
- .entry-content > .alignright {
- margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
- max-width: calc( 0.5 * calc( 640px - 32px));
- }
- }
- @media only screen and (min-width: 772px) {
- .entry-content > .alignright {
- margin-right: calc( 0.5 * (100vw - calc( 772px - 32px)));
- max-width: calc( 0.5 * calc( 772px - 32px));
- }
- }
- @media only screen and (min-width: 1024px) {
- .entry-content > .alignright {
- margin-right: calc( 0.5 * (100vw - calc( 772px - 32px)));
- max-width: calc( 0.5 * calc( 772px - 32px));
- }
- }
- @media only screen and (min-width: 1280px) {
- .entry-content > .alignright {
- margin-right: calc( 0.5 * (100vw - calc( 772px - 32px)));
- max-width: calc( 0.5 * calc( 772px - 32px));
- }
- }
- .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
- }
- @media only screen and (min-width: 560px) {
- .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
- /*rtl:ignore*/
- margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
- max-width: calc( 0.5 * calc( 560px - 32px));
- margin-right: 16px;
- }
- }
- @media only screen and (min-width: 640px) {
- .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
- margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
- max-width: calc( 0.5 * calc( 640px - 32px));
- }
- }
- @media only screen and (min-width: 772px) {
- .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
- margin-left: calc( 0.5 * (100vw - calc( 772px - 32px)));
- max-width: calc( 0.5 * calc( 772px - 32px));
- }
- }
- @media only screen and (min-width: 1024px) {
- .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
- margin-left: calc( 0.5 * (100vw - calc( 772px - 32px)));
- max-width: calc( 0.5 * calc( 772px - 32px));
- }
- }
- @media only screen and (min-width: 1280px) {
- .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
- margin-left: calc( 0.5 * (100vw - calc( 772px - 32px)));
- max-width: calc( 0.5 * calc( 772px - 32px));
- }
- }
- /**
- * Vendors
- * - Styles for 3rd party plugins and WP extensions
- */
- /**
- * Vendors
- * - 3rd-party compatibility styles
- */
- /**
- * Subscription Form
- */
- .wp-block-jetpack-subscriptions form > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-jetpack-subscriptions form > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-jetpack-subscriptions form > *:first-child {
- margin-top: 0;
- }
- .wp-block-jetpack-subscriptions form > *:last-child {
- margin-bottom: 0;
- }
- /**
- * Cookies & Consents Banner
- */
- body .widget_eu_cookie_law_widget {
- background: transparent;
- bottom: 0;
- right: 0;
- padding: 8px;
- left: 0;
- }
- body .widget_eu_cookie_law_widget.widget.top {
- bottom: auto;
- top: 0;
- }
- body .widget_eu_cookie_law_widget #eu-cookie-law {
- background: #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #222222;
- font-size: 0.83333rem;
- line-height: inherit;
- padding: 16px;
- }
- @media (max-width: 600px) {
- body .widget_eu_cookie_law_widget #eu-cookie-law {
- padding-bottom: 80px;
- }
- }
- body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
- background: #222222;
- border-color: #111111;
- color: #FFFFFF;
- }
- body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
- background: #FFFFFF;
- color: #222222;
- }
- 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 {
- background: #DDDDDD;
- }
- body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
- margin: 0;
- margin-right: 32px;
- }
- @media (max-width: 600px) {
- body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
- bottom: 16px;
- right: 16px;
- margin: 0;
- }
- }
- body.admin-bar .widget_eu_cookie_law_widget.widget.top {
- top: 32px;
- }
- @media (max-width: 782px) {
- body.admin-bar .widget_eu_cookie_law_widget.widget.top {
- top: 46px;
- }
- }
- /**
- * Mailchimp Subscription Form
- */
- .wp-block-jetpack-mailchimp p {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-jetpack-mailchimp p {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-jetpack-mailchimp p:first-child {
- margin-top: 0;
- }
- .wp-block-jetpack-mailchimp p:last-child {
- margin-bottom: 0;
- }
- .wp-block-jetpack-mailchimp input[type="email"] {
- width: 100%;
- }
- #wp-block-jetpack-mailchimp_consent-text {
- font-size: 0.83333rem;
- }
- /**
- * Business Hours
- */
- .jetpack-business-hours dd {
- padding-right: 0;
- }
- /**
- * Layout Grid
- */
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
- margin-top: 0;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
- margin-bottom: 0;
- }
- /**
- * Map Block
- */
- .mapboxgl-popup-close-button {
- padding: 6px;
- }
- .wp-block-jetpack-map .mapboxgl-popup h3 {
- padding-top: 15px;
- }
- /**
- * Related Posts
- */
- .entry-content #jp-relatedposts {
- margin: 0 auto;
- }
- /**
- * Child Theme Extra Styles
- */
- /**
- * Extra Child Theme Styles
- */
- html {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- }
- a {
- text-decoration: none;
- }
- .wp-block-cover a,
- .wp-block-cover-image a,
- .wp-block-media-text a,
- p:not(.site-title) a {
- text-decoration: underline;
- }
- .wp-block-cover a.wp-block-button__link, .wp-block-cover a:hover,
- .wp-block-cover-image a.wp-block-button__link,
- .wp-block-cover-image a:hover,
- .wp-block-media-text a.wp-block-button__link,
- .wp-block-media-text a:hover,
- p:not(.site-title) a.wp-block-button__link,
- p:not(.site-title) a:hover {
- text-decoration: none;
- }
- .site {
- border-top: 5px solid #222222;
- position: relative;
- }
- .site:before {
- border-top: 1px solid rgba(255, 255, 255, 0.5);
- content: "";
- right: 0;
- position: absolute;
- top: -5px;
- width: 100%;
- }
- #masthead {
- padding-top: 32px;
- }
- #masthead .custom-logo-link {
- display: inline-block;
- margin-bottom: 16px;
- }
- @media only screen and (min-width: 560px) {
- #masthead {
- align-content: center;
- align-items: center;
- display: flex;
- flex-flow: row wrap;
- justify-content: center;
- max-width: 92vw;
- padding-bottom: 16px;
- padding-top: 48px;
- }
- #masthead .site-branding {
- flex: 1 100%;
- }
- #masthead .main-navigation {
- padding-right: 32px;
- padding-left: 32px;
- }
- #masthead .social-navigation {
- padding-right: 32px;
- padding-left: 32px;
- margin: 0;
- }
- }
- @media only screen and (min-width: 560px) {
- #colophon {
- margin-top: 32px;
- }
- }
- @media only screen and (min-width: 560px) {
- #colophon .site-info {
- max-width: 92vw;
- margin-right: auto;
- margin-left: auto;
- }
- }
- #colophon .footer-navigation + .site-info {
- text-align: right;
- }
- #colophon .footer-navigation .footer-menu > li:last-of-type > a {
- padding-left: 0;
- }
- .main-navigation #toggle-menu {
- text-transform: uppercase;
- }
- @media only screen and (min-width: 560px) {
- .main-navigation a {
- padding: 12px 16px;
- }
- }
- .main-navigation > div > ul > li > a {
- text-transform: uppercase;
- }
- .main-navigation > div {
- background: #FAFAFA;
- border-radius: 4px;
- padding-right: 16px;
- padding-left: 16px;
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div {
- background: none;
- border-radius: 0;
- padding-right: 0;
- padding-left: 0;
- }
- }
- @media only screen and (min-width: 560px) {
- .main-navigation > div > ul > li {
- margin: 0 4px;
- }
- .main-navigation > div > ul > li:first-of-type > a {
- padding-right: 16px;
- }
- .main-navigation > div > ul > li:last-of-type > a {
- padding-left: 16px;
- }
- .main-navigation > div > ul > li:hover > a,
- .main-navigation > div > ul > li[focus-within] > a,
- .main-navigation > div > ul > li.current-menu-item > a {
- background: #CA2017;
- border-radius: 4px;
- color: #FFFFFF;
- }
- .main-navigation > div > ul > li:hover > a,
- .main-navigation > div > ul > li:focus-within > a,
- .main-navigation > div > ul > li.current-menu-item > a {
- background: #CA2017;
- border-radius: 4px;
- color: #FFFFFF;
- }
- .main-navigation > div > ul > li:hover > ul,
- .main-navigation > div > ul > li[focus-within] > ul,
- .main-navigation > div > ul > li.current-menu-item > ul {
- border-radius: 4px;
- overflow: hidden;
- }
- .main-navigation > div > ul > li:hover > ul,
- .main-navigation > div > ul > li:focus-within > ul,
- .main-navigation > div > ul > li.current-menu-item > ul {
- border-radius: 4px;
- overflow: hidden;
- }
- .main-navigation > div > ul > li:hover li > a,
- .main-navigation > div > ul > li[focus-within] li > a,
- .main-navigation > div > ul > li.current-menu-item li > a {
- background: #222222;
- color: #FFFFFF;
- font-weight: normal;
- }
- .main-navigation > div > ul > li:hover li > a,
- .main-navigation > div > ul > li:focus-within li > a,
- .main-navigation > div > ul > li.current-menu-item li > a {
- background: #222222;
- color: #FFFFFF;
- font-weight: normal;
- }
- .main-navigation > div > ul > li:hover li:hover > a,
- .main-navigation > div > ul > li:hover li.focus > a,
- .main-navigation > div > ul > li:hover li.current-menu-item > a,
- .main-navigation > div > ul > li[focus-within] li:hover > a,
- .main-navigation > div > ul > li[focus-within] li.focus > a,
- .main-navigation > div > ul > li[focus-within] li.current-menu-item > a,
- .main-navigation > div > ul > li.current-menu-item li:hover > a,
- .main-navigation > div > ul > li.current-menu-item li.focus > a,
- .main-navigation > div > ul > li.current-menu-item li.current-menu-item > a {
- background: #CA2017;
- }
- .main-navigation > div > ul > li:hover li:hover > a,
- .main-navigation > div > ul > li:hover li.focus > a,
- .main-navigation > div > ul > li:hover li.current-menu-item > a,
- .main-navigation > div > ul > li:focus-within li:hover > a,
- .main-navigation > div > ul > li:focus-within li.focus > a,
- .main-navigation > div > ul > li:focus-within li.current-menu-item > a,
- .main-navigation > div > ul > li.current-menu-item li:hover > a,
- .main-navigation > div > ul > li.current-menu-item li.focus > a,
- .main-navigation > div > ul > li.current-menu-item li.current-menu-item > a {
- background: #CA2017;
- }
- .main-navigation > div > ul > .menu-item-has-children > a::after {
- opacity: 0.67;
- }
- }
- .site-branding,
- .site-info,
- .main-navigation,
- .entry-header,
- .entry-footer,
- .page-title,
- .author-title,
- .comments-title,
- .comment-reply-title,
- .a8c-posts-list {
- text-align: center;
- }
- .main-navigation > div {
- text-align: right;
- }
- .comment-reply-title {
- display: inherit;
- }
- .comment .comment-reply-title {
- display: flex;
- }
- .main-navigation > div > ul,
- .social-navigation > div > ul,
- .pagination .nav-links {
- justify-content: center;
- }
- .home.page.hide-homepage-title .site-main {
- padding-top: 0;
- }
- .home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-image.alignfull:first-child,
- .home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-cover.alignfull:first-child,
- .home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-media-text.alignfull:first-child,
- .home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-group.has-background.alignfull:first-child {
- margin-top: 0;
- }
- .wp-block-cover .wp-block-cover__inner-container > *,
- .wp-block-coblocks-hero .wp-block-coblocks-hero__box > * {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-cover .wp-block-cover__inner-container > *,
- .wp-block-coblocks-hero .wp-block-coblocks-hero__box > * {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- .wp-block-cover .wp-block-cover__inner-container > *:first-child,
- .wp-block-coblocks-hero .wp-block-coblocks-hero__box > *:first-child {
- margin-top: 0;
- }
- .wp-block-cover .wp-block-cover__inner-container > *:last-child,
- .wp-block-coblocks-hero .wp-block-coblocks-hero__box > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-quote p {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- }
- table td,
- table th,
- .wp-block-table td,
- .wp-block-table th {
- border-color: #DDDDDD;
- }
- .a8c-posts-list-item__excerpt {
- text-align: right;
- }
- .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 {
- text-decoration: none;
- }
- .wp-block-newspack-blocks-homepage-articles article .cat-links,
- .wp-block-newspack-blocks-homepage-articles article .entry-meta {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- }
- .wp-block-newspack-blocks-homepage-articles article .cat-links a,
- .wp-block-newspack-blocks-homepage-articles article .more-link,
- .wp-block-newspack-blocks-homepage-articles article .entry-meta a {
- text-decoration: none;
- }
- .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,
- .wp-block-newspack-blocks-homepage-articles article .more-link:active,
- .wp-block-newspack-blocks-homepage-articles article .more-link:focus,
- .wp-block-newspack-blocks-homepage-articles article .more-link:hover,
- .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
- .wp-block-newspack-blocks-homepage-articles article .entry-meta a:focus,
- .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover {
- text-decoration: underline;
- }
- .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 {
- text-decoration: underline;
- }
- .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
- [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
- text-decoration: underline;
- }
- .entry-header .entry-meta {
- display: none;
- }
- .entry-footer {
- border-top: 1px solid #DDDDDD;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 0.69444rem;
- padding-top: 16px;
- }
- article .entry-header .entry-title,
- .page-title,
- .a8c-posts-list-item__title {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 2.48832rem;
- margin-bottom: 48px;
- }
- article .entry-header .entry-title a,
- .page-title a,
- .a8c-posts-list-item__title a {
- color: inherit;
- }
- article .entry-header .entry-title a:active, article .entry-header .entry-title a:focus, article .entry-header .entry-title a:hover,
- .page-title a:active,
- .page-title a:focus,
- .page-title a:hover,
- .a8c-posts-list-item__title a:active,
- .a8c-posts-list-item__title a:focus,
- .a8c-posts-list-item__title a:hover {
- color: #CA2017;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-title {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- margin-top: 32px;
- }
- .wp-block-newspack-blocks-homepage-articles article .entry-title a {
- color: inherit;
- text-decoration: none;
- }
- .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 {
- color: #CA2017;
- }
- .entry-content {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- }
- .pagination {
- text-align: center;
- }
- .pagination .nav-links > * {
- color: #666666;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 1rem;
- text-transform: uppercase;
- }
- .pagination .nav-links > *.current, .pagination .nav-links > *:active, .pagination .nav-links > *:focus, .pagination .nav-links > *:hover {
- color: #CA2017;
- }
- .pagination svg {
- fill: currentColor;
- }
- .pagination:before {
- background: #DDDDDD;
- height: 1px;
- content: "";
- display: block;
- margin-bottom: 16px;
- }
- @media only screen and (min-width: 560px) {
- .pagination:before {
- margin-bottom: 64px;
- }
- }
- .post-navigation a {
- color: #222222;
- }
- .post-navigation a:active, .post-navigation a:hover, .post-navigation a:focus {
- color: #CA2017;
- }
- .post-navigation .meta-nav {
- color: #666666;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 0.83333rem;
- font-weight: bold;
- text-transform: uppercase;
- }
- .post-navigation .post-title {
- font-size: 1rem;
- }
- .post-navigation:before {
- background: #DDDDDD;
- height: 1px;
- content: "";
- display: block;
- margin-bottom: 16px;
- }
- @media only screen and (min-width: 560px) {
- .post-navigation:before {
- margin-bottom: 64px;
- }
- }
- .comments-area:before {
- background: #DDDDDD;
- height: 1px;
- content: "";
- display: block;
- margin-bottom: 32px;
- }
- @media only screen and (min-width: 560px) {
- .comments-area:before {
- margin-bottom: 64px;
- }
- }
- .comments-area .comment-list {
- border-bottom: 1px solid #FAFAFA;
- }
- .comments-area .comment-list > li {
- border-top: 1px solid #FAFAFA;
- }
- .comments-area .children > li {
- border-top: 1px solid #FAFAFA;
- }
- .comments-title,
- .comment-reply-title {
- font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
- font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
- font-size: 1.728rem;
- }
- .comment-meta .comment-metadata {
- color: #666666;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- }
- .comment-meta .comment-metadata a {
- color: inherit;
- }
- .comment-meta .comment-metadata a:active,
- .comment-meta .comment-metadata a:focus,
- .comment-meta .comment-metadata a:hover {
- color: #CA2017;
- }
- .comment-navigation a {
- color: #666666;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 0.83333rem;
- text-transform: uppercase;
- }
- .comment-navigation a:active, .comment-navigation a:focus, .comment-navigation a:hover {
- color: #CA2017;
- }
- .comments-title + .comment-navigation {
- display: none;
- }
- .widget-area {
- font-size: 0.83333rem;
- }
- .widget-area .widget-title,
- .widget-area .widgettitle {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 1rem;
- margin-bottom: 16px;
- text-transform: uppercase;
- }
- .widget-area .widget-title:empty,
- .widget-area .widgettitle:empty {
- display: none;
- }
- @media only screen and (min-width: 560px) {
- .widget-area {
- padding-top: 32px;
- }
- }
- @media only screen and (min-width: 772px) {
- .widget-area {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .widget-area > *:nth-child(2) {
- margin-top: 0;
- }
- .widget-area .widget {
- width: calc(50% - 16px);
- }
- }
- .widget_calendar caption,
- .widget_calendar caption {
- font-weight: bold;
- }
- .widget_calendar td,
- .widget_calendar th,
- .widget_calendar td,
- .widget_calendar th {
- text-align: center;
- }
- .widget_archive ul,
- .widget_categories ul,
- .widget_links ul,
- .widget_meta ul,
- .widget_nav_menu ul,
- .widget_pages ul,
- .widget_recent_comments ul,
- .widget_recent_entries ul,
- .widget_rss ul,
- .widget_rss_links ul,
- .widget_top-posts ul,
- .widget_authors ul,
- .widget_jp_blogs_i_follow ul,
- .widget_top-click ul,
- .widget_upcoming_events_widget ul {
- border-bottom: 1px solid #FAFAFA;
- list-style: none;
- padding-right: 0;
- }
- .widget_archive li,
- .widget_categories li,
- .widget_links li,
- .widget_meta li,
- .widget_nav_menu li,
- .widget_pages li,
- .widget_recent_comments li,
- .widget_recent_entries li,
- .widget_rss li,
- .widget_rss_links li,
- .widget_top-posts li,
- .widget_authors li,
- .widget_jp_blogs_i_follow li,
- .widget_top-click li,
- .widget_upcoming_events_widget li {
- border-top: 1px solid #FAFAFA;
- padding: 8px 0;
- }
- .widget_categories .children,
- .widget_nav_menu .sub-menu,
- .widget_pages .children {
- border-bottom: 0;
- margin-bottom: -8px;
- margin-top: 8px;
- padding-right: 16px;
- }
- .widget_recent_entries .post-date {
- display: block;
- }
- .widget_rss cite,
- .widget_rss .rssSummary,
- .widget_rss .rss-date {
- display: block;
- }
- .widget_search input[type="search"] {
- display: block;
- margin-bottom: 8px;
- width: 100%;
- }
- /**
- * Search block
- */
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
- border-radius: 4px;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__input {
- background: transparent;
- }
- .wp-block-search .wp-block-search__input {
- margin-left: calc( .1 * 24px);
- border-radius: 4px;
- }
|