main.css 34 KB

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