main.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. /*
  2. The bakery demo avoids using tooling so doesn't use SASS. This is a static
  3. CSS file that extends Bootstrap. It's deliberately verbose to aid
  4. readability with global themes, themes for each list view and themes for
  5. each detail view
  6. 1. Global styles ---------------------------------------------------------
  7. 2. Page header -----------------------------------------------------------
  8. 3. Main menu -------------------------------------------------------------
  9. 4. Breadcrumb ------------------------------------------------------------
  10. 5. Location styles -------------------------------------------------------
  11. 6. Blog styles -----------------------------------------------------------
  12. 7. Bread styles ----------------------------------------------------------
  13. 8. Form styles -----------------------------------------------------------
  14. 9. Homepage styles -------------------------------------------------------
  15. 9. Miscellaneous/ Helper styles ------------------------------------------
  16. */
  17. /* Global styles */
  18. /* CSS Variables */
  19. :root {
  20. --dark: #333;
  21. --grey: #6e6e6e;
  22. --border-grey: #e1dcd3;
  23. --transparent-border: rgb(135 116 79 / 25%);
  24. --white: #fff;
  25. --cream: #f5f3e9;
  26. --light-brown: #87744f;
  27. --mid-brown: #825600;
  28. --dark-brown: #553801;
  29. --orange: #c55302;
  30. --dark-orange: #833701;
  31. --font--primary: 'Marcellus', serif;
  32. --font--secondary: 'Open Sans', sans-serif;
  33. --font-sm: 1rem;
  34. --font-md: 1.125rem;
  35. }
  36. html {
  37. font-size: 16px;
  38. }
  39. [hidden] {
  40. display: none !important;
  41. }
  42. /* Body */
  43. body {
  44. font-family: var(--font--secondary);
  45. font-size: 1rem;
  46. line-height: 1.5;
  47. padding-top: 0;
  48. padding-bottom: 0;
  49. background: var(--white);
  50. color: var(--dark);
  51. min-height: 100vh;
  52. }
  53. body.no-scroll {
  54. overflow-y: hidden;
  55. }
  56. @media (min-width: 768px) {
  57. body {
  58. font-size: var(--font-md);
  59. line-height: 1.55;
  60. }
  61. }
  62. /* Headings and Paragraphs */
  63. h1,
  64. h2,
  65. h3 {
  66. font-family: var(--font--primary);
  67. font-weight: 400;
  68. color: var(--dark);
  69. }
  70. h1 {
  71. font-size: 2.375rem;
  72. line-height: 1.16;
  73. }
  74. h2 {
  75. font-size: 2rem;
  76. line-height: 1.25;
  77. }
  78. h3 {
  79. font-size: 1.625rem;
  80. line-height: 1.15;
  81. }
  82. h4 {
  83. font-family: var(--font--secondary);
  84. font-style: normal;
  85. font-weight: 600;
  86. font-size: 1.25rem;
  87. line-height: 1.35;
  88. color: var(--dark);
  89. }
  90. p {
  91. font-family: var(--font--secondary);
  92. font-style: normal;
  93. font-weight: 400;
  94. font-size: var(--font-sm);
  95. line-height: 1.5;
  96. color: var(--dark);
  97. }
  98. @media (min-width: 768px) {
  99. body {
  100. font-size: var(--font-md);
  101. line-height: 1.55;
  102. }
  103. h1 {
  104. font-size: 3.75rem;
  105. line-height: 1.07;
  106. }
  107. h2 {
  108. font-size: 2.875rem;
  109. line-height: 1.09;
  110. }
  111. h3 {
  112. font-size: 2rem;
  113. line-height: 1.31;
  114. }
  115. h4 {
  116. font-size: 1.5rem;
  117. line-height: 1.38;
  118. }
  119. p {
  120. font-size: var(--font-md);
  121. line-height: 1.55;
  122. margin: 0 0 30px;
  123. }
  124. }
  125. ol,
  126. ul {
  127. margin-bottom: 30px;
  128. }
  129. .hero h1 {
  130. color: var(--white);
  131. position: relative;
  132. }
  133. @media (min-width: 768px) {
  134. .intro {
  135. font-size: 1.875rem;
  136. margin: 0 0 60px;
  137. }
  138. }
  139. /* Links, Lists, Figures */
  140. a,
  141. a:focus,
  142. a:visited {
  143. color: var(--orange);
  144. text-decoration: none;
  145. }
  146. a:hover {
  147. color: var(--dark-orange);
  148. text-decoration: none;
  149. }
  150. a.btn {
  151. background-color: var(--orange);
  152. color: var(--white);
  153. display: inline-block;
  154. font-family: var(--font--secondary);
  155. font-size: var(--font-md);
  156. line-height: 1.55;
  157. font-weight: 700;
  158. padding: 15px 20px;
  159. }
  160. a.btn:hover {
  161. background-color: var(--grey);
  162. color: var(--white);
  163. }
  164. a.btn-sm {
  165. border-radius: 4px;
  166. font-size: 1rem;
  167. line-height: normal;
  168. padding: 6px 8px;
  169. }
  170. ul {
  171. margin: 0 0 30px;
  172. }
  173. @media (min-width: 768px) {
  174. ul {
  175. margin: 0 0 50px;
  176. }
  177. }
  178. figure {
  179. margin: 30px 0;
  180. position: relative;
  181. }
  182. @media (min-width: 768px) {
  183. figure {
  184. margin: 40px 0;
  185. }
  186. }
  187. figcaption {
  188. color: var(--grey);
  189. font-family: var(--font--secondary);
  190. font-size: 0.875rem;
  191. line-height: 1.57;
  192. padding-top: 10px;
  193. }
  194. @media (min-width: 768px) {
  195. figcaption {
  196. font-size: var(--font-sm);
  197. line-height: 1.5;
  198. }
  199. }
  200. img {
  201. display: block;
  202. width: 100%;
  203. height: auto;
  204. }
  205. figure img {
  206. display: block;
  207. width: 100%;
  208. height: auto;
  209. }
  210. /* Generic detail page styles */
  211. .intro {
  212. font-family: var(--font--secondary);
  213. font-weight: 300;
  214. margin: 0 0 40px;
  215. font-size: 1.375rem;
  216. }
  217. .alert {
  218. margin: 40px auto 0;
  219. max-width: 1400px;
  220. border-radius: 0;
  221. background-color: var(--orange);
  222. color: var(--white);
  223. padding: 40px;
  224. }
  225. .alert > .alert__title {
  226. color: var(--white);
  227. font-family: var(--font--primary);
  228. font-size: 1.625rem;
  229. margin-bottom: 5px;
  230. }
  231. .alert__messages {
  232. list-style-type: none;
  233. margin: 0;
  234. padding-left: 0;
  235. }
  236. /* Hero image area */
  237. .hero {
  238. background-size: cover;
  239. background-position: center;
  240. padding: 300px 0 0;
  241. position: relative;
  242. margin: 0 0 10px;
  243. }
  244. @media screen and (min-width: 768px) {
  245. .hero {
  246. padding: 250px 0 0;
  247. margin: 0;
  248. }
  249. .hero.hero--blog {
  250. padding: 400px 0 0;
  251. }
  252. }
  253. .hero-gradient-mask {
  254. position: absolute;
  255. width: 100%;
  256. height: 100%;
  257. bottom: 0;
  258. background: linear-gradient(0deg, #000 11.33%, rgb(0 0 0 / 0%) 100%);
  259. }
  260. @media (min-width: 768px) {
  261. .hero-gradient-mask {
  262. background: linear-gradient(90deg, #000 11.33%, rgb(0 0 0 / 0%) 100%);
  263. }
  264. }
  265. .hero__container {
  266. width: 100%;
  267. padding: 30px 20px 100px;
  268. background-color: var(--orange);
  269. margin: 0 auto;
  270. }
  271. @media (min-width: 768px) {
  272. .hero__container {
  273. background-color: transparent;
  274. max-width: 1400px;
  275. padding: 0 40px;
  276. }
  277. }
  278. .hero__title {
  279. color: var(--white);
  280. font-weight: 400;
  281. font-size: 2.875rem;
  282. line-height: 1.09;
  283. margin: 0;
  284. width: 100%;
  285. }
  286. @media (min-width: 768px) {
  287. .hero__title {
  288. background-color: var(--orange);
  289. width: max-content;
  290. max-width: 100%;
  291. font-size: 6.25rem;
  292. line-height: 0.64;
  293. padding: 75px 65px;
  294. position: absolute;
  295. bottom: 0;
  296. left: 0;
  297. transform: translateY(50%);
  298. }
  299. }
  300. blockquote {
  301. border-left: 3px solid var(--orange);
  302. margin: 40px 0 30px;
  303. padding: 0 0 0 20px;
  304. }
  305. blockquote .text {
  306. color: var(--orange);
  307. margin: 0 0 30px;
  308. font-family: var(--font--primary);
  309. font-size: 1.625rem;
  310. line-height: 1.15;
  311. }
  312. blockquote .attribute-name {
  313. color: var(--dark);
  314. font-size: var(--font-md);
  315. line-height: 1.56;
  316. margin: 0;
  317. padding: 0;
  318. }
  319. @media (min-width: 768px) {
  320. blockquote {
  321. border-left: 3px solid var(--orange);
  322. margin: 50px 0;
  323. padding: 0 40px;
  324. }
  325. blockquote .text {
  326. font-size: 2rem;
  327. line-height: 1.31;
  328. }
  329. }
  330. /* Richtext Styles */
  331. /* stylelint-disable-next-line selector-class-pattern */
  332. .block-paragraph_block p {
  333. color: var(--dark);
  334. }
  335. /* stylelint-disable-next-line selector-class-pattern */
  336. .block-paragraph_block a {
  337. text-decoration: underline;
  338. }
  339. /* stylelint-disable-next-line selector-class-pattern */
  340. .block-embed_block iframe {
  341. aspect-ratio: 16 / 9;
  342. width: 100%;
  343. height: 100%;
  344. }
  345. /* stylelint-disable-next-line selector-class-pattern */
  346. :is(.block-table_block, .block-typed_table_block) :is(table, tr, td, th) {
  347. border: 1px solid var(--dark);
  348. padding: 0.25em;
  349. }
  350. /* stylelint-disable-next-line selector-class-pattern */
  351. :is(.block-table_block, .block-typed_table_block) table {
  352. margin-bottom: 30px;
  353. }
  354. @media screen and (min-width: 768px) {
  355. .header,
  356. .footer {
  357. padding-right: 0;
  358. padding-left: 0;
  359. }
  360. }
  361. /* Page header */
  362. .header {
  363. padding: 0;
  364. width: 100%;
  365. background: var(--white);
  366. z-index: 10;
  367. }
  368. .index-header__title {
  369. color: var(--dark);
  370. font-weight: 400;
  371. font-size: 2.875rem;
  372. line-height: 1.09;
  373. margin-top: 30px;
  374. }
  375. .index-header__introduction {
  376. color: var(--dark);
  377. font-family: var(--font--primary);
  378. font-weight: 400;
  379. font-size: 1.625rem;
  380. line-height: 1.15;
  381. margin-top: 20px;
  382. margin-bottom: 60px;
  383. }
  384. .index-header__introduction.index-header__introduction--blog {
  385. margin-bottom: 20px;
  386. }
  387. .index-header__body-introduction p:first-child {
  388. color: var(--dark);
  389. font-family: var(--font--primary);
  390. font-weight: 400;
  391. font-size: 1.625rem;
  392. line-height: 30px;
  393. margin-top: 20px;
  394. margin-bottom: 30px;
  395. }
  396. .index-header__body-introduction {
  397. margin-bottom: 30px;
  398. }
  399. @media (min-width: 768px) {
  400. .index-header__title {
  401. font-size: 6.25rem;
  402. line-height: 0.64;
  403. margin-top: 70px;
  404. }
  405. .index-header__introduction {
  406. font-size: 2rem;
  407. line-height: 1.31;
  408. margin-top: 40px;
  409. margin-bottom: 40px;
  410. }
  411. .index-header__body-introduction p:first-child {
  412. font-size: 2rem;
  413. line-height: 42px;
  414. margin-top: 40px;
  415. margin-bottom: 40px;
  416. }
  417. .index-header__body-introduction {
  418. margin-bottom: 30px;
  419. }
  420. .index-header__title.index-header__title--blog {
  421. line-height: 1.1;
  422. }
  423. }
  424. /* Main menu */
  425. .navigation {
  426. display: flex;
  427. flex-direction: row;
  428. align-items: center;
  429. padding: 25px 0;
  430. }
  431. .navigation__mobile {
  432. position: absolute;
  433. top: 0;
  434. left: 0;
  435. right: 0;
  436. bottom: 0;
  437. background-color: var(--white);
  438. z-index: 10;
  439. display: flex;
  440. flex-direction: column;
  441. align-items: center;
  442. text-align: center;
  443. padding-top: 80px;
  444. }
  445. .navigation__mobile-toggle {
  446. background-color: transparent;
  447. border: none;
  448. margin: 0 0 0 auto;
  449. }
  450. .navigation__mobile-toggle[aria-expanded='true'] {
  451. position: absolute;
  452. z-index: 15;
  453. top: 30px;
  454. right: 20px;
  455. }
  456. @media (min-width: 1150px) {
  457. .navigation__mobile {
  458. display: none;
  459. }
  460. }
  461. .navigation__mobile-toggle[aria-expanded='true'] .navigation__toggle-icon-bar {
  462. opacity: 0;
  463. }
  464. .navigation__mobile-toggle[aria-expanded='true']
  465. .navigation__toggle-icon-bar:first-of-type {
  466. transform: translateY(10px) rotate(45deg);
  467. opacity: 1;
  468. }
  469. .navigation__mobile-toggle[aria-expanded='true']
  470. .navigation__toggle-icon-bar:last-child {
  471. transform: translateY(-10px) rotate(-45deg);
  472. opacity: 1;
  473. }
  474. .navigation__mobile-search {
  475. margin-top: 20px;
  476. position: relative;
  477. }
  478. .navigation__search {
  479. display: none;
  480. margin: 15px 0 0;
  481. position: relative;
  482. }
  483. .navigation__search-icon {
  484. display: block;
  485. position: absolute;
  486. right: 13px;
  487. top: 13px;
  488. }
  489. @media (min-width: 768px) {
  490. .navigation__search-icon {
  491. top: 11px;
  492. }
  493. }
  494. .navigation__search-input {
  495. color: var(--dark);
  496. font-size: var(--font-sm);
  497. line-height: 1.5;
  498. border: 1px solid var(--dark);
  499. padding: 10px;
  500. }
  501. .navigation__items {
  502. list-style: none;
  503. margin: 0;
  504. padding: 20px 0 0;
  505. }
  506. .navigation__desktop {
  507. display: none;
  508. }
  509. @media (min-width: 1150px) {
  510. .navigation__desktop {
  511. display: block;
  512. }
  513. .navigation__search {
  514. display: block;
  515. margin: 0 0 0 auto;
  516. }
  517. .navigation__items {
  518. padding: 0 0 0 20px;
  519. }
  520. }
  521. .navigation__items > li {
  522. padding: 10px 0;
  523. }
  524. .navigation__items > li > a {
  525. color: var(--dark);
  526. font-family: var(--font--secondary);
  527. font-size: var(--font-md);
  528. line-height: 1.55;
  529. padding: 10px 0;
  530. }
  531. @media (min-width: 1150px) {
  532. .navigation__items {
  533. display: block;
  534. }
  535. .navigation__items > li {
  536. padding: 0 0 0 20px;
  537. }
  538. .navigation__items > li > a {
  539. padding: 10px;
  540. }
  541. .navigation__items > li:first-child {
  542. padding: 0 0 0 20px;
  543. }
  544. }
  545. /* N.B. We're overriding Bootstrap's default nav styles here,
  546. these rules set what the currently active nav tab looks like. */
  547. .navigation__items > li.active > a,
  548. .navigation__items > li.active > a:focus,
  549. .navigation__items > li.active > a:hover {
  550. color: var(--dark);
  551. border-radius: 0;
  552. border: none;
  553. background-color: transparent;
  554. }
  555. .navigation__items > li:hover,
  556. .navigation__items > li > a:focus,
  557. .navigation__items > li > a:hover {
  558. text-decoration: underline;
  559. }
  560. /* Required as bootstrap nav automatically hides this otherwise */
  561. @media (min-width: 768px) {
  562. .navigation__mobile-toggle {
  563. display: block;
  564. }
  565. }
  566. @media (min-width: 1150px) {
  567. .navigation__mobile-toggle {
  568. display: none;
  569. }
  570. }
  571. .navigation__toggle-icon-bar {
  572. background-color: var(--dark);
  573. width: 30px;
  574. height: 2px;
  575. margin-bottom: 8px;
  576. display: block;
  577. }
  578. .navigation__toggle-icon-bar:last-child {
  579. margin-bottom: 0;
  580. }
  581. .collapse.in {
  582. padding: 0;
  583. }
  584. @media (max-width: 1150px) {
  585. .collapse.in {
  586. flex-basis: 100%;
  587. overflow-y: hidden;
  588. }
  589. .collapse.in .navigation__items {
  590. display: block;
  591. }
  592. }
  593. .navigation__logo,
  594. .navigation__logo:visited,
  595. .navigation__logo:focus {
  596. display: inline-block;
  597. color: var(--dark);
  598. font-family: var(--font--primary);
  599. font-weight: 400;
  600. font-size: 1.5rem;
  601. line-height: 1.25;
  602. margin: 0;
  603. position: relative;
  604. }
  605. @media (min-width: 1150px) {
  606. .navigation__logo::after {
  607. content: '';
  608. position: absolute;
  609. right: -20px;
  610. top: -5px;
  611. bottom: 0;
  612. width: 1px;
  613. height: 42px;
  614. background-color: var(--border-grey);
  615. }
  616. }
  617. .dropdown-menu {
  618. background-color: var(--cream);
  619. border-radius: 0;
  620. border: transparent;
  621. }
  622. .dropdown-menu > li > a {
  623. border-bottom: 1px solid var(--border-grey);
  624. color: var(--dark);
  625. font-family: var(--font--secondary);
  626. padding: 10px 20px;
  627. }
  628. .dropdown-menu > li > a:hover {
  629. text-decoration: underline;
  630. }
  631. /* Menu dropdown hack to allow toggling */
  632. li.has-submenu a.allow-toggle {
  633. float: left;
  634. padding-right: 0;
  635. }
  636. .caret-custom {
  637. float: right;
  638. padding: 10px 10px 15px 5px !important;
  639. }
  640. .caret-custom::after {
  641. content: '▼' !important;
  642. }
  643. /* Mobile menu styling */
  644. @media (max-width: 1150px) {
  645. .nav-pills > .presentation {
  646. float: none;
  647. width: 100%;
  648. }
  649. }
  650. /* Custom page footer */
  651. hr {
  652. margin: 0;
  653. border-top: 1px solid var(--light-brown);
  654. opacity: 0.25;
  655. }
  656. footer {
  657. padding: 55px 0 30px;
  658. background-color: var(--white);
  659. }
  660. .footer__icon a {
  661. color: var(--cream);
  662. font-size: 1.5rem;
  663. }
  664. .footer__icon .fa-inverse {
  665. color: var(--orange);
  666. }
  667. .footer__icon:hover a {
  668. color: var(--orange);
  669. }
  670. .footer__icon:hover .fa-inverse {
  671. color: var(--cream);
  672. }
  673. .copyright p {
  674. color: var(--dark);
  675. font-family: var(--font--secondary);
  676. font-size: var(--font-sm);
  677. line-height: 1.5;
  678. }
  679. @media (min-width: 768px) {
  680. .copyright p {
  681. font-size: var(--font-md);
  682. line-height: 1.55;
  683. }
  684. }
  685. .container {
  686. width: auto;
  687. padding-left: 20px;
  688. padding-right: 20px;
  689. }
  690. @media (min-width: 768px) {
  691. .container {
  692. max-width: 1400px;
  693. padding-left: 40px;
  694. padding-right: 40px;
  695. }
  696. }
  697. .container-narrow > hr {
  698. margin: 30px 0;
  699. }
  700. /* Breadcrumbs */
  701. .breadcrumb-container {
  702. position: relative;
  703. z-index: 3;
  704. margin-bottom: 15px;
  705. }
  706. .breadcrumb {
  707. color: var(--dark);
  708. font-family: var(--font--secondary);
  709. font-size: var(--font-sm);
  710. line-height: 1.5;
  711. margin-bottom: 0;
  712. padding-left: 0;
  713. background-color: transparent;
  714. }
  715. .breadcrumb > li + li::before {
  716. display: none;
  717. }
  718. .breadcrumb__chevron-icon {
  719. width: 8px;
  720. height: 16px;
  721. margin: 0 10px;
  722. }
  723. .breadcrumb__chevron-icon path {
  724. fill: var(--dark);
  725. }
  726. .breadcrumb a,
  727. .breadcrumb .active {
  728. color: var(--dark);
  729. text-decoration: underline;
  730. }
  731. .breadcrumb a:hover {
  732. color: var(--dark-orange);
  733. }
  734. /* Pagination navigation */
  735. .pagination {
  736. display: block;
  737. margin: 0 auto 40px;
  738. }
  739. .pagination__list {
  740. display: flex;
  741. width: 100%;
  742. justify-content: center;
  743. gap: 20px;
  744. list-style-type: none;
  745. padding-left: 0;
  746. }
  747. .pagination .page-item a {
  748. text-transform: capitalize;
  749. text-decoration: underline;
  750. }
  751. .pagination .page-item.active span {
  752. color: var(--grey);
  753. }
  754. .pagination .page-item.disabled a {
  755. color: var(--grey);
  756. text-decoration: none;
  757. cursor: default;
  758. }
  759. /* Search page */
  760. .search__introduction {
  761. color: var(--dark);
  762. font-family: var(--font--primary);
  763. font-weight: 400;
  764. font-size: 1.625rem;
  765. line-height: 1.15;
  766. margin-top: 20px;
  767. margin-bottom: 40px;
  768. }
  769. .search__results {
  770. list-style-type: none;
  771. padding-left: 0;
  772. margin-bottom: 90px;
  773. }
  774. @media (min-width: 768px) {
  775. .search__introduction {
  776. margin-bottom: 60px;
  777. }
  778. .search__results {
  779. margin-bottom: 120px;
  780. }
  781. }
  782. /* Location list page */
  783. .location-list-page {
  784. padding: 0 0 70px;
  785. display: grid;
  786. grid-template-columns: 1fr;
  787. gap: 10px;
  788. }
  789. @media (min-width: 768px) {
  790. .location-list-page {
  791. padding: 50px 0 110px;
  792. grid-template-columns: 1fr 1fr;
  793. gap: 30px;
  794. }
  795. }
  796. /* Location detail page */
  797. .location__meta-title {
  798. font-family: var(--font--primary);
  799. margin-top: 30px;
  800. margin-bottom: 10px;
  801. font-size: 1.625rem;
  802. line-height: 1.23;
  803. }
  804. .location__meta-title:first-child {
  805. margin-top: 0;
  806. }
  807. .location__day {
  808. font-weight: bold;
  809. font-family: var(--font--secondary);
  810. }
  811. .location__time {
  812. display: block;
  813. }
  814. /* ---- Blog Index Page ---- */
  815. .blog-tags {
  816. list-style: none;
  817. display: flex;
  818. flex-wrap: wrap;
  819. padding-left: 0;
  820. row-gap: 25px;
  821. column-gap: 15px;
  822. margin-bottom: 70px;
  823. }
  824. .blog-tags.blog-tags--condensed {
  825. column-gap: 0;
  826. }
  827. .blog-tags__pill {
  828. padding: 10px 18px;
  829. font-size: var(--font-md);
  830. line-height: 1.55;
  831. border: 1px solid var(--orange);
  832. border-radius: 60px;
  833. margin-left: 20px;
  834. text-transform: capitalize;
  835. }
  836. .blog-tags__pill--selected {
  837. background-color: var(--dark-orange);
  838. border: 1px solid var(--dark-orange);
  839. color: var(--white);
  840. }
  841. .blog-tags__pill:hover.blog-tags__pill--selected {
  842. background-color: var(--dark-orange);
  843. }
  844. .blog-tags__pill:first-child {
  845. margin-left: 0;
  846. }
  847. .blog-tags__pill:hover {
  848. background-color: var(--orange);
  849. color: var(--white);
  850. }
  851. .blog-tags__tag {
  852. color: var(--orange);
  853. text-transform: capitalize;
  854. }
  855. .blog-list {
  856. padding: 0;
  857. }
  858. .blog-list-item {
  859. display: flex;
  860. flex-direction: column;
  861. margin-bottom: 20px;
  862. }
  863. .blog-list-item a {
  864. display: flex;
  865. flex-grow: 1;
  866. flex-direction: column;
  867. }
  868. .blog-list-item:hover img {
  869. opacity: 0.3;
  870. }
  871. .blog-list-item .image {
  872. overflow: hidden;
  873. background-color: #eb7400;
  874. flex: 1 0 auto;
  875. }
  876. .blog-list-item .image img {
  877. min-height: 510px;
  878. width: auto;
  879. min-width: 100%;
  880. }
  881. .blog-list-item .text {
  882. background: linear-gradient(
  883. to bottom,
  884. rgb(0 0 0 / 0%) 0%,
  885. rgb(0 0 0 / 60%) 23%,
  886. rgb(0 0 0 / 100%) 50%
  887. );
  888. margin-top: -150px;
  889. padding: 20px;
  890. position: relative;
  891. z-index: 1;
  892. }
  893. .blog-list-item .text h2 {
  894. color: #fff;
  895. font-weight: 200;
  896. margin-top: 0;
  897. }
  898. .blog-list-item .text p {
  899. color: #e3e3e3;
  900. font-size: 0.875rem;
  901. margin-bottom: 0;
  902. }
  903. .blog-list-item .footer {
  904. background-color: #333;
  905. color: #fff;
  906. margin-top: 0;
  907. padding: 20px;
  908. position: relative;
  909. z-index: 1;
  910. }
  911. /* ---- Blog Page ---- */
  912. .blog__meta {
  913. margin-bottom: 20px;
  914. }
  915. .blog__avatar {
  916. border-radius: 100%;
  917. display: inline;
  918. width: unset;
  919. margin-right: 10px;
  920. }
  921. .blog__avatars {
  922. margin-bottom: 20px;
  923. }
  924. .blog__author {
  925. font-family: var(--font--primary);
  926. font-size: 1.375rem;
  927. line-height: 1.18;
  928. display: inline-block;
  929. margin-right: 40px;
  930. margin-bottom: 10px;
  931. }
  932. .blog__published {
  933. color: var(--grey);
  934. margin-bottom: 30px;
  935. }
  936. .blog__tag-introduction {
  937. font-size: var(--font-md);
  938. color: var(--grey);
  939. margin-bottom: 20px;
  940. margin-top: 60px;
  941. }
  942. @media (min-width: 768px) {
  943. .blog__published {
  944. margin-bottom: 40px;
  945. }
  946. .blog__avatars {
  947. margin-bottom: 40px;
  948. }
  949. .blog__tag-introduction {
  950. margin-top: 100px;
  951. }
  952. }
  953. /* ---- Gallery Page ---- */
  954. .gallery__container {
  955. padding-top: 40px;
  956. padding-bottom: 60px;
  957. }
  958. .gallery__introduction {
  959. color: var(--dark);
  960. font-family: var(--font--primary);
  961. font-size: 1.625rem;
  962. line-height: 1.15;
  963. margin: 0 0 60px;
  964. }
  965. .gallery__grid {
  966. display: grid;
  967. grid-template-columns: 1fr;
  968. gap: 10px;
  969. }
  970. @media (min-width: 768px) {
  971. .gallery__container {
  972. padding-top: 180px;
  973. padding-bottom: 80px;
  974. }
  975. .gallery__introduction {
  976. font-size: 2rem;
  977. line-height: 1.31;
  978. margin: 0 0 85px;
  979. }
  980. .gallery__grid {
  981. grid-template-columns: 1fr 1fr;
  982. gap: 30px;
  983. }
  984. }
  985. /* ---- Bread Index Page ---- */
  986. .bread-list {
  987. list-style-type: none;
  988. padding-left: 0;
  989. padding-bottom: 40px;
  990. }
  991. @media (min-width: 992px) {
  992. .bread-list {
  993. display: grid;
  994. grid-template-columns: 1fr 1fr;
  995. gap: 30px;
  996. padding-top: 30px;
  997. padding-bottom: 80px;
  998. }
  999. }
  1000. /* ---- Bread Detail Page ---- */
  1001. .bread-detail {
  1002. padding-bottom: 60px;
  1003. }
  1004. .bread-detail__introduction {
  1005. color: var(--dark);
  1006. font-family: var(--font--primary);
  1007. font-size: 1.625rem;
  1008. line-height: 1.15;
  1009. margin-top: 50px;
  1010. margin-bottom: 65px;
  1011. }
  1012. @media (min-width: 768px) {
  1013. .bread-detail__introduction {
  1014. font-size: 2rem;
  1015. line-height: 1.31;
  1016. margin-top: 160px;
  1017. }
  1018. }
  1019. .bread-detail figure {
  1020. margin: 35px auto 20px;
  1021. overflow: hidden;
  1022. }
  1023. .bread-detail figure img {
  1024. height: auto;
  1025. }
  1026. .bread-detail__meta {
  1027. background-color: var(--cream);
  1028. padding: 40px;
  1029. margin-right: -15px;
  1030. margin-bottom: 60px;
  1031. }
  1032. .bread-detail__meta ul li {
  1033. border-bottom: 1px solid var(--border-grey);
  1034. list-style: none;
  1035. color: var(--grey);
  1036. max-width: 450px;
  1037. margin-bottom: 15px;
  1038. }
  1039. .bread-detail__meta-title {
  1040. font-family: var(--font--secondary);
  1041. font-weight: 700;
  1042. font-size: var(--font-md);
  1043. line-height: 1.55;
  1044. margin: 0 0 5px;
  1045. }
  1046. .bread-detail__meta-content {
  1047. font-family: var(--font--secondary);
  1048. font-size: var(--font-md);
  1049. line-height: 1.55;
  1050. margin: 0 0 20px;
  1051. }
  1052. .bread-detail__meta-ingredient--draft {
  1053. color: transparent;
  1054. user-select: none;
  1055. cursor: help;
  1056. text-shadow: 0 0 7px rgb(0 0 0 / 50%);
  1057. }
  1058. @media (min-width: 992px) {
  1059. .bread-detail__meta {
  1060. background-color: var(--cream);
  1061. padding: 240px 60px 60px;
  1062. margin-right: -40px;
  1063. margin-bottom: 0;
  1064. }
  1065. }
  1066. /* Forms */
  1067. .form-page {
  1068. padding-bottom: 60px;
  1069. }
  1070. .form-page input,
  1071. textarea,
  1072. select {
  1073. display: block;
  1074. width: 100%;
  1075. padding: 8px;
  1076. border: 1px solid var(--dark);
  1077. }
  1078. .form-page input[type='submit'] {
  1079. border: none;
  1080. color: var(--white);
  1081. background-color: var(--orange);
  1082. font-weight: 700;
  1083. padding: 15px 25px;
  1084. display: inline-block;
  1085. vertical-align: middle;
  1086. transition-duration: 0.1s;
  1087. width: max-content;
  1088. }
  1089. .form-page input[type='submit']:hover {
  1090. background-color: var(--dark);
  1091. }
  1092. .form-page li input[type='checkbox'],
  1093. input[type='radio'] {
  1094. display: inline-block;
  1095. margin-right: 10px;
  1096. }
  1097. .form-page__field ul,
  1098. .form-page__field li {
  1099. list-style: none;
  1100. padding: 0;
  1101. margin: 0;
  1102. }
  1103. .form-page .required {
  1104. color: var(--orange);
  1105. }
  1106. .form-page .help {
  1107. color: var(--dark);
  1108. font-family: var(--font--secondary);
  1109. font-size: var(--font-sm);
  1110. margin-top: 10px;
  1111. max-width: 350px;
  1112. }
  1113. .form-page__field {
  1114. color: var(--dark);
  1115. margin-bottom: 30px;
  1116. }
  1117. .form-page__field label {
  1118. margin-bottom: 10px;
  1119. }
  1120. .form-page__help-text {
  1121. color: var(--grey);
  1122. font-family: var(--font--secondary);
  1123. font-size: var(--font-md);
  1124. line-height: 28px;
  1125. margin: -10px 0 10px;
  1126. }
  1127. @media (min-width: 766px) {
  1128. .form-page input,
  1129. textarea,
  1130. select {
  1131. width: 100%;
  1132. }
  1133. .form-page {
  1134. padding-bottom: 140px;
  1135. }
  1136. .form-page__field {
  1137. margin-bottom: 50px;
  1138. }
  1139. }
  1140. /* Generic title image header include */
  1141. .base-header img {
  1142. height: auto;
  1143. margin-top: 20px;
  1144. max-width: 100%;
  1145. width: auto;
  1146. }
  1147. @media (max-width: 970px) {
  1148. .base-header img {
  1149. width: 100%;
  1150. }
  1151. }
  1152. /* Homepage */
  1153. /* #region -- Hero -- */
  1154. .homepage .hero {
  1155. margin: 0;
  1156. padding: 200px 0 30px;
  1157. }
  1158. .homepage .home-hero {
  1159. margin-bottom: 0;
  1160. padding-bottom: 20px;
  1161. }
  1162. @media (min-width: 768px) {
  1163. .homepage .home-hero {
  1164. padding-bottom: 140px;
  1165. }
  1166. }
  1167. .homepage .home-hero .lead {
  1168. font-family: var(--font--primary);
  1169. font-weight: 400;
  1170. color: var(--white);
  1171. margin: 40px auto;
  1172. font-size: 1.625rem;
  1173. line-height: 1.15;
  1174. }
  1175. @media (min-width: 768px) {
  1176. .homepage .home-hero .lead {
  1177. font-size: 2rem;
  1178. line-height: 1.31;
  1179. }
  1180. }
  1181. .homepage .home-hero .hero-cta-link {
  1182. color: var(--white);
  1183. background-color: var(--orange);
  1184. font-weight: 700;
  1185. padding: 15px 25px;
  1186. display: inline-block;
  1187. vertical-align: middle;
  1188. transition: color ease 0.1s, background-color ease 0.1s;
  1189. }
  1190. .homepage .home-hero .hero-cta-link:hover {
  1191. background-color: var(--white);
  1192. color: var(--dark-orange);
  1193. }
  1194. /* #endregion */
  1195. /* #region -- Body -- */
  1196. .homepage .streamfield {
  1197. background-color: var(--cream);
  1198. }
  1199. .homepage .streamfield a {
  1200. color: var(--dark-orange);
  1201. }
  1202. .homepage .streamfield-column {
  1203. padding: 80px 20px;
  1204. }
  1205. .homepage .streamfield-column p:first-child {
  1206. color: var(--dark-brown);
  1207. font-family: var(--font--primary);
  1208. font-size: 1.5rem;
  1209. line-height: 1.31;
  1210. margin-bottom: 30px;
  1211. }
  1212. .homepage .streamfield-column p:first-child a {
  1213. text-decoration-skip-ink: none;
  1214. text-decoration-thickness: 3px;
  1215. text-underline-offset: 4px;
  1216. }
  1217. .homepage .streamfield-column p {
  1218. font-size: 0.875rem;
  1219. line-height: 1.57;
  1220. }
  1221. .homepage .streamfield-column p:last-child {
  1222. margin-bottom: 0;
  1223. }
  1224. @media (min-width: 768px) {
  1225. .homepage .streamfield-column p {
  1226. font-size: var(--font-md);
  1227. line-height: 1.55;
  1228. }
  1229. }
  1230. @media (min-width: 992px) {
  1231. .homepage .streamfield-column {
  1232. padding: 140px 0;
  1233. }
  1234. .homepage .streamfield-column p:first-child {
  1235. font-size: 3.75rem;
  1236. line-height: 1.07;
  1237. margin-bottom: 60px;
  1238. }
  1239. }
  1240. /* #endregion */
  1241. /* #region -- Promo Section */
  1242. .homepage .promo-row {
  1243. padding: 40px 0 80px;
  1244. }
  1245. @media (min-width: 768px) {
  1246. .homepage .promo-row {
  1247. padding-top: 80px;
  1248. margin-right: -45px;
  1249. }
  1250. }
  1251. .homepage .promo h2 {
  1252. margin-top: 0;
  1253. margin-bottom: 20px;
  1254. color: var(--white);
  1255. }
  1256. .homepage .promo p,
  1257. .homepage .promo li {
  1258. color: var(--white);
  1259. }
  1260. .homepage .promo a {
  1261. color: var(--white);
  1262. text-decoration: underline;
  1263. }
  1264. .homepage .promo {
  1265. background: var(--light-brown);
  1266. height: 100%;
  1267. padding: 60px 40px;
  1268. margin-top: 40px;
  1269. margin-bottom: 100px;
  1270. }
  1271. .homepage .promo-text {
  1272. padding: 0;
  1273. }
  1274. .homepage .promo figure img {
  1275. margin: 40px 0 -200px;
  1276. width: 100%;
  1277. height: auto;
  1278. }
  1279. @media (min-width: 768px) {
  1280. .homepage .promo {
  1281. margin-top: -180px;
  1282. margin-right: -120px;
  1283. padding: 180px 60px 40px;
  1284. }
  1285. .homepage .promo figure img {
  1286. width: calc(100% + 60px);
  1287. height: auto;
  1288. margin-right: -60px;
  1289. margin-bottom: -280px;
  1290. padding-top: 20px;
  1291. }
  1292. .homepage .promo p {
  1293. font-size: 1.25rem;
  1294. line-height: 1.35;
  1295. }
  1296. }
  1297. /* #endregion */
  1298. /* #region -- Featured Cards Section -- */
  1299. .homepage .featured-cards__list {
  1300. list-style: none;
  1301. padding-left: 0;
  1302. }
  1303. .homepage .featured-cards__title {
  1304. margin-top: 0;
  1305. margin-bottom: 40px;
  1306. }
  1307. .homepage .featured-cards__link {
  1308. display: flex;
  1309. flex-direction: row;
  1310. justify-content: baseline;
  1311. font-family: var(--font--primary);
  1312. margin: 0 auto;
  1313. width: max-content;
  1314. font-size: var(--font-md);
  1315. line-height: 1.28;
  1316. }
  1317. .homepage .featured-cards__chevron-icon {
  1318. margin-left: 8px;
  1319. width: 8px;
  1320. height: 22px;
  1321. transition: transform ease 0.1s;
  1322. }
  1323. .homepage .featured-cards__link:hover {
  1324. text-decoration: underline;
  1325. }
  1326. .homepage .featured-cards__link:hover .featured-cards__chevron-icon {
  1327. transform: translateX(5px);
  1328. }
  1329. .homepage .featured-cards__link:hover .featured-cards__chevron-icon path {
  1330. fill: var(--dark-orange);
  1331. }
  1332. @media (min-width: 768px) {
  1333. .homepage .featured-cards {
  1334. padding-right: 50px;
  1335. }
  1336. .homepage .featured-cards__link {
  1337. font-size: 1.5rem;
  1338. line-height: 30px;
  1339. margin: unset;
  1340. }
  1341. .homepage .featured-cards__chevron-icon {
  1342. width: 12px;
  1343. height: 28px;
  1344. align-self: center;
  1345. }
  1346. }
  1347. /* #endregion */
  1348. /* #region -- Location Section -- */
  1349. .homepage .locations-section {
  1350. padding: 40px 0 20px;
  1351. text-align: center;
  1352. }
  1353. .homepage .locations-section__title {
  1354. color: var(--dark);
  1355. font-style: normal;
  1356. font-weight: 400;
  1357. font-size: 2.375rem;
  1358. line-height: 1.16;
  1359. margin-bottom: 40px;
  1360. }
  1361. @media (min-width: 768px) {
  1362. .homepage .locations-section {
  1363. text-align: left;
  1364. padding: 120px 0 160px;
  1365. }
  1366. .homepage .locations-section__title {
  1367. font-size: 3.75rem;
  1368. line-height: 1.07;
  1369. /* Aligns title with below cards */
  1370. padding-left: 10px;
  1371. }
  1372. }
  1373. /* #endregion */
  1374. /* #region -- Blog Section -- */
  1375. .homepage .blog-section {
  1376. padding: 80px 20px 100px;
  1377. text-align: center;
  1378. }
  1379. .homepage .blog-section__background {
  1380. background-color: var(--cream);
  1381. }
  1382. .homepage .blog-section__title {
  1383. color: var(--dark-brown);
  1384. font-weight: 400;
  1385. font-size: 2.375rem;
  1386. line-height: 1.16;
  1387. margin-bottom: 60px;
  1388. margin-top: 0;
  1389. }
  1390. .homepage .blog-section__grid {
  1391. display: grid;
  1392. gap: 10px;
  1393. grid-template-columns: 1fr;
  1394. }
  1395. @media (min-width: 566px) {
  1396. .homepage .blog-section__grid {
  1397. grid-template-columns: 1fr 1fr;
  1398. }
  1399. }
  1400. @media (min-width: 768px) {
  1401. .homepage .blog-section {
  1402. padding: 90px 0 110px;
  1403. }
  1404. }
  1405. @media (min-width: 966px) {
  1406. .homepage .blog-section__grid {
  1407. grid-template-columns: 1fr 1fr 1fr;
  1408. }
  1409. .homepage .blog-section__title {
  1410. margin-bottom: 90px;
  1411. font-size: 7.5rem;
  1412. line-height: 1.21;
  1413. }
  1414. }
  1415. /* #endregion */
  1416. /* Miscellaneous helper styles */
  1417. /* No gutters */
  1418. .row.no-gutters {
  1419. margin-right: 0;
  1420. margin-left: 0;
  1421. }
  1422. @media (max-width: 970px) {
  1423. .row.no-gutters {
  1424. display: block;
  1425. }
  1426. }
  1427. .row.no-gutters > [class^='col-'],
  1428. .row.no-gutters > [class*=' col-'] {
  1429. padding-right: 0;
  1430. padding-left: 0;
  1431. }
  1432. /* Bootstrap Equal height rows */
  1433. .row-eq-height {
  1434. display: box;
  1435. display: flex;
  1436. display: flexbox;
  1437. display: flex;
  1438. flex-wrap: wrap;
  1439. }
  1440. @media (min-width: 992px) {
  1441. .hidden-md-up {
  1442. display: none;
  1443. }
  1444. }
  1445. @media (max-width: 991px) {
  1446. .hidden-md-down {
  1447. display: none;
  1448. }
  1449. }
  1450. /* From Wagtail core */
  1451. .richtext-image.left {
  1452. float: left;
  1453. width: 50%;
  1454. }
  1455. .richtext-image.right {
  1456. float: right;
  1457. width: 50%;
  1458. }
  1459. /* ---- Component Styles ---- */
  1460. /* #region ---- Picture Card ---- */
  1461. .picture-card {
  1462. position: relative;
  1463. }
  1464. .picture-card__link:hover .picture-card__image img {
  1465. transform: scale(1.05);
  1466. }
  1467. .picture-card__link:hover .picture-card__title {
  1468. text-decoration: underline;
  1469. }
  1470. .picture-card__title {
  1471. color: var(--white);
  1472. font-family: var(--font--primary);
  1473. font-size: 1.625rem;
  1474. line-height: 1.15;
  1475. margin: 0;
  1476. }
  1477. .picture-card__image {
  1478. overflow: hidden;
  1479. margin-bottom: 0;
  1480. }
  1481. .picture-card__image img {
  1482. transition: transform 0.2s ease;
  1483. }
  1484. .picture-card__image::before {
  1485. content: '';
  1486. position: absolute;
  1487. height: 200px;
  1488. left: 0;
  1489. right: 0;
  1490. bottom: 0;
  1491. background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, #000 67.69%);
  1492. z-index: 2;
  1493. }
  1494. .picture-card__contents {
  1495. position: absolute;
  1496. top: 0;
  1497. bottom: 0;
  1498. left: 0;
  1499. right: 0;
  1500. text-align: left;
  1501. display: flex;
  1502. align-items: end;
  1503. padding: 20px;
  1504. z-index: 2;
  1505. }
  1506. @media (min-width: 768px) {
  1507. .picture-card__title {
  1508. font-size: 2rem;
  1509. line-height: 1.31;
  1510. }
  1511. .picture-card__contents {
  1512. padding: 30px 40px;
  1513. }
  1514. }
  1515. /* #endregion */
  1516. /* #region ---- Listing Card ---- */
  1517. .listing-card {
  1518. margin-bottom: 40px;
  1519. }
  1520. .listing-card__meta {
  1521. border-collapse: separate;
  1522. border-spacing: 5px;
  1523. }
  1524. .listing-card__link {
  1525. display: flex;
  1526. flex-direction: row;
  1527. padding-bottom: 30px;
  1528. border-bottom: 1px solid var(--border-grey);
  1529. }
  1530. .listing-card__contents {
  1531. padding-top: 10px;
  1532. padding-left: 25px;
  1533. }
  1534. .listing-card__title {
  1535. color: var(--orange);
  1536. margin-top: 0;
  1537. }
  1538. .listing-card__meta-category {
  1539. color: var(--grey);
  1540. font-size: 0.875rem;
  1541. line-height: 1.57;
  1542. padding-right: 10px;
  1543. vertical-align: top;
  1544. }
  1545. .listing-card__meta-content {
  1546. color: var(--dark);
  1547. font-size: 0.875rem;
  1548. line-height: 1.57;
  1549. vertical-align: top;
  1550. }
  1551. .listing-card__meta-row:last-child {
  1552. margin-bottom: 0;
  1553. }
  1554. .listing-card__image {
  1555. width: 100%;
  1556. overflow: hidden;
  1557. margin: 0;
  1558. max-width: 100px;
  1559. max-height: 110px;
  1560. }
  1561. .listing-card__image img {
  1562. transition: transform ease 0.2s;
  1563. }
  1564. .listing-card:hover .listing-card__image img {
  1565. transform: scale(1.05);
  1566. }
  1567. .listing-card:hover .listing-card__title {
  1568. color: var(--dark-orange);
  1569. text-decoration: underline;
  1570. }
  1571. @media (min-width: 768px) {
  1572. .listing-card__contents {
  1573. padding-left: 45px;
  1574. padding-top: 30px;
  1575. }
  1576. .listing-card__image {
  1577. width: 100%;
  1578. overflow: hidden;
  1579. margin: 0;
  1580. max-width: 180px;
  1581. max-height: 180px;
  1582. }
  1583. .listing-card__meta-category,
  1584. .listing-card__meta-content {
  1585. font-size: var(--font-sm);
  1586. line-height: 1.5;
  1587. }
  1588. }
  1589. /* #endregion */
  1590. /* #region ---- Blog Listing Card ---- */
  1591. .blog-listing-card {
  1592. padding-bottom: 40px;
  1593. width: 100%;
  1594. }
  1595. .blog-listing-card:last-child {
  1596. padding-bottom: 100px;
  1597. }
  1598. .blog-listing-card__link {
  1599. display: flex;
  1600. flex-direction: column;
  1601. padding-bottom: 30px;
  1602. border-bottom: 1px solid var(--transparent-border);
  1603. }
  1604. .blog-listing-card__contents {
  1605. padding-top: 10px;
  1606. }
  1607. .blog-listing-card__title {
  1608. font-size: 1.625rem;
  1609. line-height: 1.15;
  1610. color: var(--orange);
  1611. margin-top: 0;
  1612. margin-bottom: 8px;
  1613. }
  1614. .blog-listing-card__introduction {
  1615. font-size: var(--font-sm);
  1616. line-height: 1.5;
  1617. color: var(--dark);
  1618. margin-bottom: 8px;
  1619. max-width: 530px;
  1620. }
  1621. .blog-listing-card__metadata {
  1622. font-size: 0.875rem;
  1623. line-height: 1.43;
  1624. color: var(--grey);
  1625. margin-bottom: 0;
  1626. }
  1627. .blog-listing-card__image {
  1628. width: 100%;
  1629. overflow: hidden;
  1630. margin: 0;
  1631. }
  1632. .blog-listing-card__image img {
  1633. transition: transform ease 0.2s;
  1634. }
  1635. .blog-listing-card:hover .blog-listing-card__image img {
  1636. transform: scale(1.05);
  1637. }
  1638. .blog-listing-card:hover .blog-listing-card__title {
  1639. color: var(--dark-orange);
  1640. text-decoration: underline;
  1641. }
  1642. @media (min-width: 768px) {
  1643. .blog-listing-card:last-child {
  1644. padding-bottom: 200px;
  1645. }
  1646. .blog-listing-card__link {
  1647. flex-direction: row;
  1648. }
  1649. .blog-listing-card__contents {
  1650. padding-top: 30px;
  1651. padding-left: 45px;
  1652. }
  1653. .blog-listing-card__title {
  1654. font-size: 2rem;
  1655. line-height: 1.31;
  1656. }
  1657. .blog-listing-card__introduction {
  1658. font-size: var(--font-md);
  1659. line-height: 1.55;
  1660. }
  1661. .blog-listing-card__image {
  1662. flex-shrink: 0;
  1663. overflow: hidden;
  1664. margin: 0;
  1665. width: 325px;
  1666. height: 250px;
  1667. }
  1668. }
  1669. /* #endregion */
  1670. /* #region ---- Location Card ---- */
  1671. .location-card {
  1672. display: flex;
  1673. flex-direction: column;
  1674. margin: 0 auto 50px;
  1675. text-align: left;
  1676. }
  1677. .location-card:hover .location-card__image img {
  1678. transform: scale(1.05);
  1679. }
  1680. .location-card:hover .location-card__title {
  1681. color: var(--dark-orange);
  1682. }
  1683. .location-card__image {
  1684. margin-bottom: 0;
  1685. overflow: hidden;
  1686. }
  1687. .location-card__image img {
  1688. object-fit: cover;
  1689. min-height: 210px;
  1690. transition: transform 0.2s ease;
  1691. }
  1692. .location-card__title {
  1693. color: var(--orange);
  1694. font-size: 1.625rem;
  1695. line-height: 1.15;
  1696. margin-bottom: 10px;
  1697. font-weight: 400;
  1698. width: max-content;
  1699. position: relative;
  1700. }
  1701. .location-card__title::before {
  1702. content: '';
  1703. bottom: 3px;
  1704. position: absolute;
  1705. left: 0;
  1706. right: 0;
  1707. height: 2px;
  1708. background-color: var(--dark-orange);
  1709. opacity: 0;
  1710. transition: opacity 0.3s ease;
  1711. }
  1712. .location-card:hover .location-card__title::before {
  1713. opacity: 1;
  1714. }
  1715. .location-card__text {
  1716. color: var(--dark);
  1717. font-size: var(--font-sm);
  1718. line-height: 1.5;
  1719. }
  1720. @media (min-width: 768px) {
  1721. .location-card {
  1722. margin-bottom: 0;
  1723. }
  1724. .location-card__image {
  1725. margin-bottom: 30px;
  1726. }
  1727. .location-card__image img {
  1728. min-height: 320px;
  1729. }
  1730. .location-card__title {
  1731. font-size: 2rem;
  1732. line-height: 1.31;
  1733. margin-bottom: 20px;
  1734. }
  1735. .location-card__text {
  1736. font-size: var(--font-md);
  1737. line-height: 1.55;
  1738. }
  1739. }
  1740. /* #endregion */
  1741. /* Utilities */
  1742. .u-sr-only {
  1743. position: absolute;
  1744. width: 1px;
  1745. height: 1px;
  1746. padding: 0;
  1747. margin: -1px;
  1748. overflow: hidden;
  1749. clip: rect(0, 0, 0, 0);
  1750. white-space: nowrap;
  1751. border: 0;
  1752. }