style-rtl.css 77 KB

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