main.css 34 KB

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