style.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Varia
  4. Theme URI: https://github.com/Automattic/themes/tree/master/varia
  5. Author: Automattic
  6. Author URI: https://automattic.com/
  7. Description: A variable-based design system for WordPress sites built with Gutenberg.
  8. Requires at least: WordPress 4.9.6
  9. Version: 1.3.1
  10. License: GNU General Public License v2 or later
  11. License URI: LICENSE
  12. Text Domain: varia
  13. 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, full-site-editing, jetpack-global-styles
  14. This theme, like WordPress, is licensed under the GPL.
  15. Use it to make something cool, have fun, and share what you've learned with others.
  16. Varia is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
  17. Underscores is distributed under the terms of the GNU GPL v2 or later.
  18. Normalizing styles have been helped along thanks to the fine work of
  19. Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
  20. */
  21. /**
  22. * Abstracts
  23. * - Mixins, variables and functions
  24. */
  25. /**
  26. * Abstracts
  27. * - Mixins, variables and functions
  28. */
  29. /* Sass Functions go here */
  30. /**
  31. * Map deep get
  32. * @author Hugo Giraudel
  33. * @access public
  34. * @param {Map} $map - Map
  35. * @param {Arglist} $keys - Key chain
  36. * @return {*} - Desired value
  37. *
  38. * Example:
  39. * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
  40. */
  41. /**
  42. * Deep set function to set a value in nested maps
  43. * @author Hugo Giraudel
  44. * @access public
  45. * @param {Map} $map - Map
  46. * @param {List} $keys - Key chaine
  47. * @param {*} $value - Value to assign
  48. * @return {Map}
  49. *
  50. * Example:
  51. * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
  52. */
  53. /**
  54. * jQuery-style extend function
  55. * - Child themes can use this function to `reset` the values in
  56. * config maps without editing the `master` Sass files.
  57. * - src: https://www.sitepoint.com/extra-map-functions-sass/
  58. * - About `map-merge()`:
  59. * - - only takes 2 arguments
  60. * - - is not recursive
  61. * @param {Map} $map - first map
  62. * @param {ArgList} $maps - other maps
  63. * @param {Bool} $deep - recursive mode
  64. * @return {Map}
  65. *
  66. * Examples:
  67. $grid-configuration-default: (
  68. 'columns': 12,
  69. 'layouts': (
  70. 'small': 800px,
  71. 'medium': 1000px,
  72. 'large': 1200px,
  73. ),
  74. );
  75. $grid-configuration-custom: (
  76. 'layouts': (
  77. 'large': 1300px,
  78. 'huge': 1500px
  79. ),
  80. );
  81. $grid-configuration-user: (
  82. 'direction': 'ltr',
  83. 'columns': 16,
  84. 'layouts': (
  85. 'large': 1300px,
  86. 'huge': 1500px
  87. ),
  88. );
  89. // $deep: false
  90. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
  91. // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
  92. // $deep: true
  93. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
  94. // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
  95. */
  96. /**
  97. * Button
  98. */
  99. /**
  100. * Cover
  101. */
  102. /**
  103. * Heading
  104. */
  105. /**
  106. * List
  107. */
  108. /**
  109. * Pullquote
  110. */
  111. /**
  112. * Quote
  113. */
  114. /**
  115. * Separator
  116. */
  117. /**
  118. * Responsive breakpoints
  119. * - breakpoints values are defined in _config-global.scss
  120. */
  121. /**
  122. * Align wide widths
  123. * - Sets .alignwide widths
  124. */
  125. /**
  126. * Crop Text Boundry
  127. * - Sets a fixed-width on content within alignwide and alignfull blocks
  128. */
  129. /**
  130. * Add font-family using CSS variables.
  131. * It also adds the proper fallback for browsers without support.
  132. */
  133. /**
  134. * Base
  135. * - Reset the browser
  136. */
  137. /**
  138. * Base
  139. * - Reset the browser
  140. */
  141. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  142. /* Document
  143. ========================================================================== */
  144. /**
  145. * 1. Correct the line height in all browsers.
  146. * 2. Prevent adjustments of font size after orientation changes in iOS.
  147. */
  148. html {
  149. line-height: 1.15;
  150. /* 1 */
  151. -webkit-text-size-adjust: 100%;
  152. /* 2 */
  153. }
  154. /* Sections
  155. ========================================================================== */
  156. /**
  157. * Remove the margin in all browsers.
  158. */
  159. body {
  160. margin: 0;
  161. }
  162. /**
  163. * Render the `main` element consistently in IE.
  164. */
  165. main {
  166. display: block;
  167. }
  168. /**
  169. * Correct the font size and margin on `h1` elements within `section` and
  170. * `article` contexts in Chrome, Firefox, and Safari.
  171. */
  172. h1 {
  173. font-size: 2em;
  174. margin: 0.67em 0;
  175. }
  176. /* Grouping content
  177. ========================================================================== */
  178. /**
  179. * 1. Add the correct box sizing in Firefox.
  180. * 2. Show the overflow in Edge and IE.
  181. */
  182. hr {
  183. box-sizing: content-box;
  184. /* 1 */
  185. height: 0;
  186. /* 1 */
  187. overflow: visible;
  188. /* 2 */
  189. }
  190. /**
  191. * 1. Correct the inheritance and scaling of font size in all browsers.
  192. * 2. Correct the odd `em` font sizing in all browsers.
  193. */
  194. pre {
  195. font-family: monospace, monospace;
  196. /* 1 */
  197. font-size: 1em;
  198. /* 2 */
  199. overflow: scroll;
  200. }
  201. /* Text-level semantics
  202. ========================================================================== */
  203. /**
  204. * Remove the gray background on active links in IE 10.
  205. */
  206. a {
  207. background-color: transparent;
  208. }
  209. /**
  210. * 1. Remove the bottom border in Chrome 57-
  211. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  212. */
  213. abbr[title] {
  214. border-bottom: none;
  215. /* 1 */
  216. text-decoration: underline;
  217. /* 2 */
  218. text-decoration: underline dotted;
  219. /* 2 */
  220. }
  221. /**
  222. * Add the correct font weight in Chrome, Edge, and Safari.
  223. */
  224. b,
  225. strong {
  226. font-weight: bolder;
  227. }
  228. /**
  229. * 1. Correct the inheritance and scaling of font size in all browsers.
  230. * 2. Correct the odd `em` font sizing in all browsers.
  231. */
  232. code,
  233. kbd,
  234. samp {
  235. font-family: monospace, monospace;
  236. /* 1 */
  237. font-size: 1em;
  238. /* 2 */
  239. }
  240. /**
  241. * Add the correct font size in all browsers.
  242. */
  243. small {
  244. font-size: 80%;
  245. }
  246. /**
  247. * Prevent `sub` and `sup` elements from affecting the line height in
  248. * all browsers.
  249. */
  250. sub,
  251. sup {
  252. font-size: 75%;
  253. line-height: 0;
  254. position: relative;
  255. vertical-align: baseline;
  256. }
  257. sub {
  258. bottom: -0.25em;
  259. }
  260. sup {
  261. top: -0.5em;
  262. }
  263. /* Embedded content
  264. ========================================================================== */
  265. /**
  266. * Remove the border on images inside links in IE 10.
  267. */
  268. img {
  269. border-style: none;
  270. }
  271. /* Forms
  272. ========================================================================== */
  273. /**
  274. * 1. Change the font styles in all browsers.
  275. * 2. Remove the margin in Firefox and Safari.
  276. */
  277. button,
  278. input,
  279. optgroup,
  280. select,
  281. textarea {
  282. font-family: inherit;
  283. /* 1 */
  284. font-size: 100%;
  285. /* 1 */
  286. line-height: 1.15;
  287. /* 1 */
  288. margin: 0;
  289. /* 2 */
  290. }
  291. /**
  292. * Show the overflow in IE.
  293. * 1. Show the overflow in Edge.
  294. */
  295. button,
  296. input {
  297. /* 1 */
  298. overflow: visible;
  299. }
  300. /**
  301. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  302. * 1. Remove the inheritance of text transform in Firefox.
  303. */
  304. button,
  305. select {
  306. /* 1 */
  307. text-transform: none;
  308. }
  309. /**
  310. * Correct the inability to style clickable types in iOS and Safari.
  311. */
  312. button,
  313. [type="button"],
  314. [type="reset"],
  315. [type="submit"] {
  316. -webkit-appearance: button;
  317. }
  318. /**
  319. * Remove the inner border and padding in Firefox.
  320. */
  321. button::-moz-focus-inner,
  322. [type="button"]::-moz-focus-inner,
  323. [type="reset"]::-moz-focus-inner,
  324. [type="submit"]::-moz-focus-inner {
  325. border-style: none;
  326. padding: 0;
  327. }
  328. /**
  329. * Restore the focus styles unset by the previous rule.
  330. */
  331. button:-moz-focusring,
  332. [type="button"]:-moz-focusring,
  333. [type="reset"]:-moz-focusring,
  334. [type="submit"]:-moz-focusring {
  335. outline: 1px dotted ButtonText;
  336. }
  337. /**
  338. * Correct the padding in Firefox.
  339. */
  340. fieldset {
  341. padding: 0.35em 0.75em 0.625em;
  342. }
  343. /**
  344. * 1. Correct the text wrapping in Edge and IE.
  345. * 2. Correct the color inheritance from `fieldset` elements in IE.
  346. * 3. Remove the padding so developers are not caught out when they zero out
  347. * `fieldset` elements in all browsers.
  348. */
  349. legend {
  350. box-sizing: border-box;
  351. /* 1 */
  352. color: inherit;
  353. /* 2 */
  354. display: table;
  355. /* 1 */
  356. max-width: 100%;
  357. /* 1 */
  358. padding: 0;
  359. /* 3 */
  360. white-space: normal;
  361. /* 1 */
  362. }
  363. /**
  364. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  365. */
  366. progress {
  367. vertical-align: baseline;
  368. }
  369. /**
  370. * Remove the default vertical scrollbar in IE 10+.
  371. */
  372. textarea {
  373. overflow: auto;
  374. }
  375. /**
  376. * 1. Add the correct box sizing in IE 10.
  377. * 2. Remove the padding in IE 10.
  378. */
  379. [type="checkbox"],
  380. [type="radio"] {
  381. box-sizing: border-box;
  382. /* 1 */
  383. padding: 0;
  384. /* 2 */
  385. }
  386. /**
  387. * Correct the cursor style of increment and decrement buttons in Chrome.
  388. */
  389. [type="number"]::-webkit-inner-spin-button,
  390. [type="number"]::-webkit-outer-spin-button {
  391. height: auto;
  392. }
  393. /**
  394. * 1. Correct the odd appearance in Chrome and Safari.
  395. * 2. Correct the outline style in Safari.
  396. */
  397. [type="search"] {
  398. -webkit-appearance: textfield;
  399. /* 1 */
  400. outline-offset: -2px;
  401. /* 2 */
  402. }
  403. /**
  404. * Remove the inner padding in Chrome and Safari on macOS.
  405. */
  406. [type="search"]::-webkit-search-decoration {
  407. -webkit-appearance: none;
  408. }
  409. /**
  410. * 1. Correct the inability to style clickable types in iOS and Safari.
  411. * 2. Change font properties to `inherit` in Safari.
  412. */
  413. ::-webkit-file-upload-button {
  414. -webkit-appearance: button;
  415. /* 1 */
  416. font: inherit;
  417. /* 2 */
  418. }
  419. /* Interactive
  420. ========================================================================== */
  421. /*
  422. * Add the correct display in Edge, IE 10+, and Firefox.
  423. */
  424. details {
  425. display: block;
  426. }
  427. /*
  428. * Add the correct display in all browsers.
  429. */
  430. summary {
  431. display: list-item;
  432. }
  433. /* Misc
  434. ========================================================================== */
  435. /**
  436. * Add the correct display in IE 10+.
  437. */
  438. template {
  439. display: none;
  440. }
  441. /**
  442. * Add the correct display in IE 10.
  443. */
  444. [hidden] {
  445. display: none;
  446. }
  447. /**
  448. * Reset specific elements to make them easier to style in other contexts.
  449. */
  450. html,
  451. body,
  452. p,
  453. ol,
  454. ul,
  455. li,
  456. dl,
  457. dt,
  458. dd,
  459. blockquote,
  460. figure,
  461. fieldset,
  462. form,
  463. legend,
  464. textarea,
  465. pre,
  466. iframe,
  467. hr,
  468. h1,
  469. h2,
  470. h3,
  471. h4,
  472. h5,
  473. h6 {
  474. padding: 0;
  475. margin: 0;
  476. -moz-osx-font-smoothing: grayscale;
  477. -webkit-font-smoothing: antialiased;
  478. }
  479. /**
  480. * Apply generic border-box to all elements.
  481. * See:
  482. * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  483. */
  484. /**
  485. * Apply border-box across the entire page.
  486. */
  487. html {
  488. box-sizing: border-box;
  489. }
  490. /**
  491. * Relax the definition a bit, to allow components to override it manually.
  492. */
  493. *, *::before, *::after {
  494. box-sizing: inherit;
  495. }
  496. /**
  497. * HTML resets
  498. */
  499. html {
  500. font-size: 15px;
  501. font-family: serif;
  502. font-family: var(--font-base, serif);
  503. line-height: 1.78;
  504. }
  505. @media only screen and (min-width: 560px) {
  506. html {
  507. font-size: 18px;
  508. }
  509. }
  510. body {
  511. font-size: 1rem;
  512. font-weight: normal;
  513. color: #444444;
  514. text-align: left;
  515. background-color: white;
  516. }
  517. /**
  518. * Links styles
  519. */
  520. a {
  521. color: blue;
  522. }
  523. a:hover {
  524. color: indigo;
  525. }
  526. button,
  527. a {
  528. cursor: pointer;
  529. }
  530. /* Text meant only for screen readers. */
  531. .screen-reader-text {
  532. border: 0;
  533. clip: rect(1px, 1px, 1px, 1px);
  534. clip-path: inset(50%);
  535. height: 1px;
  536. margin: -1px;
  537. overflow: hidden;
  538. padding: 0;
  539. position: absolute !important;
  540. width: 1px;
  541. word-wrap: normal !important;
  542. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  543. }
  544. .screen-reader-text:focus {
  545. background-color: white;
  546. border-radius: 3px;
  547. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  548. clip: auto !important;
  549. clip-path: none;
  550. color: #444444;
  551. display: block;
  552. font-size: 1.2rem;
  553. font-weight: bold;
  554. height: auto;
  555. left: 5px;
  556. line-height: normal;
  557. padding: 15px 23px 14px;
  558. text-decoration: none;
  559. top: 5px;
  560. width: auto;
  561. z-index: 100000;
  562. /* Above WP toolbar. */
  563. }
  564. /* Do not show the outline on the skip link target. */
  565. #content[tabindex="-1"]:focus {
  566. outline: 0;
  567. }
  568. .clear:before,
  569. .clear:after,
  570. .entry-content:before,
  571. .entry-content:after,
  572. .comment-content:before,
  573. .comment-content:after,
  574. .site-header:before,
  575. .site-header:after,
  576. .site-content:before,
  577. .site-content:after,
  578. .site-footer:before,
  579. .site-footer:after {
  580. content: "";
  581. display: table;
  582. table-layout: fixed;
  583. }
  584. .clear:after,
  585. .entry-content:after,
  586. .comment-content:after,
  587. .site-header:after,
  588. .site-content:after,
  589. .site-footer:after {
  590. clear: both;
  591. }
  592. /**
  593. * Measure
  594. * - The width of a line of text, in characters, is known as its measure.
  595. */
  596. header *,
  597. main *,
  598. footer * {
  599. max-width: unset;
  600. }
  601. html,
  602. body,
  603. div,
  604. header,
  605. nav,
  606. article,
  607. figure,
  608. hr,
  609. main,
  610. section,
  611. footer {
  612. max-width: none;
  613. }
  614. ::selection {
  615. background-color: lightblue;
  616. }
  617. ::-moz-selection {
  618. background-color: lightblue;
  619. }
  620. /**
  621. * Layout
  622. * - Structral and responsive styles
  623. */
  624. /**
  625. * Layout
  626. * - Structral and responsive styles
  627. */
  628. /**
  629. * Site Structure
  630. *
  631. * - Set vertical margins and responsive widths on
  632. * top-level wrappers and content wrappers
  633. * - `--global--width-content` is a responsive veriable
  634. * - See: globals/_global-width-responsive.scss
  635. */
  636. /**
  637. * Top Level Wrappers (header, main, footer)
  638. * - Set vertical padding and horizontal margins
  639. */
  640. .site-header,
  641. .site-main,
  642. .site-footer {
  643. padding: 16px 16px;
  644. margin-left: auto;
  645. margin-right: auto;
  646. }
  647. @media only screen and (min-width: 560px) {
  648. .site-header,
  649. .site-main,
  650. .site-footer {
  651. padding-top: 32px;
  652. padding-right: 0;
  653. padding-bottom: 32px;
  654. padding-left: 0;
  655. }
  656. }
  657. /**
  658. * Site-main children wrappers
  659. * - Add double vertical margins here for clearer heirarchy
  660. */
  661. .site-main > * {
  662. margin-top: calc(3 * 32px);
  663. margin-bottom: calc(3 * 32px);
  664. }
  665. .site-main > *:first-child {
  666. margin-top: 0;
  667. }
  668. .site-main > *:last-child {
  669. margin-bottom: 0;
  670. }
  671. /**
  672. * Major content sections (article, author-bio, pagination, comments, etc.)
  673. * - Set a maximum responsive content-width
  674. *
  675. * .responsive-max-width is a group selector replacing the following:
  676. * .site-header,
  677. * .site-main,
  678. * .site-footer
  679. * .entry-header,
  680. * .post-thumbnail,
  681. * .entry-content,
  682. * .entry-footer,
  683. * .author-bio,
  684. * .widget-area
  685. */
  686. /*
  687. * Block & non-gutenberg content wrappers
  688. * - Set margins
  689. */
  690. .entry-header,
  691. .post-thumbnail,
  692. .entry-content,
  693. .entry-footer,
  694. .author-bio,
  695. .widget-area {
  696. margin-top: 32px;
  697. margin-right: auto;
  698. margin-bottom: 32px;
  699. margin-left: auto;
  700. }
  701. /*
  702. * Block & non-gutenberg content wrapper children
  703. * - Sets spacing-vertical margin logic
  704. */
  705. .site-footer > *,
  706. .site-main > article > *,
  707. .site-main > .not-found > *,
  708. .entry-content > *,
  709. [class*="inner-container"] > *,
  710. .widget-area > * {
  711. margin-top: 21.312px;
  712. margin-bottom: 21.312px;
  713. }
  714. @media only screen and (min-width: 560px) {
  715. .site-footer > *,
  716. .site-main > article > *,
  717. .site-main > .not-found > *,
  718. .entry-content > *,
  719. [class*="inner-container"] > *,
  720. .widget-area > * {
  721. margin-top: 32px;
  722. margin-bottom: 32px;
  723. }
  724. }
  725. .site-footer > *:first-child,
  726. .site-main > article > *:first-child,
  727. .site-main > .not-found > *:first-child,
  728. .entry-content > *:first-child,
  729. [class*="inner-container"] > *:first-child,
  730. .widget-area > *:first-child {
  731. margin-top: 0;
  732. }
  733. .site-footer > *:last-child,
  734. .site-main > article > *:last-child,
  735. .site-main > .not-found > *:last-child,
  736. .entry-content > *:last-child,
  737. [class*="inner-container"] > *:last-child,
  738. .widget-area > *:last-child {
  739. margin-bottom: 0;
  740. }
  741. /*
  742. * Block & non-gutenberg content wrapper children
  743. * - Sets spacing-unit margins
  744. */
  745. .site-header > *,
  746. .entry-header > *,
  747. .post-thumbnail > *,
  748. .page-content > *,
  749. .comment-content > *,
  750. .author-bio > * {
  751. margin-top: 16px;
  752. margin-bottom: 16px;
  753. }
  754. .site-header > *:first-child,
  755. .entry-header > *:first-child,
  756. .post-thumbnail > *:first-child,
  757. .page-content > *:first-child,
  758. .comment-content > *:first-child,
  759. .author-bio > *:first-child {
  760. margin-top: 0;
  761. }
  762. .site-header > *:last-child,
  763. .entry-header > *:last-child,
  764. .post-thumbnail > *:last-child,
  765. .page-content > *:last-child,
  766. .comment-content > *:last-child,
  767. .author-bio > *:last-child {
  768. margin-bottom: 0;
  769. }
  770. /*
  771. * .entry-content children specific controls
  772. * - Adds special margin overrides for alignment utility classes
  773. */
  774. .entry-content > * {
  775. /* Reset alignleft and alignright margins after alignfull */
  776. }
  777. .entry-content > *.alignleft, .entry-content > *.alignright,
  778. .entry-content > *.alignleft:first-child + *,
  779. .entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
  780. margin-top: 0;
  781. }
  782. .entry-content > *:last-child, .entry-content > *.alignfull {
  783. margin-bottom: 0;
  784. }
  785. .entry-content > *.alignfull + .alignleft,
  786. .entry-content > *.alignfull + .alignright {
  787. margin-top: 32px;
  788. }
  789. /**
  790. * Elements
  791. * - Styles for basic HTML elemants
  792. */
  793. /**
  794. * Elements
  795. * - Styles for basic HTML elemants
  796. */
  797. blockquote {
  798. padding-left: 16px;
  799. }
  800. blockquote p {
  801. font-size: 1.728rem;
  802. letter-spacing: normal;
  803. line-height: 1.125;
  804. }
  805. blockquote cite,
  806. blockquote footer {
  807. font-size: 0.83333rem;
  808. letter-spacing: normal;
  809. }
  810. blockquote > * {
  811. margin-top: 16px;
  812. margin-bottom: 16px;
  813. }
  814. blockquote > *:first-child {
  815. margin-top: 0;
  816. }
  817. blockquote > *:last-child {
  818. margin-bottom: 0;
  819. }
  820. blockquote.alignleft, blockquote.alignright {
  821. padding-left: inherit;
  822. }
  823. blockquote.alignleft p, blockquote.alignright p {
  824. font-size: 1.44rem;
  825. max-width: inherit;
  826. width: inherit;
  827. }
  828. blockquote.alignleft cite,
  829. blockquote.alignleft footer, blockquote.alignright cite,
  830. blockquote.alignright footer {
  831. font-size: 0.69444rem;
  832. letter-spacing: normal;
  833. }
  834. input[type="text"],
  835. input[type="email"],
  836. input[type="url"],
  837. input[type="password"],
  838. input[type="search"],
  839. input[type="number"],
  840. input[type="tel"],
  841. input[type="range"],
  842. input[type="date"],
  843. input[type="month"],
  844. input[type="week"],
  845. input[type="time"],
  846. input[type="datetime"],
  847. input[type="datetime-local"],
  848. input[type="color"],
  849. textarea {
  850. color: #444444;
  851. border: 1px solid #DDDDDD;
  852. border-radius: 3px;
  853. padding: 16px;
  854. }
  855. input[type="text"]:focus,
  856. input[type="email"]:focus,
  857. input[type="url"]:focus,
  858. input[type="password"]:focus,
  859. input[type="search"]:focus,
  860. input[type="number"]:focus,
  861. input[type="tel"]:focus,
  862. input[type="range"]:focus,
  863. input[type="date"]:focus,
  864. input[type="month"]:focus,
  865. input[type="week"]:focus,
  866. input[type="time"]:focus,
  867. input[type="datetime"]:focus,
  868. input[type="datetime-local"]:focus,
  869. input[type="color"]:focus,
  870. textarea:focus {
  871. color: #444444;
  872. border-color: indigo;
  873. }
  874. select {
  875. border: 1px solid #DDDDDD;
  876. }
  877. textarea {
  878. width: 100%;
  879. }
  880. input[type=checkbox] + label {
  881. display: inline;
  882. margin-left: 0.5em;
  883. margin-right: 2em;
  884. line-height: 1em;
  885. }
  886. figcaption {
  887. color: #767676;
  888. font-size: 0.69444rem;
  889. margin-top: calc(0.5 * 16px);
  890. margin-bottom: 16px;
  891. text-align: center;
  892. }
  893. .alignleft figcaption,
  894. .alignright figcaption {
  895. margin-bottom: 0;
  896. }
  897. /* WP Smiley */
  898. .page-content .wp-smiley,
  899. .entry-content .wp-smiley,
  900. .comment-content .wp-smiley {
  901. border: none;
  902. margin-bottom: 0;
  903. margin-top: 0;
  904. padding: 0;
  905. }
  906. /* Make sure embeds and iframes fit their containers. */
  907. embed,
  908. iframe,
  909. object {
  910. max-width: 100%;
  911. }
  912. /**
  913. * Blocks
  914. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  915. * spacing with CSS-variables overrides
  916. * - In the future the Block styles may get compiled to individual .css
  917. * files and conditionally loaded
  918. */
  919. /**
  920. * Blocks
  921. * - These styles replace key Gutenberg Block styles with font, color, and
  922. * spacing with CSS-variables overrides
  923. * - In the future the Block styles may get compiled to individual .css
  924. * files and conditionally loaded
  925. */
  926. .wp-block-audio {
  927. min-width: inherit;
  928. }
  929. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  930. min-width: 300px;
  931. }
  932. /**
  933. * Placeholder button style
  934. * - Since buttons appear in various blocks,
  935. * let’s use a placeholder to keep them all
  936. * in-sync
  937. */
  938. button,
  939. .button,
  940. input[type="submit"],
  941. .wp-block-button__link,
  942. .wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  943. line-height: 1;
  944. color: white;
  945. cursor: pointer;
  946. font-weight: bold;
  947. font-family: sans-serif;
  948. font-family: var(--font-headings, sans-serif);
  949. font-size: 1.2rem;
  950. background-color: blue;
  951. border-radius: 9px;
  952. border-width: 0;
  953. padding: 16px 16px;
  954. }
  955. button:before,
  956. .button:before,
  957. input[type="submit"]:before,
  958. .wp-block-button__link:before,
  959. .wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button:after,
  960. .button:after,
  961. input[type="submit"]:after,
  962. .wp-block-button__link:after,
  963. .wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  964. content: '';
  965. display: block;
  966. height: 0;
  967. width: 0;
  968. }
  969. button:before,
  970. .button:before,
  971. input[type="submit"]:before,
  972. .wp-block-button__link:before,
  973. .wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  974. margin-bottom: -0.12em;
  975. }
  976. button:after,
  977. .button:after,
  978. input[type="submit"]:after,
  979. .wp-block-button__link:after,
  980. .wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  981. margin-top: -0.11em;
  982. }
  983. button:hover,
  984. .button:hover,
  985. input:hover[type="submit"],
  986. .wp-block-button__link:hover,
  987. .wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
  988. .button:focus,
  989. input:focus[type="submit"],
  990. .wp-block-button__link:focus,
  991. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
  992. .has-focus.button,
  993. input.has-focus[type="submit"],
  994. .has-focus.wp-block-button__link,
  995. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  996. color: white;
  997. background-color: indigo;
  998. }
  999. /**
  1000. * Block Options
  1001. */
  1002. .wp-block-button.is-style-outline .wp-block-button__link {
  1003. color: blue;
  1004. background: transparent;
  1005. border: 2px solid currentcolor;
  1006. padding: 14px 16px;
  1007. }
  1008. .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 {
  1009. color: indigo;
  1010. }
  1011. .wp-block-button.is-style-squared .wp-block-button__link {
  1012. border-radius: 0;
  1013. }
  1014. .wp-block-code {
  1015. color: #444444;
  1016. font-size: 0.83333rem;
  1017. padding: 16px;
  1018. border-color: #DDDDDD;
  1019. }
  1020. .wp-block-code pre {
  1021. color: #444444;
  1022. }
  1023. .wp-block-columns {
  1024. /**
  1025. * Block Options
  1026. */
  1027. }
  1028. .wp-block-columns .wp-block-column > * {
  1029. margin-top: 21.312px;
  1030. margin-bottom: 21.312px;
  1031. }
  1032. @media only screen and (min-width: 560px) {
  1033. .wp-block-columns .wp-block-column > * {
  1034. margin-top: 32px;
  1035. margin-bottom: 32px;
  1036. }
  1037. }
  1038. .wp-block-columns .wp-block-column > *:first-child {
  1039. margin-top: 0;
  1040. }
  1041. .wp-block-columns .wp-block-column > *:last-child {
  1042. margin-bottom: 0;
  1043. }
  1044. .wp-block-columns .wp-block-column:last-child {
  1045. margin-bottom: 0;
  1046. }
  1047. .wp-block-columns .wp-block-column:not(:last-child) {
  1048. margin-bottom: 21.312px;
  1049. }
  1050. @media only screen and (min-width: 560px) {
  1051. .wp-block-columns .wp-block-column:not(:last-child) {
  1052. margin-bottom: 32px;
  1053. }
  1054. }
  1055. @media only screen and (min-width: 782px) {
  1056. .wp-block-columns .wp-block-column:not(:last-child) {
  1057. /* Resetting margins to match _block-container.scss */
  1058. margin-bottom: 0;
  1059. }
  1060. }
  1061. .wp-block-columns.alignfull {
  1062. padding-left: 16px;
  1063. padding-right: 16px;
  1064. }
  1065. .wp-block-columns.alignfull:not(:first-child) {
  1066. margin-top: 32px;
  1067. }
  1068. .wp-block-columns.alignfull:not(:last-child) {
  1069. margin-bottom: 32px;
  1070. }
  1071. .wp-block-cover,
  1072. .wp-block-cover-image {
  1073. background-color: black;
  1074. min-height: 480px;
  1075. margin: inherit;
  1076. /* default & custom background-color */
  1077. /* Treating H2 separately to account for legacy /core styles */
  1078. /**
  1079. * Block Options
  1080. */
  1081. }
  1082. .wp-block-cover .wp-block-cover__inner-container,
  1083. .wp-block-cover .wp-block-cover-image-text,
  1084. .wp-block-cover .wp-block-cover-text,
  1085. .wp-block-cover-image .wp-block-cover__inner-container,
  1086. .wp-block-cover-image .wp-block-cover-image-text,
  1087. .wp-block-cover-image .wp-block-cover-text {
  1088. color: currentColor;
  1089. margin-top: 32px;
  1090. margin-bottom: 32px;
  1091. }
  1092. .wp-block-cover .wp-block-cover__inner-container a,
  1093. .wp-block-cover .wp-block-cover-image-text a,
  1094. .wp-block-cover .wp-block-cover-text a,
  1095. .wp-block-cover-image .wp-block-cover__inner-container a,
  1096. .wp-block-cover-image .wp-block-cover-image-text a,
  1097. .wp-block-cover-image .wp-block-cover-text a {
  1098. color: currentColor;
  1099. }
  1100. .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
  1101. .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
  1102. .wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
  1103. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
  1104. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
  1105. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text {
  1106. color: white;
  1107. }
  1108. .wp-block-cover h2,
  1109. .wp-block-cover-image h2 {
  1110. font-size: 2.48832rem;
  1111. letter-spacing: normal;
  1112. line-height: 1.125;
  1113. max-width: inherit;
  1114. text-align: inherit;
  1115. padding: 0;
  1116. }
  1117. .wp-block-cover h2.has-text-align-left,
  1118. .wp-block-cover-image h2.has-text-align-left {
  1119. text-align: left;
  1120. }
  1121. .wp-block-cover h2.has-text-align-center,
  1122. .wp-block-cover-image h2.has-text-align-center {
  1123. text-align: center;
  1124. }
  1125. .wp-block-cover h2.has-text-align-right,
  1126. .wp-block-cover-image h2.has-text-align-right {
  1127. text-align: right;
  1128. }
  1129. .wp-block-cover .wp-block-cover__inner-container,
  1130. .wp-block-cover-image .wp-block-cover__inner-container {
  1131. width: calc(100% - 64px);
  1132. }
  1133. .wp-block-cover .wp-block-cover__inner-container > *,
  1134. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1135. margin-top: 21.312px;
  1136. margin-bottom: 21.312px;
  1137. }
  1138. @media only screen and (min-width: 560px) {
  1139. .wp-block-cover .wp-block-cover__inner-container > *,
  1140. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1141. margin-top: 32px;
  1142. margin-bottom: 32px;
  1143. }
  1144. }
  1145. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1146. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1147. margin-top: 0;
  1148. }
  1149. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1150. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1151. margin-bottom: 0;
  1152. }
  1153. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1154. .wp-block-cover-image.alignleft,
  1155. .wp-block-cover-image.alignright {
  1156. margin-top: 0;
  1157. }
  1158. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1159. .wp-block-cover-image.alignleft > *,
  1160. .wp-block-cover-image.alignright > * {
  1161. margin-top: calc(2 * 32px);
  1162. margin-bottom: calc(2 * 32px);
  1163. padding-left: 16px;
  1164. padding-right: 16px;
  1165. width: 100%;
  1166. }
  1167. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1168. .wp-block-cover-image.has-left-content,
  1169. .wp-block-cover-image.has-right-content {
  1170. justify-content: center;
  1171. }
  1172. .wp-block-file .wp-block-file__button {
  1173. background-color: blue;
  1174. color: white;
  1175. font-size: 0.83333rem;
  1176. margin-left: 16px;
  1177. margin-right: 16px;
  1178. }
  1179. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1180. display: inherit;
  1181. }
  1182. .wp-block-file a.wp-block-file__button:active,
  1183. .wp-block-file a.wp-block-file__button:focus,
  1184. .wp-block-file a.wp-block-file__button:hover,
  1185. .wp-block-file a.wp-block-file__button:visited {
  1186. color: white;
  1187. opacity: .85;
  1188. }
  1189. .wp-block-gallery {
  1190. margin: 0;
  1191. }
  1192. .wp-block-gallery .blocks-gallery-image figcaption,
  1193. .wp-block-gallery .blocks-gallery-item figcaption {
  1194. margin: 0;
  1195. color: white;
  1196. font-size: 0.69444rem;
  1197. }
  1198. .wp-block-gallery .blocks-gallery-image,
  1199. .wp-block-gallery .blocks-gallery-item {
  1200. width: calc( (100% - 16px) / 2);
  1201. }
  1202. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1203. max-width: 50%;
  1204. }
  1205. .wp-block-group .wp-block-group__inner-container {
  1206. margin-left: auto;
  1207. margin-right: auto;
  1208. }
  1209. .wp-block-group .wp-block-group__inner-container > * {
  1210. margin-top: 21.312px;
  1211. margin-bottom: 21.312px;
  1212. }
  1213. @media only screen and (min-width: 560px) {
  1214. .wp-block-group .wp-block-group__inner-container > * {
  1215. margin-top: 32px;
  1216. margin-bottom: 32px;
  1217. }
  1218. }
  1219. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1220. margin-top: 0;
  1221. }
  1222. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1223. margin-bottom: 0;
  1224. }
  1225. .wp-block-group.has-background {
  1226. padding: 21.312px;
  1227. }
  1228. @media only screen and (min-width: 560px) {
  1229. .wp-block-group.has-background {
  1230. padding: 32px;
  1231. }
  1232. }
  1233. h1, .h1,
  1234. h2, .h2,
  1235. h3, .h3,
  1236. h4, .h4,
  1237. h5, .h5,
  1238. h6, .h6 {
  1239. font-family: sans-serif;
  1240. font-family: var(--font-headings, sans-serif);
  1241. font-weight: bold;
  1242. clear: both;
  1243. }
  1244. h1, .h1 {
  1245. font-size: 2.98598rem;
  1246. letter-spacing: normal;
  1247. line-height: 1.125;
  1248. }
  1249. h2, .h2 {
  1250. font-size: 2.48832rem;
  1251. letter-spacing: normal;
  1252. line-height: 1.125;
  1253. }
  1254. h3, .h3 {
  1255. font-size: 2.0736rem;
  1256. letter-spacing: normal;
  1257. line-height: 1.125;
  1258. }
  1259. h4, .h4 {
  1260. font-size: 1.728rem;
  1261. letter-spacing: normal;
  1262. line-height: 1.125;
  1263. }
  1264. h5, .h5 {
  1265. font-size: 1.44rem;
  1266. letter-spacing: normal;
  1267. line-height: 1.125;
  1268. }
  1269. h6, .h6 {
  1270. font-size: 1.2rem;
  1271. letter-spacing: normal;
  1272. line-height: 1.125;
  1273. }
  1274. .wp-block-image {
  1275. text-align: center;
  1276. }
  1277. .wp-block-image figcaption {
  1278. color: #767676;
  1279. font-size: 0.69444rem;
  1280. margin-top: calc(0.5 * 16px);
  1281. margin-bottom: 16px;
  1282. text-align: center;
  1283. }
  1284. .entry-content > *[class="wp-block-image"],
  1285. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1286. margin-top: 0;
  1287. margin-bottom: 0;
  1288. }
  1289. .entry-content > *[class="wp-block-image"] + *,
  1290. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1291. margin-top: 0;
  1292. }
  1293. img {
  1294. height: auto;
  1295. max-width: 100%;
  1296. vertical-align: middle;
  1297. }
  1298. .wp-block-latest-comments {
  1299. padding-left: 0;
  1300. }
  1301. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1302. font-size: 0.83333rem;
  1303. line-height: 1.78;
  1304. /* Vertical margins logic */
  1305. margin-top: 32px;
  1306. margin-bottom: 32px;
  1307. }
  1308. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1309. margin-top: 0;
  1310. }
  1311. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1312. margin-bottom: 0;
  1313. }
  1314. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1315. font-family: sans-serif;
  1316. font-family: var(--font-headings, sans-serif);
  1317. }
  1318. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1319. color: #767676;
  1320. font-size: 0.83333rem;
  1321. }
  1322. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1323. font-size: 0.83333rem;
  1324. line-height: 1.78;
  1325. margin: 0;
  1326. }
  1327. .wp-block-latest-posts {
  1328. padding-left: 0;
  1329. }
  1330. .wp-block-latest-posts > li {
  1331. /* Vertical margins logic */
  1332. margin-top: 32px;
  1333. margin-bottom: 32px;
  1334. }
  1335. .wp-block-latest-posts > li:first-child {
  1336. margin-top: 0;
  1337. }
  1338. .wp-block-latest-posts > li:last-child {
  1339. margin-bottom: 0;
  1340. }
  1341. .wp-block-latest-posts > li > a {
  1342. font-family: sans-serif;
  1343. font-family: var(--font-headings, sans-serif);
  1344. font-size: 1.728rem;
  1345. font-weight: bold;
  1346. line-height: 1.125;
  1347. }
  1348. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1349. color: #767676;
  1350. font-size: 0.69444rem;
  1351. line-height: 1.78;
  1352. }
  1353. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1354. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1355. color: currentColor;
  1356. }
  1357. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1358. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1359. font-size: 0.83333rem;
  1360. line-height: 1.78;
  1361. margin: 0;
  1362. }
  1363. .wp-block-latest-posts.alignfull {
  1364. padding-left: 16px;
  1365. padding-right: 16px;
  1366. }
  1367. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1368. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1369. padding-left: 0;
  1370. padding-right: 0;
  1371. }
  1372. .gallery-item {
  1373. display: inline-block;
  1374. text-align: center;
  1375. vertical-align: top;
  1376. width: 100%;
  1377. }
  1378. .gallery-item a {
  1379. display: block;
  1380. }
  1381. .gallery-columns-2 .gallery-item {
  1382. max-width: 50%;
  1383. }
  1384. .gallery-columns-3 .gallery-item {
  1385. max-width: 33.33%;
  1386. }
  1387. .gallery-columns-4 .gallery-item {
  1388. max-width: 25%;
  1389. }
  1390. .gallery-columns-5 .gallery-item {
  1391. max-width: 20%;
  1392. }
  1393. .gallery-columns-6 .gallery-item {
  1394. max-width: 16.66%;
  1395. }
  1396. .gallery-columns-7 .gallery-item {
  1397. max-width: 14.28%;
  1398. }
  1399. .gallery-columns-8 .gallery-item {
  1400. max-width: 12.5%;
  1401. }
  1402. .gallery-columns-9 .gallery-item {
  1403. max-width: 11.11%;
  1404. }
  1405. .gallery-caption {
  1406. display: block;
  1407. }
  1408. ul,
  1409. ol {
  1410. font-family: serif;
  1411. font-family: var(--font-base, serif);
  1412. margin: 0;
  1413. padding-left: 32px;
  1414. }
  1415. ul {
  1416. list-style-type: disc;
  1417. }
  1418. ol {
  1419. list-style-type: decimal;
  1420. }
  1421. dt {
  1422. font-family: sans-serif;
  1423. font-family: var(--font-headings, sans-serif);
  1424. font-weight: bold;
  1425. }
  1426. dd {
  1427. margin: 0;
  1428. padding-left: 32px;
  1429. }
  1430. .wp-block-media-text {
  1431. /**
  1432. * Block Options
  1433. */
  1434. }
  1435. .wp-block-media-text .wp-block-media-text__content {
  1436. padding: 16px;
  1437. }
  1438. @media only screen and (min-width: 640px) {
  1439. .wp-block-media-text .wp-block-media-text__content {
  1440. padding: 32px;
  1441. }
  1442. }
  1443. .wp-block-media-text .wp-block-media-text__content > * {
  1444. margin-top: 21.312px;
  1445. margin-bottom: 21.312px;
  1446. }
  1447. @media only screen and (min-width: 560px) {
  1448. .wp-block-media-text .wp-block-media-text__content > * {
  1449. margin-top: 32px;
  1450. margin-bottom: 32px;
  1451. }
  1452. }
  1453. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1454. margin-top: 0;
  1455. }
  1456. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1457. margin-bottom: 0;
  1458. }
  1459. .wp-block-media-text[class*="background-color"]:not(.has-background-background-color) .wp-block-media-text__content a, .wp-block-media-text[style*="background-color"] .wp-block-media-text__content a {
  1460. color: currentColor;
  1461. }
  1462. @media only screen and (min-width: 560px) {
  1463. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1464. padding-top: 32px;
  1465. padding-bottom: 32px;
  1466. }
  1467. }
  1468. p.has-background {
  1469. padding: 16px 16px;
  1470. }
  1471. .a8c-posts-list__listing {
  1472. list-style: none;
  1473. margin: 0;
  1474. padding: 0;
  1475. }
  1476. .a8c-posts-list__listing:not(:last-child) {
  1477. margin-bottom: calc(3 * 32px);
  1478. }
  1479. .a8c-posts-list-item__featured span {
  1480. color: white;
  1481. background-color: blue;
  1482. font-family: sans-serif;
  1483. font-family: var(--font-headings, sans-serif);
  1484. font-weight: bold;
  1485. font-size: 0.83333rem;
  1486. line-height: 1;
  1487. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1488. }
  1489. .a8c-posts-list__item {
  1490. display: block;
  1491. /* Vertical margins logic between posts */
  1492. margin-top: calc(3 * 32px);
  1493. margin-bottom: calc(3 * 32px);
  1494. }
  1495. .a8c-posts-list__item:first-child {
  1496. margin-top: 0;
  1497. }
  1498. .a8c-posts-list__item:last-child {
  1499. margin-bottom: 0;
  1500. }
  1501. .a8c-posts-list__item .entry > * {
  1502. /* Vertical margins logic between post details */
  1503. margin-top: 16px;
  1504. margin-bottom: 16px;
  1505. }
  1506. .a8c-posts-list__item .entry > *:first-child {
  1507. margin-top: 0;
  1508. }
  1509. .a8c-posts-list__item .entry > *:last-child {
  1510. margin-bottom: 0;
  1511. }
  1512. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1513. color: #767676;
  1514. font-size: 0.83333rem;
  1515. }
  1516. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1517. color: currentColor;
  1518. }
  1519. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1520. color: indigo;
  1521. }
  1522. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1523. margin-left: 16px;
  1524. }
  1525. .a8c-posts-list__view-all {
  1526. display: inline-block;
  1527. }
  1528. .wp-block-pullquote {
  1529. padding: calc( 3 * 16px) 0;
  1530. margin-left: 0;
  1531. margin-right: 0;
  1532. text-align: center;
  1533. border-top-color: #DDDDDD;
  1534. border-top-width: 4px;
  1535. border-bottom-color: #DDDDDD;
  1536. border-bottom-width: 4px;
  1537. color: #444444;
  1538. /**
  1539. * Block Options
  1540. */
  1541. }
  1542. .wp-block-pullquote p {
  1543. font-family: sans-serif;
  1544. font-family: var(--font-headings, sans-serif);
  1545. font-size: 1.728rem;
  1546. letter-spacing: normal;
  1547. line-height: 1.125;
  1548. }
  1549. .wp-block-pullquote a {
  1550. color: currentColor;
  1551. }
  1552. .wp-block-pullquote .wp-block-pullquote__citation,
  1553. .wp-block-pullquote cite,
  1554. .wp-block-pullquote footer {
  1555. color: #767676;
  1556. font-size: 0.83333rem;
  1557. letter-spacing: normal;
  1558. display: block;
  1559. }
  1560. .wp-block-pullquote:not(.is-style-solid-color) {
  1561. background: none;
  1562. }
  1563. .wp-block-pullquote:not(.is-style-solid-color) blockquote {
  1564. padding-left: 0;
  1565. }
  1566. .wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
  1567. text-align: center;
  1568. }
  1569. .wp-block-pullquote.is-style-solid-color {
  1570. background-color: blue;
  1571. color: white;
  1572. }
  1573. .wp-block-pullquote.is-style-solid-color blockquote {
  1574. padding-left: 16px;
  1575. padding-right: 16px;
  1576. max-width: inherit;
  1577. }
  1578. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1579. .wp-block-pullquote.is-style-solid-color cite,
  1580. .wp-block-pullquote.is-style-solid-color footer {
  1581. color: currentColor;
  1582. }
  1583. .wp-block-pullquote.alignwide > p,
  1584. .wp-block-pullquote.alignfull > p,
  1585. .wp-block-pullquote.alignwide blockquote,
  1586. .wp-block-pullquote.alignfull blockquote {
  1587. margin-left: auto;
  1588. margin-right: auto;
  1589. }
  1590. .wp-block-quote {
  1591. border-left-color: blue;
  1592. margin: 32px 0;
  1593. padding-left: 16px;
  1594. /**
  1595. * Block Options
  1596. */
  1597. }
  1598. .wp-block-quote > * {
  1599. margin-top: 16px;
  1600. margin-bottom: 16px;
  1601. }
  1602. .wp-block-quote > *:first-child {
  1603. margin-top: 0;
  1604. }
  1605. .wp-block-quote > *:last-child {
  1606. margin-bottom: 0;
  1607. }
  1608. .wp-block-quote p {
  1609. font-family: sans-serif;
  1610. font-family: var(--font-headings, sans-serif);
  1611. font-size: 1.728rem;
  1612. letter-spacing: normal;
  1613. line-height: 1.125;
  1614. }
  1615. .wp-block-quote .wp-block-quote__citation,
  1616. .wp-block-quote cite,
  1617. .wp-block-quote footer {
  1618. color: #767676;
  1619. font-size: 0.83333rem;
  1620. letter-spacing: normal;
  1621. }
  1622. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1623. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1624. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1625. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1626. .wp-block-quote cite,
  1627. [class*="background-color"]:not(.has-background-background-color)
  1628. .wp-block-quote cite,
  1629. [style*="background-color"]
  1630. .wp-block-quote cite,
  1631. .wp-block-cover[style*="background-image"]
  1632. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1633. .wp-block-quote footer,
  1634. [class*="background-color"]:not(.has-background-background-color)
  1635. .wp-block-quote footer,
  1636. [style*="background-color"]
  1637. .wp-block-quote footer,
  1638. .wp-block-cover[style*="background-image"]
  1639. .wp-block-quote footer {
  1640. color: currentColor;
  1641. }
  1642. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1643. border-right-color: blue;
  1644. }
  1645. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1646. /* Resetting margins to match _block-container.scss */
  1647. margin-top: 32px;
  1648. margin-bottom: 32px;
  1649. padding: 0;
  1650. }
  1651. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1652. font-size: 2.0736rem;
  1653. letter-spacing: normal;
  1654. line-height: 1.125;
  1655. }
  1656. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1657. .wp-block-quote.is-style-large cite,
  1658. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1659. .wp-block-quote.is-large cite,
  1660. .wp-block-quote.is-large footer {
  1661. color: #767676;
  1662. font-size: 0.83333rem;
  1663. letter-spacing: normal;
  1664. }
  1665. .has-background:not(.has-background-background-color) .wp-block-quote,
  1666. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1667. [style*="background-color"] .wp-block-quote,
  1668. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1669. border-color: currentColor;
  1670. }
  1671. hr {
  1672. border-bottom: 2px solid #DDDDDD;
  1673. clear: both;
  1674. margin-left: auto;
  1675. margin-right: auto;
  1676. }
  1677. hr.wp-block-separator {
  1678. border-bottom: 2px solid #DDDDDD;
  1679. /**
  1680. * Block Options
  1681. */
  1682. }
  1683. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  1684. max-width: 96px;
  1685. }
  1686. hr.wp-block-separator.is-style-dots:before {
  1687. color: #DDDDDD;
  1688. font-size: 1.728rem;
  1689. letter-spacing: 0.83333rem;
  1690. padding-left: 0.83333rem;
  1691. }
  1692. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  1693. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  1694. [style*="background-color"] hr.wp-block-separator,
  1695. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  1696. border-color: currentColor;
  1697. }
  1698. .wp-block-jetpack-slideshow ul {
  1699. margin-left: 0;
  1700. margin-right: 0;
  1701. }
  1702. .wp-block-spacer {
  1703. display: block;
  1704. margin-bottom: 0 !important;
  1705. margin-top: 0 !important;
  1706. }
  1707. @media only screen and (max-width: 559px) {
  1708. .wp-block-spacer[style] {
  1709. height: 16px !important;
  1710. }
  1711. }
  1712. .jetpack_subscription_widget input[type="text"] {
  1713. padding: 16px !important;
  1714. width: 100% !important;
  1715. }
  1716. table,
  1717. .wp-block-table {
  1718. width: 100%;
  1719. min-width: 240px;
  1720. border-collapse: collapse;
  1721. }
  1722. table th,
  1723. .wp-block-table th {
  1724. font-family: sans-serif;
  1725. font-family: var(--font-headings, sans-serif);
  1726. }
  1727. table td,
  1728. table th,
  1729. .wp-block-table td,
  1730. .wp-block-table th {
  1731. padding: calc( 0.5 * 16px);
  1732. border: 1px solid;
  1733. word-break: break-all;
  1734. }
  1735. .wp-block-video figcaption {
  1736. color: #767676;
  1737. font-size: 0.69444rem;
  1738. margin-top: calc(0.5 * 16px);
  1739. margin-bottom: 16px;
  1740. text-align: center;
  1741. }
  1742. * > figure > video {
  1743. max-width: unset;
  1744. width: 100%;
  1745. vertical-align: middle;
  1746. }
  1747. /* Block Alignments */
  1748. /**
  1749. * .alignleft
  1750. */
  1751. .alignleft {
  1752. /*rtl:ignore*/
  1753. text-align: left;
  1754. /*rtl:ignore*/
  1755. float: left;
  1756. margin-top: 0;
  1757. /*rtl:ignore*/
  1758. margin-right: 16px;
  1759. margin-bottom: 32px;
  1760. }
  1761. /**
  1762. * .aligncenter
  1763. */
  1764. .aligncenter {
  1765. clear: both;
  1766. display: block;
  1767. float: none;
  1768. margin-right: auto;
  1769. margin-left: auto;
  1770. text-align: center;
  1771. }
  1772. /**
  1773. * .alignright
  1774. */
  1775. .alignright {
  1776. /*rtl:ignore*/
  1777. float: right;
  1778. margin-top: 0;
  1779. margin-bottom: 32px;
  1780. /*rtl:ignore*/
  1781. margin-left: 16px;
  1782. }
  1783. .entry-content * > .alignleft + *,
  1784. .entry-content * > .alignright + * {
  1785. margin-top: 0;
  1786. }
  1787. /**
  1788. * .aligndefault
  1789. */
  1790. /**
  1791. * .alignwide
  1792. */
  1793. .alignwide {
  1794. clear: both;
  1795. }
  1796. /**
  1797. * .alignfull
  1798. */
  1799. .alignfull {
  1800. clear: both;
  1801. }
  1802. .has-left-content {
  1803. justify-content: flex-start;
  1804. }
  1805. .has-right-content {
  1806. justify-content: flex-end;
  1807. }
  1808. .has-parallax {
  1809. background-attachment: fixed;
  1810. }
  1811. .has-primary-color[class] {
  1812. color: blue !important;
  1813. }
  1814. .has-secondary-color[class] {
  1815. color: red !important;
  1816. }
  1817. .has-foreground-color[class] {
  1818. color: #444444 !important;
  1819. }
  1820. .has-foreground-light-color[class] {
  1821. color: #767676 !important;
  1822. }
  1823. .has-foreground-dark-color[class] {
  1824. color: #111111 !important;
  1825. }
  1826. .has-background-light-color[class] {
  1827. color: #FAFAFA !important;
  1828. }
  1829. .has-background-dark-color[class] {
  1830. color: #DDDDDD !important;
  1831. }
  1832. .has-background-color[class] {
  1833. color: white !important;
  1834. }
  1835. .has-background:not(.has-background-background-color) a,
  1836. .has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
  1837. color: currentColor;
  1838. }
  1839. .has-primary-background-color[class] {
  1840. background-color: blue !important;
  1841. color: white;
  1842. }
  1843. .has-secondary-background-color[class] {
  1844. background-color: red !important;
  1845. color: white;
  1846. }
  1847. .has-foreground-background-color[class] {
  1848. background-color: #444444 !important;
  1849. color: white;
  1850. }
  1851. .has-foreground-light-background-color[class] {
  1852. background-color: #767676 !important;
  1853. color: white;
  1854. }
  1855. .has-foreground-dark-background-color[class] {
  1856. background-color: #111111 !important;
  1857. color: white;
  1858. }
  1859. .has-background-light-background-color[class] {
  1860. background-color: #FAFAFA !important;
  1861. color: #444444;
  1862. }
  1863. .has-background-dark-background-color[class] {
  1864. background-color: #DDDDDD !important;
  1865. color: #444444;
  1866. }
  1867. .has-background-background-color[class] {
  1868. background-color: white !important;
  1869. color: #444444;
  1870. }
  1871. .is-small-text,
  1872. .has-small-font-size {
  1873. font-size: 0.83333rem;
  1874. }
  1875. .is-regular-text,
  1876. .has-regular-font-size,
  1877. .has-normal-font-size,
  1878. .has-medium-font-size {
  1879. font-size: 1rem;
  1880. }
  1881. .is-large-text,
  1882. .has-large-font-size {
  1883. font-size: 1.44rem;
  1884. line-height: 1.125;
  1885. }
  1886. .is-larger-text,
  1887. .has-larger-font-size,
  1888. .has-huge-font-size {
  1889. font-size: 1.728rem;
  1890. line-height: 1.125;
  1891. }
  1892. .has-drop-cap:not(:focus)::first-letter {
  1893. font-family: sans-serif;
  1894. font-family: var(--font-headings, sans-serif);
  1895. font-size: calc(2 * 2.98598rem);
  1896. font-weight: bold;
  1897. line-height: 0.66;
  1898. text-transform: uppercase;
  1899. font-style: normal;
  1900. float: left;
  1901. margin: 0.1em 0.1em 0 0;
  1902. }
  1903. .has-drop-cap:not(:focus)::after {
  1904. content: "";
  1905. display: table;
  1906. clear: both;
  1907. padding-top: 14px;
  1908. }
  1909. .desktop-only {
  1910. display: none;
  1911. }
  1912. @media only screen and (min-width: 560px) {
  1913. .desktop-only {
  1914. display: block;
  1915. }
  1916. }
  1917. /**
  1918. * Spacing Overrides
  1919. */
  1920. /*
  1921. * Margins
  1922. */
  1923. .margin-top-none {
  1924. margin-top: 0 !important;
  1925. }
  1926. .margin-top-half {
  1927. margin-top: 16px !important;
  1928. }
  1929. .margin-top-default {
  1930. margin-top: 32px !important;
  1931. }
  1932. .margin-right-none {
  1933. /*rtl:ignore*/
  1934. margin-right: 0 !important;
  1935. }
  1936. .margin-right-half {
  1937. /*rtl:ignore*/
  1938. margin-right: 16px !important;
  1939. }
  1940. .margin-right-default {
  1941. /*rtl:ignore*/
  1942. margin-right: 32px !important;
  1943. }
  1944. .margin-bottom-none {
  1945. margin-bottom: 0 !important;
  1946. }
  1947. .margin-bottom-half {
  1948. margin-bottom: 16px !important;
  1949. }
  1950. .margin-bottom-default {
  1951. margin-bottom: 32px !important;
  1952. }
  1953. .margin-left-none {
  1954. /*rtl:ignore*/
  1955. margin-left: 0 !important;
  1956. }
  1957. .margin-left-half {
  1958. /*rtl:ignore*/
  1959. margin-left: 16px !important;
  1960. }
  1961. .margin-left-default {
  1962. /*rtl:ignore*/
  1963. margin-left: 32px !important;
  1964. }
  1965. /*
  1966. * Padding
  1967. */
  1968. .padding-top-none {
  1969. padding-top: 0 !important;
  1970. }
  1971. .padding-top-half {
  1972. padding-top: 16px !important;
  1973. }
  1974. .padding-top-default {
  1975. padding-top: 32px !important;
  1976. }
  1977. .padding-right-none {
  1978. /*rtl:ignore*/
  1979. padding-right: 0 !important;
  1980. }
  1981. .padding-right-half {
  1982. /*rtl:ignore*/
  1983. padding-right: 16px !important;
  1984. }
  1985. .padding-right-default {
  1986. /*rtl:ignore*/
  1987. padding-right: 32px !important;
  1988. }
  1989. .padding-bottom-none {
  1990. padding-bottom: 0 !important;
  1991. }
  1992. .padding-bottom-half {
  1993. padding-bottom: 16px !important;
  1994. }
  1995. .padding-bottom-default {
  1996. padding-bottom: 32px !important;
  1997. }
  1998. .padding-left-none {
  1999. /*rtl:ignore*/
  2000. padding-left: 0 !important;
  2001. }
  2002. .padding-left-half {
  2003. /*rtl:ignore*/
  2004. padding-left: 16px !important;
  2005. }
  2006. .padding-left-default {
  2007. /*rtl:ignore*/
  2008. padding-left: 32px !important;
  2009. }
  2010. /**
  2011. * Components
  2012. * - Similar to Blocks but exist outside of the "current" editor context
  2013. */
  2014. /*
  2015. * Components
  2016. * - Similar to Blocks but exist outside of the "current" editor context
  2017. */
  2018. .site-branding {
  2019. color: #444444;
  2020. }
  2021. .site-title {
  2022. color: blue;
  2023. font-family: sans-serif;
  2024. font-family: var(--font-headings, sans-serif);
  2025. letter-spacing: normal;
  2026. line-height: 1;
  2027. }
  2028. .site-title a {
  2029. color: currentColor;
  2030. font-weight: bold;
  2031. }
  2032. .site-title a:link, .site-title a:visited {
  2033. color: currentColor;
  2034. }
  2035. .site-title a:hover {
  2036. color: indigo;
  2037. }
  2038. .site-description {
  2039. color: currentColor;
  2040. font-family: serif;
  2041. font-family: var(--font-base, serif);
  2042. }
  2043. body:not(.fse-enabled) .site-title {
  2044. font-size: 1.2rem;
  2045. }
  2046. body:not(.fse-enabled) .site-description {
  2047. font-size: 0.83333rem;
  2048. }
  2049. .main-navigation {
  2050. color: #444444;
  2051. }
  2052. .main-navigation > div {
  2053. display: none;
  2054. }
  2055. .main-navigation #toggle-menu {
  2056. display: inline-block;
  2057. margin: 0;
  2058. }
  2059. .main-navigation #toggle:checked ~ div {
  2060. display: block;
  2061. }
  2062. .main-navigation #toggle:focus + #toggle-menu {
  2063. background-color: indigo;
  2064. outline: inherit;
  2065. text-decoration: underline;
  2066. }
  2067. .main-navigation .dropdown-icon.close {
  2068. display: none;
  2069. }
  2070. .main-navigation #toggle:checked + #toggle-menu .open {
  2071. display: none;
  2072. }
  2073. .main-navigation #toggle:checked + #toggle-menu .close {
  2074. display: inline;
  2075. }
  2076. @media only screen and (min-width: 560px) {
  2077. .main-navigation > div {
  2078. display: block;
  2079. }
  2080. .main-navigation #toggle-menu {
  2081. display: none;
  2082. }
  2083. .main-navigation > div > ul > li > ul {
  2084. display: none;
  2085. }
  2086. }
  2087. .main-navigation > div > ul {
  2088. display: flex;
  2089. flex-wrap: wrap;
  2090. list-style: none;
  2091. margin: 0;
  2092. max-width: none;
  2093. padding-left: 0;
  2094. position: relative;
  2095. /* Sub-menus Flyout */
  2096. }
  2097. .main-navigation > div > ul ul {
  2098. padding-left: 0;
  2099. }
  2100. .main-navigation > div > ul li {
  2101. display: block;
  2102. position: relative;
  2103. width: 100%;
  2104. z-index: 1;
  2105. }
  2106. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2107. cursor: pointer;
  2108. z-index: 99999;
  2109. }
  2110. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2111. cursor: pointer;
  2112. z-index: 99999;
  2113. }
  2114. @media only screen and (min-width: 560px) {
  2115. .main-navigation > div > ul li {
  2116. display: inherit;
  2117. width: inherit;
  2118. /* Submenu display */
  2119. }
  2120. .main-navigation > div > ul li:hover > ul,
  2121. .main-navigation > div > ul li[focus-within] > ul,
  2122. .main-navigation > div > ul li ul:hover,
  2123. .main-navigation > div > ul li ul:focus {
  2124. visibility: visible;
  2125. opacity: 1;
  2126. display: block;
  2127. }
  2128. .main-navigation > div > ul li:hover > ul,
  2129. .main-navigation > div > ul li:focus-within > ul,
  2130. .main-navigation > div > ul li ul:hover,
  2131. .main-navigation > div > ul li ul:focus {
  2132. visibility: visible;
  2133. opacity: 1;
  2134. display: block;
  2135. }
  2136. }
  2137. @media only screen and (min-width: 560px) {
  2138. .main-navigation > div > ul > li > a {
  2139. line-height: 1;
  2140. }
  2141. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2142. content: '';
  2143. display: block;
  2144. height: 0;
  2145. width: 0;
  2146. }
  2147. .main-navigation > div > ul > li > a:before {
  2148. margin-bottom: -0.12em;
  2149. }
  2150. .main-navigation > div > ul > li > a:after {
  2151. margin-top: -0.11em;
  2152. }
  2153. .main-navigation > div > ul > li:first-of-type > a {
  2154. padding-left: 0;
  2155. }
  2156. .main-navigation > div > ul > li:last-of-type > a {
  2157. padding-right: 0;
  2158. }
  2159. }
  2160. .main-navigation > div > ul > li > .sub-menu {
  2161. margin: 0;
  2162. position: relative;
  2163. }
  2164. @media only screen and (min-width: 560px) {
  2165. .main-navigation > div > ul > li > .sub-menu {
  2166. background: white;
  2167. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  2168. left: 0;
  2169. top: 100%;
  2170. min-width: max-content;
  2171. opacity: 0;
  2172. position: absolute;
  2173. transition: all 0.5s ease;
  2174. visibility: hidden;
  2175. }
  2176. }
  2177. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2178. width: 100%;
  2179. }
  2180. .main-navigation a {
  2181. color: blue;
  2182. display: block;
  2183. font-family: sans-serif;
  2184. font-family: var(--font-headings, sans-serif);
  2185. font-weight: bold;
  2186. padding: 8px 0;
  2187. }
  2188. @media only screen and (min-width: 560px) {
  2189. .main-navigation a {
  2190. padding: 16px;
  2191. }
  2192. }
  2193. .main-navigation a:link, .main-navigation a:visited {
  2194. color: blue;
  2195. }
  2196. .main-navigation a:hover {
  2197. color: indigo;
  2198. }
  2199. .main-navigation .sub-menu {
  2200. list-style: none;
  2201. margin-left: 0;
  2202. /* Reset the counter for each UL */
  2203. counter-reset: nested-list;
  2204. }
  2205. .main-navigation .sub-menu .menu-item a {
  2206. padding-top: 8px;
  2207. padding-bottom: 8px;
  2208. }
  2209. .main-navigation .sub-menu .menu-item a::before {
  2210. /* Increment the dashes */
  2211. counter-increment: nested-list;
  2212. /* Insert dashes with spaces in between */
  2213. content: "– " counters(nested-list, "– ", none);
  2214. }
  2215. @media only screen and (min-width: 560px) {
  2216. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2217. content: "\00a0\25BC";
  2218. display: inline-block;
  2219. font-size: 0.69444rem;
  2220. height: inherit;
  2221. width: inherit;
  2222. }
  2223. }
  2224. .main-navigation .hide-visually {
  2225. position: absolute !important;
  2226. clip: rect(1px, 1px, 1px, 1px);
  2227. padding: 0 !important;
  2228. border: 0 !important;
  2229. height: 1px !important;
  2230. width: 1px !important;
  2231. overflow: hidden;
  2232. }
  2233. body:not(.fse-enabled) .main-navigation a {
  2234. font-size: 1.2rem;
  2235. }
  2236. .social-navigation > div > ul {
  2237. align-content: center;
  2238. display: flex;
  2239. list-style: none;
  2240. margin: 0;
  2241. padding-left: 0;
  2242. }
  2243. .social-navigation > div > ul > li:first-of-type > a {
  2244. padding-left: 0;
  2245. }
  2246. .social-navigation > div > ul > li:last-of-type > a {
  2247. padding-right: 0;
  2248. }
  2249. .social-navigation a {
  2250. color: blue;
  2251. display: inline-block;
  2252. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2253. }
  2254. .social-navigation a:hover {
  2255. color: indigo;
  2256. }
  2257. .social-navigation svg {
  2258. fill: currentColor;
  2259. vertical-align: middle;
  2260. }
  2261. .site-footer {
  2262. overflow: hidden;
  2263. }
  2264. @media only screen and (min-width: 640px) {
  2265. .site-footer {
  2266. align-items: flex-end;
  2267. display: flex;
  2268. flex-wrap: wrap;
  2269. justify-content: space-between;
  2270. }
  2271. }
  2272. .site-info {
  2273. color: #767676;
  2274. font-family: sans-serif;
  2275. font-family: var(--font-headings, sans-serif);
  2276. font-size: 0.83333rem;
  2277. }
  2278. @media only screen and (min-width: 640px) {
  2279. .site-info {
  2280. order: 1;
  2281. flex: 1 0 50%;
  2282. margin-top: 0;
  2283. margin-bottom: 0;
  2284. }
  2285. }
  2286. .site-info .site-name {
  2287. font-weight: bold;
  2288. }
  2289. .site-info a {
  2290. color: currentColor;
  2291. }
  2292. .site-info a:link, .site-info a:visited {
  2293. color: currentColor;
  2294. }
  2295. .site-info a:hover {
  2296. color: indigo;
  2297. }
  2298. .footer-navigation, .fse-enabled .site-footer .main-navigation {
  2299. display: inline;
  2300. }
  2301. @media only screen and (min-width: 640px) {
  2302. .footer-navigation, .fse-enabled .site-footer .main-navigation {
  2303. flex: 1 0 50%;
  2304. order: 2;
  2305. margin-top: 0;
  2306. margin-bottom: 0;
  2307. text-align: right;
  2308. }
  2309. }
  2310. .footer-navigation > div, .fse-enabled .site-footer .main-navigation > div {
  2311. display: inline;
  2312. }
  2313. .footer-navigation .footer-menu, .fse-enabled .site-footer .main-navigation .footer-menu {
  2314. color: #767676;
  2315. margin: 0;
  2316. padding-left: 0;
  2317. }
  2318. @media only screen and (min-width: 640px) {
  2319. .footer-navigation .footer-menu, .fse-enabled .site-footer .main-navigation .footer-menu {
  2320. display: flex;
  2321. flex-wrap: wrap;
  2322. justify-content: flex-end;
  2323. }
  2324. }
  2325. .footer-navigation .footer-menu > li, .fse-enabled .site-footer .main-navigation .footer-menu > li {
  2326. display: inline;
  2327. }
  2328. .footer-navigation .footer-menu > li:first-of-type > a, .fse-enabled .site-footer .main-navigation .footer-menu > li:first-of-type > a {
  2329. padding-left: 0;
  2330. }
  2331. .footer-navigation .footer-menu > li:last-of-type, .fse-enabled .site-footer .main-navigation .footer-menu > li:last-of-type {
  2332. padding-right: 0;
  2333. }
  2334. .footer-navigation .footer-menu a, .fse-enabled .site-footer .main-navigation .footer-menu a {
  2335. font-family: sans-serif;
  2336. font-family: var(--font-headings, sans-serif);
  2337. font-weight: bold;
  2338. padding: 16px;
  2339. color: currentColor;
  2340. }
  2341. .footer-navigation .footer-menu a:link, .fse-enabled .site-footer .main-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited, .fse-enabled .site-footer .main-navigation .footer-menu a:visited {
  2342. color: currentColor;
  2343. }
  2344. .footer-navigation .footer-menu a:hover, .fse-enabled .site-footer .main-navigation .footer-menu a:hover {
  2345. color: indigo;
  2346. }
  2347. body:not(.fse-enabled) .footer-menu a {
  2348. font-size: 0.83333rem;
  2349. }
  2350. .entry-title {
  2351. font-size: 2.48832rem;
  2352. letter-spacing: normal;
  2353. line-height: 1.125;
  2354. }
  2355. .entry-meta,
  2356. .entry-footer {
  2357. color: #767676;
  2358. clear: both;
  2359. float: none;
  2360. font-size: 0.83333rem;
  2361. display: block;
  2362. }
  2363. .entry-meta > span,
  2364. .entry-footer > span {
  2365. display: inline-block;
  2366. margin-right: 16px;
  2367. }
  2368. .entry-meta > span > *,
  2369. .entry-footer > span > * {
  2370. display: inline-block;
  2371. vertical-align: middle;
  2372. }
  2373. .entry-meta > span:last-child,
  2374. .entry-footer > span:last-child {
  2375. margin-right: 0;
  2376. }
  2377. .entry-meta > span .published + .updated,
  2378. .entry-footer > span .published + .updated {
  2379. display: none;
  2380. }
  2381. .entry-meta a,
  2382. .entry-footer a {
  2383. color: currentColor;
  2384. }
  2385. .entry-meta a:hover, .entry-meta a:active,
  2386. .entry-footer a:hover,
  2387. .entry-footer a:active {
  2388. color: indigo;
  2389. }
  2390. .entry-meta .svg-icon,
  2391. .entry-footer .svg-icon {
  2392. fill: currentColor;
  2393. position: relative;
  2394. display: inline-block;
  2395. vertical-align: middle;
  2396. margin-right: calc(0.25 * 16px);
  2397. }
  2398. /**
  2399. * Entry Content
  2400. */
  2401. .entry-content p {
  2402. word-wrap: break-word;
  2403. }
  2404. .entry-content .more-link {
  2405. display: block;
  2406. color: inherit;
  2407. }
  2408. .entry-content .more-link:after {
  2409. content: "\02192";
  2410. display: inline-block;
  2411. margin-left: 0.5em;
  2412. }
  2413. .entry-content .more-link:hover {
  2414. text-decoration: none;
  2415. }
  2416. .entry-content > iframe[style] {
  2417. margin: 32px 0 !important;
  2418. max-width: 100% !important;
  2419. }
  2420. @media only screen and (min-width: 560px) {
  2421. .entry-content > iframe[style] {
  2422. max-width: 32px !important;
  2423. }
  2424. }
  2425. .entry-attachment {
  2426. text-align: center;
  2427. }
  2428. /**
  2429. * Post Thumbnails
  2430. */
  2431. .post-thumbnail {
  2432. text-align: center;
  2433. }
  2434. .post-thumbnail .post-thumbnail-inner {
  2435. display: block;
  2436. }
  2437. /**
  2438. * Author
  2439. */
  2440. /* Author description */
  2441. .site-main > article > .author-bio {
  2442. margin-top: calc(2 * 32px);
  2443. }
  2444. .author-bio .author-title {
  2445. font-size: 2.0736rem;
  2446. }
  2447. /* Next/Previous navigation */
  2448. .post-navigation .meta-nav {
  2449. font-size: 0.83333rem;
  2450. }
  2451. .post-navigation .post-title {
  2452. font-family: sans-serif;
  2453. font-family: var(--font-headings, sans-serif);
  2454. font-size: 1.44rem;
  2455. font-weight: 600;
  2456. }
  2457. .post-navigation .nav-next,
  2458. .post-navigation .nav-previous {
  2459. margin-top: 32px;
  2460. margin-bottom: 32px;
  2461. }
  2462. .post-navigation .nav-next:first-child,
  2463. .post-navigation .nav-previous:first-child {
  2464. margin-top: 0;
  2465. }
  2466. .post-navigation .nav-next:last-child,
  2467. .post-navigation .nav-previous:last-child {
  2468. margin-bottom: 0;
  2469. }
  2470. .pagination .nav-links {
  2471. justify-content: start;
  2472. margin: 0 calc(-0.66 * 16px);
  2473. }
  2474. .pagination .nav-links > * {
  2475. font-family: sans-serif;
  2476. font-family: var(--font-headings, sans-serif);
  2477. font-size: 1.2rem;
  2478. font-weight: 600;
  2479. padding-left: calc(0.66 * 16px);
  2480. padding-right: calc(0.66 * 16px);
  2481. }
  2482. .pagination .nav-links .svg-icon {
  2483. display: inline-block;
  2484. vertical-align: middle;
  2485. }
  2486. @media only screen and (min-width: 560px) {
  2487. .nav-links {
  2488. display: flex;
  2489. justify-content: space-between;
  2490. }
  2491. .nav-links .nav-next,
  2492. .nav-links .nav-previous {
  2493. flex: 0 1 auto;
  2494. margin-bottom: inherit;
  2495. margin-top: inherit;
  2496. max-width: calc(50% - (0.5 * 16px));
  2497. }
  2498. .nav-links .nav-next {
  2499. text-align: right;
  2500. }
  2501. }
  2502. /**
  2503. * Comments Wrapper
  2504. */
  2505. .comments-area > * {
  2506. margin-top: 32px;
  2507. margin-bottom: 32px;
  2508. }
  2509. .comments-area > *:first-child {
  2510. margin-top: 0;
  2511. }
  2512. .comments-area > *:last-child {
  2513. margin-bottom: 0;
  2514. }
  2515. /**
  2516. * Comment Title
  2517. */
  2518. .comments-title {
  2519. font-size: 2.0736rem;
  2520. letter-spacing: normal;
  2521. }
  2522. .comment-reply-title {
  2523. font-size: 1.728rem;
  2524. display: flex;
  2525. justify-content: space-between;
  2526. align-items: center;
  2527. }
  2528. .comment-reply-title small {
  2529. font-size: 1rem;
  2530. font-family: serif;
  2531. font-family: var(--font-base, serif);
  2532. letter-spacing: normal;
  2533. line-height: 1.125;
  2534. }
  2535. /**
  2536. * Comment Lists
  2537. */
  2538. .comment-list {
  2539. border-bottom: 1px solid #DDDDDD;
  2540. padding-left: 0;
  2541. list-style: none;
  2542. }
  2543. .comment-list > li {
  2544. border-top: 1px solid #DDDDDD;
  2545. margin-top: 32px;
  2546. margin-bottom: 32px;
  2547. }
  2548. .comment-list .children {
  2549. list-style: none;
  2550. padding-left: 16px;
  2551. }
  2552. .comment-list .children > li {
  2553. border-top: 1px solid #DDDDDD;
  2554. margin-top: 32px;
  2555. margin-bottom: 32px;
  2556. }
  2557. @media only screen and (min-width: 560px) {
  2558. .comment-list .children {
  2559. padding-left: 32px;
  2560. }
  2561. }
  2562. /**
  2563. * Comment Meta
  2564. */
  2565. .comment-meta {
  2566. margin-right: calc( $avatar-size + (0.5 * 16px));
  2567. }
  2568. .comment-meta .comment-author {
  2569. line-height: 1.125;
  2570. margin-bottom: 4px;
  2571. padding-right: 40px;
  2572. max-width: calc(100% - 48px);
  2573. }
  2574. @media only screen and (min-width: 560px) {
  2575. .comment-meta .comment-author {
  2576. display: flex;
  2577. align-items: center;
  2578. margin-bottom: 0;
  2579. padding-right: 0;
  2580. }
  2581. }
  2582. .comment-meta .comment-author .fn {
  2583. word-wrap: break-word;
  2584. word-break: break-word;
  2585. hyphens: auto;
  2586. }
  2587. .comment-meta .comment-author .avatar {
  2588. display: block;
  2589. position: absolute;
  2590. right: 0;
  2591. }
  2592. .comment-meta .comment-metadata {
  2593. color: #444444;
  2594. padding-right: 40px;
  2595. }
  2596. @media only screen and (min-width: 560px) {
  2597. .comment-meta .comment-metadata {
  2598. padding-right: 0;
  2599. }
  2600. }
  2601. .comment-meta .comment-metadata a {
  2602. color: currentColor;
  2603. }
  2604. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  2605. color: indigo;
  2606. }
  2607. @media only screen and (min-width: 560px) {
  2608. .comment-meta {
  2609. margin-right: inherit;
  2610. align-items: center;
  2611. display: flex;
  2612. justify-content: space-between;
  2613. }
  2614. .comment-meta .comment-author {
  2615. display: flex;
  2616. align-items: center;
  2617. max-width: inherit;
  2618. flex: 0 1 auto;
  2619. }
  2620. .comment-meta .comment-author .fn {
  2621. padding-right: 16px;
  2622. }
  2623. .comment-meta .comment-author .avatar {
  2624. margin-right: 16px;
  2625. display: inherit;
  2626. position: inherit;
  2627. right: inherit;
  2628. }
  2629. .comment-meta .comment-metadata {
  2630. flex: 0 1 auto;
  2631. }
  2632. }
  2633. .comment-metadata,
  2634. .reply {
  2635. font-size: 0.69444rem;
  2636. line-height: 1.125;
  2637. }
  2638. .reply {
  2639. text-align: right;
  2640. }
  2641. @media only screen and (min-width: 560px) {
  2642. .reply {
  2643. text-align: left;
  2644. }
  2645. }
  2646. .bypostauthor {
  2647. display: block;
  2648. }
  2649. .says {
  2650. display: none;
  2651. }
  2652. .comment-author .fn,
  2653. .pingback .url,
  2654. .trackback .url {
  2655. font-family: sans-serif;
  2656. font-family: var(--font-headings, sans-serif);
  2657. }
  2658. /**
  2659. * Comment body
  2660. */
  2661. .comment-body {
  2662. position: relative;
  2663. }
  2664. .comment-body > * {
  2665. margin-top: 32px;
  2666. margin-bottom: 32px;
  2667. }
  2668. .comment-content a {
  2669. word-wrap: break-word;
  2670. }
  2671. /**
  2672. * Pingbacks & Trackbacks
  2673. */
  2674. .pingback .comment-body,
  2675. .trackback .comment-body {
  2676. margin-top: 32px;
  2677. margin-bottom: 32px;
  2678. }
  2679. /**
  2680. * Comment Form
  2681. */
  2682. .comment-respond {
  2683. margin-top: calc(2 * 32px);
  2684. }
  2685. .comment-respond > * {
  2686. margin-top: 16px;
  2687. margin-bottom: 16px;
  2688. }
  2689. .comment-respond > *:first-child {
  2690. margin-top: 0;
  2691. }
  2692. .comment-respond > *:last-child {
  2693. margin-bottom: 0;
  2694. }
  2695. .comment-form > p {
  2696. margin-top: 16px;
  2697. margin-bottom: 16px;
  2698. }
  2699. .comment-form > p:first-of-type {
  2700. margin-top: 0;
  2701. }
  2702. .comment-form > p:last-of-type {
  2703. margin-bottom: 0;
  2704. }
  2705. .comment-form > p label,
  2706. .comment-form > p input[type="email"],
  2707. .comment-form > p input[type="text"],
  2708. .comment-form > p input[type="url"],
  2709. .comment-form > p textarea {
  2710. width: 100%;
  2711. }
  2712. .comment-form > p.comment-form-cookies-consent > label {
  2713. width: auto;
  2714. }
  2715. @media only screen and (min-width: 560px) {
  2716. .comment-form > p {
  2717. display: flex;
  2718. }
  2719. .comment-form > p label {
  2720. width: 25%;
  2721. }
  2722. .comment-form > p.comment-form-cookies-consent {
  2723. margin-left: 25%;
  2724. }
  2725. .comment-form > p.comment-form-cookies-consent > label {
  2726. width: auto;
  2727. display: inline-block;
  2728. }
  2729. .comment-form > p input[type="email"],
  2730. .comment-form > p input[type="text"],
  2731. .comment-form > p input[type="url"],
  2732. .comment-form > p textarea {
  2733. width: 75%;
  2734. }
  2735. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  2736. display: block;
  2737. }
  2738. }
  2739. /**
  2740. * Comment Nav
  2741. */
  2742. .comment-navigation a {
  2743. font-family: sans-serif;
  2744. font-family: var(--font-headings, sans-serif);
  2745. font-size: 1.2rem;
  2746. font-weight: 600;
  2747. }
  2748. .widget-area {
  2749. flex: 0 0 100%;
  2750. }
  2751. /* Utilities */
  2752. img#wpstats {
  2753. position: absolute !important;
  2754. clip: rect(0, 0, 0, 0);
  2755. padding: 0 !important;
  2756. border: 0 !important;
  2757. height: 0 !important;
  2758. width: 0 !important;
  2759. overflow: hidden;
  2760. }
  2761. /**
  2762. * Site Pages
  2763. * - Page specific styles
  2764. */
  2765. /**
  2766. * Site Pages
  2767. * - Page specific styles
  2768. */
  2769. .sticky-post {
  2770. color: white;
  2771. background-color: blue;
  2772. font-family: sans-serif;
  2773. font-family: var(--font-headings, sans-serif);
  2774. font-weight: bold;
  2775. font-size: 0.83333rem;
  2776. line-height: 1;
  2777. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  2778. }
  2779. .page-title {
  2780. font-size: 1.728rem;
  2781. }
  2782. /**
  2783. * Responsive Logic
  2784. * - Loading this last to respect cascaing rules
  2785. */
  2786. /**
  2787. * Page Layout Styles & Repsonsive Styles
  2788. */
  2789. /* Responsive width-content overrides */
  2790. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2791. .wp-block-pullquote.alignfull > p,
  2792. .wp-block-pullquote.alignwide blockquote,
  2793. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2794. .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 {
  2795. max-width: 100%;
  2796. margin-left: auto;
  2797. margin-right: auto;
  2798. }
  2799. @media only screen and (min-width: 560px) {
  2800. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2801. .wp-block-pullquote.alignfull > p,
  2802. .wp-block-pullquote.alignwide blockquote,
  2803. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2804. .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 {
  2805. max-width: calc( 560px - 32px);
  2806. }
  2807. }
  2808. @media only screen and (min-width: 640px) {
  2809. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2810. .wp-block-pullquote.alignfull > p,
  2811. .wp-block-pullquote.alignwide blockquote,
  2812. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2813. .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 {
  2814. max-width: calc( 640px - 32px);
  2815. }
  2816. }
  2817. @media only screen and (min-width: 782px) {
  2818. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2819. .wp-block-pullquote.alignfull > p,
  2820. .wp-block-pullquote.alignwide blockquote,
  2821. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2822. .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 {
  2823. max-width: calc( 782px - 32px);
  2824. }
  2825. }
  2826. @media only screen and (min-width: 1024px) {
  2827. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2828. .wp-block-pullquote.alignfull > p,
  2829. .wp-block-pullquote.alignwide blockquote,
  2830. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2831. .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 {
  2832. max-width: calc( 782px - 32px);
  2833. }
  2834. }
  2835. @media only screen and (min-width: 1280px) {
  2836. .responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
  2837. .wp-block-pullquote.alignfull > p,
  2838. .wp-block-pullquote.alignwide blockquote,
  2839. .wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
  2840. .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 {
  2841. max-width: calc( 782px - 32px);
  2842. }
  2843. }
  2844. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2845. margin-left: auto;
  2846. margin-right: auto;
  2847. max-width: 100%;
  2848. /* Matches normal width until desktop breakpoint */
  2849. }
  2850. @media only screen and (min-width: 560px) {
  2851. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2852. max-width: calc( 560px - 32px);
  2853. }
  2854. }
  2855. @media only screen and (min-width: 640px) {
  2856. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2857. max-width: calc( 640px - 32px);
  2858. }
  2859. }
  2860. @media only screen and (min-width: 782px) {
  2861. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2862. max-width: calc( 782px - 32px);
  2863. }
  2864. }
  2865. @media only screen and (min-width: 1024px) {
  2866. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2867. width: calc(calc( 782px - 32px) + 256px);
  2868. max-width: calc(100% - 32px);
  2869. }
  2870. }
  2871. @media only screen and (min-width: 1280px) {
  2872. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  2873. width: calc(calc( 782px - 32px) + 256px);
  2874. max-width: calc(100% - 32px);
  2875. }
  2876. }
  2877. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2878. width: calc(100% + 256px);
  2879. max-width: 100%;
  2880. margin-left: auto;
  2881. margin-right: auto;
  2882. }
  2883. @media only screen and (min-width: 560px) {
  2884. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2885. width: calc(calc( 560px - 32px) + 256px);
  2886. max-width: 100%;
  2887. }
  2888. }
  2889. @media only screen and (min-width: 640px) {
  2890. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2891. width: calc(calc( 640px - 32px) + 256px);
  2892. max-width: 100%;
  2893. }
  2894. }
  2895. @media only screen and (min-width: 782px) {
  2896. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2897. width: calc(calc( 782px - 32px) + 256px);
  2898. max-width: 100%;
  2899. }
  2900. }
  2901. @media only screen and (min-width: 1024px) {
  2902. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2903. width: calc(calc( 782px - 32px) + 256px);
  2904. max-width: 100%;
  2905. }
  2906. }
  2907. @media only screen and (min-width: 1280px) {
  2908. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  2909. width: calc(calc( 782px - 32px) + 256px);
  2910. max-width: 100%;
  2911. }
  2912. }
  2913. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  2914. margin-left: -16px;
  2915. margin-right: -16px;
  2916. width: calc(100% + 32px);
  2917. max-width: calc(100% + 32px);
  2918. /* Letting the box-model do most of the work here. */
  2919. }
  2920. @media only screen and (min-width: 560px) {
  2921. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  2922. margin-left: inherit;
  2923. margin-right: inherit;
  2924. width: inherit;
  2925. max-width: inherit;
  2926. }
  2927. }
  2928. .entry-content > .alignright {
  2929. /*rtl:ignore*/
  2930. margin-right: 16px;
  2931. }
  2932. @media only screen and (min-width: 560px) {
  2933. .entry-content > .alignright {
  2934. /*rtl:ignore*/
  2935. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  2936. }
  2937. }
  2938. @media only screen and (min-width: 640px) {
  2939. .entry-content > .alignright {
  2940. /*rtl:ignore*/
  2941. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  2942. }
  2943. }
  2944. @media only screen and (min-width: 782px) {
  2945. .entry-content > .alignright {
  2946. /*rtl:ignore*/
  2947. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2948. }
  2949. }
  2950. @media only screen and (min-width: 1024px) {
  2951. .entry-content > .alignright {
  2952. /*rtl:ignore*/
  2953. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2954. }
  2955. }
  2956. @media only screen and (min-width: 1280px) {
  2957. .entry-content > .alignright {
  2958. /*rtl:ignore*/
  2959. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2960. }
  2961. }
  2962. .entry-content > .alignleft {
  2963. /*rtl:ignore*/
  2964. margin-left: 16px;
  2965. }
  2966. @media only screen and (min-width: 560px) {
  2967. .entry-content > .alignleft {
  2968. /*rtl:ignore*/
  2969. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  2970. }
  2971. }
  2972. @media only screen and (min-width: 640px) {
  2973. .entry-content > .alignleft {
  2974. /*rtl:ignore*/
  2975. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  2976. }
  2977. }
  2978. @media only screen and (min-width: 782px) {
  2979. .entry-content > .alignleft {
  2980. /*rtl:ignore*/
  2981. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2982. }
  2983. }
  2984. @media only screen and (min-width: 1024px) {
  2985. .entry-content > .alignleft {
  2986. /*rtl:ignore*/
  2987. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2988. }
  2989. }
  2990. @media only screen and (min-width: 1280px) {
  2991. .entry-content > .alignleft {
  2992. /*rtl:ignore*/
  2993. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  2994. }
  2995. }
  2996. /**
  2997. * Vendors
  2998. * - Styles for 3rd party plugins and WP extensions
  2999. */
  3000. /**
  3001. * Vendors
  3002. * - 3rd-party compatibility styles
  3003. */
  3004. /**
  3005. * Subscription Form
  3006. */
  3007. .wp-block-jetpack-subscriptions form > * {
  3008. margin-top: 21.312px;
  3009. margin-bottom: 21.312px;
  3010. }
  3011. @media only screen and (min-width: 560px) {
  3012. .wp-block-jetpack-subscriptions form > * {
  3013. margin-top: 32px;
  3014. margin-bottom: 32px;
  3015. }
  3016. }
  3017. .wp-block-jetpack-subscriptions form > *:first-child {
  3018. margin-top: 0;
  3019. }
  3020. .wp-block-jetpack-subscriptions form > *:last-child {
  3021. margin-bottom: 0;
  3022. }
  3023. /**
  3024. * Cookies & Consents Banner
  3025. */
  3026. body .widget_eu_cookie_law_widget {
  3027. background: transparent;
  3028. bottom: 0;
  3029. left: 0;
  3030. padding: 8px;
  3031. right: 0;
  3032. }
  3033. body .widget_eu_cookie_law_widget.widget.top {
  3034. bottom: auto;
  3035. top: 0;
  3036. }
  3037. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3038. background: white;
  3039. border: 1px solid #DDDDDD;
  3040. color: #444444;
  3041. font-size: 0.83333rem;
  3042. line-height: inherit;
  3043. padding: 16px;
  3044. }
  3045. @media (max-width: 600px) {
  3046. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3047. padding-bottom: 80px;
  3048. }
  3049. }
  3050. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3051. background: #444444;
  3052. border-color: #111111;
  3053. color: white;
  3054. }
  3055. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3056. background: white;
  3057. color: #444444;
  3058. }
  3059. 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 {
  3060. background: #DDDDDD;
  3061. }
  3062. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3063. margin: 0;
  3064. margin-left: 32px;
  3065. }
  3066. @media (max-width: 600px) {
  3067. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3068. bottom: 16px;
  3069. left: 16px;
  3070. margin: 0;
  3071. }
  3072. }
  3073. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3074. top: 32px;
  3075. }
  3076. @media (max-width: 782px) {
  3077. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3078. top: 46px;
  3079. }
  3080. }
  3081. /**
  3082. * Mailchimp Subscription Form
  3083. */
  3084. .wp-block-jetpack-mailchimp p {
  3085. margin-top: 21.312px;
  3086. margin-bottom: 21.312px;
  3087. }
  3088. @media only screen and (min-width: 560px) {
  3089. .wp-block-jetpack-mailchimp p {
  3090. margin-top: 32px;
  3091. margin-bottom: 32px;
  3092. }
  3093. }
  3094. .wp-block-jetpack-mailchimp p:first-child {
  3095. margin-top: 0;
  3096. }
  3097. .wp-block-jetpack-mailchimp p:last-child {
  3098. margin-bottom: 0;
  3099. }
  3100. .wp-block-jetpack-mailchimp input[type=email] {
  3101. width: 100%;
  3102. }
  3103. #wp-block-jetpack-mailchimp_consent-text {
  3104. font-size: 0.83333rem;
  3105. }
  3106. /**
  3107. * Full Site Editing
  3108. * - Full Site Editing overrides
  3109. */
  3110. .fse-enabled .site-footer {
  3111. display: block;
  3112. }
  3113. .fse-enabled .site-footer .main-navigation {
  3114. display: block;
  3115. }
  3116. .fse-enabled .site-footer .main-navigation .footer-menu {
  3117. color: inherit;
  3118. }
  3119. .fse-enabled .site-footer .main-navigation > div {
  3120. display: block;
  3121. }
  3122. .fse-enabled .site-footer .main-navigation .hide-visually,
  3123. .fse-enabled .site-footer .main-navigation #toggle-menu {
  3124. display: none;
  3125. }
  3126. @media only screen and (max-width: 559px) {
  3127. .fse-enabled .site-footer .main-navigation > div {
  3128. display: block;
  3129. }
  3130. .fse-enabled .site-footer .main-navigation li {
  3131. width: auto;
  3132. }
  3133. .fse-enabled .site-footer .main-navigation li .sub-menu {
  3134. display: none;
  3135. }
  3136. }
  3137. .fse-enabled .site-footer .site-info {
  3138. text-align: center;
  3139. }
  3140. .fse-enabled .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  3141. color: inherit;
  3142. }
  3143. .fse-enabled .main-navigation .has-text-align-left > .main-menu.footer-menu {
  3144. justify-content: flex-start;
  3145. }
  3146. .fse-enabled .main-navigation .has-text-align-center > .main-menu.footer-menu {
  3147. justify-content: center;
  3148. }
  3149. .fse-enabled .main-navigation .has-text-align-right > .main-menu.footer-menu {
  3150. justify-content: flex-end;
  3151. }
  3152. .fse-enabled .main-navigation .has-background > .main-menu.footer-menu {
  3153. padding: 16px 0;
  3154. }
  3155. @media only screen and (min-width: 560px) {
  3156. .fse-enabled .main-navigation .has-background > .main-menu.footer-menu {
  3157. padding: 16px;
  3158. }
  3159. }
  3160. .fse-enabled .main-navigation > div > .main-menu.footer-menu > .menu-item-has-children > a::after {
  3161. font-size: 0.6em;
  3162. vertical-align: middle;
  3163. }