style-rtl.css 66 KB

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