style-rtl.css 72 KB

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