main.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  1. /* The bakery demo avoids using tooling so doesn't use SASS. This is a static */
  2. /* CSS file that extends Bootstrap. It's deliberately verbose to aid */
  3. /* readability with global themes, themes for each list view and themes for */
  4. /* each detail view */
  5. /* 1. Global styles --------------------------------------------------------- */
  6. /* 2. Page header ----------------------------------------------------------- */
  7. /* 3. Main menu ------------------------------------------------------------- */
  8. /* 4. Breadcrumb ------------------------------------------------------------ */
  9. /* 5. Location styles ------------------------------------------------------- */
  10. /* 6. Blog styles ----------------------------------------------------------- */
  11. /* 7. Bread styles ---------------------------------------------------------- */
  12. /* 8. Form styles ----------------------------------------------------------- */
  13. /* 9. Homepage styles ------------------------------------------------------- */
  14. /* 9. Miscellaneous/ Helper styles ------------------------------------------ */
  15. /* Global styles */
  16. /* CSS Variables */
  17. :root {
  18. --dark: #333333;
  19. --grey: #6e6e6e;
  20. --border-grey: #E1DCD3;
  21. --transparent-border: rgba(135, 116, 79, 0.25);
  22. --white: #ffffff;
  23. --cream: #f5f3e9;
  24. --light-brown: #87744f;
  25. --mid-brown: #825600;
  26. --dark-brown: #553801;
  27. --orange: #c55302;
  28. --dark-orange: #833701;
  29. --font--primary: "Marcellus", serif;
  30. --font--secondary: "Open Sans", sans-serif;
  31. --font-sm: 1rem;
  32. --font-md: 1.125rem;
  33. }
  34. html {
  35. font-size: 16px;
  36. }
  37. [hidden] {
  38. display: none !important;
  39. }
  40. /* Body */
  41. body {
  42. font-family: var(--font--secondary);
  43. font-size: 1rem;
  44. line-height: 1.5;
  45. padding-top: 0;
  46. padding-bottom: 0;
  47. background: var(--white);
  48. color: var(--dark);
  49. min-height: 100vh;
  50. }
  51. body.no-scroll {
  52. overflow-y: hidden;
  53. }
  54. @media (min-width: 768px) {
  55. body {
  56. font-size: var(--font-md);
  57. line-height: 1.55;
  58. }
  59. }
  60. /* Headings and Paragraphs */
  61. h1,
  62. h2,
  63. h3 {
  64. font-family: var(--font--primary);
  65. font-weight: 400;
  66. color: var(--dark);
  67. }
  68. h1 {
  69. font-size: 2.375rem;
  70. line-height: 1.16;
  71. }
  72. h2 {
  73. font-size: 2rem;
  74. line-height: 1.25;
  75. }
  76. h3 {
  77. font-size: 1.625rem;
  78. line-height: 1.15;
  79. }
  80. h4 {
  81. font-family: var(--font--secondary);
  82. font-style: normal;
  83. font-weight: 600;
  84. font-size: 1.25rem;
  85. line-height: 1.35;
  86. color: var(--dark);
  87. }
  88. p {
  89. font-family: var(--font--secondary);
  90. font-style: normal;
  91. font-weight: 400;
  92. font-size: var(--font-sm);
  93. line-height: 1.5;
  94. color: var(--dark);
  95. }
  96. @media (min-width: 768px) {
  97. body {
  98. font-size: var(--font-md);
  99. line-height: 1.55;
  100. }
  101. h1 {
  102. font-size: 3.75rem;
  103. line-height: 1.07;
  104. }
  105. h2 {
  106. font-size: 2.875rem;
  107. line-height: 1.09;
  108. }
  109. h3 {
  110. font-size: 2rem;
  111. line-height: 1.31;
  112. }
  113. h4 {
  114. font-size: 1.5rem;
  115. line-height: 1.38;
  116. }
  117. p {
  118. font-size: var(--font-md);
  119. line-height: 1.55;
  120. margin: 0 0 30px;
  121. }
  122. }
  123. ol,
  124. ul {
  125. margin-bottom: 30px;
  126. }
  127. .hero h1 {
  128. color: var(--white);
  129. position: relative;
  130. }
  131. @media (min-width: 768px) {
  132. .intro {
  133. font-size: 1.875rem;
  134. margin: 0 0 60px;
  135. }
  136. }
  137. /* Links, Lists, Figures */
  138. a,
  139. a:focus,
  140. a:visited {
  141. color: var(--orange);
  142. text-decoration: none;
  143. }
  144. a:hover {
  145. color: var(--dark-orange);
  146. text-decoration: none;
  147. }
  148. a.btn {
  149. background-color: var(--orange);
  150. color: var(--white);
  151. display: inline-block;
  152. font-family: var(--font--secondary);
  153. font-size: var(--font-md);
  154. line-height: 1.55;
  155. font-weight: 700;
  156. padding: 15px 20px;
  157. }
  158. a.btn:hover {
  159. background-color: var(--grey);
  160. color: var(--white);
  161. }
  162. a.btn-sm {
  163. border-radius: 4px;
  164. font-size: 1rem;
  165. line-height: normal;
  166. padding: 6px 8px;
  167. }
  168. ul {
  169. margin: 0 0 30px;
  170. }
  171. @media (min-width: 768px) {
  172. ul {
  173. margin: 0 0 50px;
  174. }
  175. }
  176. figure {
  177. margin: 30px 0;
  178. position: relative;
  179. }
  180. @media (min-width: 768px) {
  181. figure {
  182. margin: 40px 0;
  183. }
  184. }
  185. figcaption {
  186. color: var(--grey);
  187. font-family: var(--font--secondary);
  188. font-size: 0.875rem;
  189. line-height: 1.57;
  190. padding-top: 10px;
  191. }
  192. @media (min-width: 768px) {
  193. figcaption {
  194. font-size: var(--font-sm);
  195. line-height: 1.5;
  196. }
  197. }
  198. img {
  199. display: block;
  200. width: 100%;
  201. height: auto;
  202. }
  203. figure img {
  204. display: block;
  205. width: 100%;
  206. height: auto;
  207. }
  208. /* Generic detail page styles */
  209. .intro {
  210. font-family: var(--font--secondary);
  211. font-weight: 300;
  212. margin: 0 0 40px;
  213. font-size: 1.375rem;
  214. }
  215. .alert {
  216. margin: 40px auto 0 auto;
  217. max-width: 1400px;
  218. border-radius: 0;
  219. background-color: var(--orange);
  220. color: var(--white);
  221. padding: 40px 40px;
  222. }
  223. .alert > .alert__title {
  224. color: var(--white);
  225. font-family: var(--font--primary);
  226. font-size: 1.625rem;
  227. margin-bottom: 5px;
  228. }
  229. .alert__messages {
  230. list-style-type: none;
  231. margin: 0;
  232. padding-left: 0;
  233. }
  234. /* Hero image area */
  235. .hero {
  236. background-size: cover;
  237. background-position: center;
  238. padding: 300px 0 0 0;
  239. position: relative;
  240. margin: 0 0 10px;
  241. }
  242. @media screen and (min-width: 768px) {
  243. .hero {
  244. padding: 250px 0 0 0;
  245. margin: 0;
  246. }
  247. .hero.hero--blog {
  248. padding: 400px 0 0 0;
  249. }
  250. }
  251. .hero-gradient-mask {
  252. position: absolute;
  253. width: 100%;
  254. height: 100%;
  255. bottom: 0;
  256. background: linear-gradient(0deg, #000000 11.33%, rgba(0, 0, 0, 0) 100%);
  257. }
  258. @media (min-width: 768px) {
  259. .hero-gradient-mask {
  260. background: linear-gradient(90deg, #000000 11.33%, rgba(0, 0, 0, 0) 100%);
  261. }
  262. }
  263. .hero__container {
  264. width: 100%;
  265. padding: 30px 20px 100px 20px;
  266. background-color: var(--orange);
  267. margin: 0 auto;
  268. }
  269. @media (min-width: 768px) {
  270. .hero__container {
  271. background-color: transparent;
  272. max-width: 1400px;
  273. padding: 0 40px;
  274. }
  275. }
  276. .hero__title {
  277. color: var(--white);
  278. font-weight: 400;
  279. font-size: 2.875rem;
  280. line-height: 1.09;
  281. margin: 0;
  282. width: 100%;
  283. }
  284. @media (min-width: 768px) {
  285. .hero__title {
  286. background-color: var(--orange);
  287. width: max-content;
  288. max-width: 100%;
  289. font-size: 6.25rem;
  290. line-height: 0.64;
  291. padding: 75px 65px;
  292. position: absolute;
  293. bottom: 0;
  294. left: 0;
  295. transform: translateY(50%);
  296. }
  297. }
  298. blockquote {
  299. border-left: 3px solid var(--orange);
  300. margin: 40px 0 30px 0;
  301. padding: 0 0 0 20px;
  302. }
  303. blockquote .text {
  304. color: var(--orange);
  305. margin: 0 0 30px 0;
  306. font-family: var(--font--primary);
  307. font-size: 1.625rem;
  308. line-height: 1.15;
  309. }
  310. blockquote .attribute_name {
  311. color: var(--dark);
  312. font-size: var(--font-md);
  313. line-height: 1.56;
  314. margin: 0;
  315. padding: 0;
  316. }
  317. @media (min-width: 768px) {
  318. blockquote {
  319. border-left: 3px solid var(--orange);
  320. margin: 50px 0;
  321. padding: 0 40px;
  322. }
  323. blockquote .text {
  324. font-size: 2rem;
  325. line-height: 1.31;
  326. }
  327. }
  328. /* Richtext Styles */
  329. .block-paragraph_block p {
  330. color: var(--dark);
  331. }
  332. .block-paragraph_block a {
  333. text-decoration: underline;
  334. }
  335. @media screen and (min-width: 768px) {
  336. .header,
  337. .footer {
  338. padding-right: 0;
  339. padding-left: 0;
  340. }
  341. }
  342. /* Page header */
  343. .header {
  344. padding: 0;
  345. width: 100%;
  346. background: var(--white);
  347. z-index: 10;
  348. }
  349. .index-header__title {
  350. color: var(--dark);
  351. font-weight: 400;
  352. font-size: 2.875rem;
  353. line-height: 1.09;
  354. margin-top: 30px;
  355. }
  356. .index-header__introduction {
  357. color: var(--dark);
  358. font-family: var(--font--primary);
  359. font-weight: 400;
  360. font-size: 1.625rem;
  361. line-height: 1.15;
  362. margin-top: 20px;
  363. margin-bottom: 60px;
  364. }
  365. .index-header__introduction.index-header__introduction--blog {
  366. margin-bottom: 20px;
  367. }
  368. .index-header__body-introduction p:first-child {
  369. color: var(--dark);
  370. font-family: var(--font--primary);
  371. font-weight: 400;
  372. font-size: 1.625rem;
  373. line-height: 30px;
  374. margin-top: 20px;
  375. margin-bottom: 30px;
  376. }
  377. .index-header__body-introduction {
  378. margin-bottom: 30px;
  379. }
  380. @media (min-width: 768px) {
  381. .index-header__title {
  382. font-size: 6.25rem;
  383. line-height: 0.64;
  384. margin-top: 70px;
  385. }
  386. .index-header__introduction {
  387. font-size: 2rem;
  388. line-height: 1.31;
  389. margin-top: 40px;
  390. margin-bottom: 40px;
  391. }
  392. .index-header__body-introduction p:first-child {
  393. font-size: 2rem;
  394. line-height: 42px;
  395. margin-top: 40px;
  396. margin-bottom: 40px;
  397. }
  398. .index-header__body-introduction {
  399. margin-bottom: 30px;
  400. }
  401. .index-header__title.index-header__title--blog {
  402. line-height: 1.1;
  403. }
  404. }
  405. /* Main menu */
  406. .navigation {
  407. display: flex;
  408. flex-direction: row;
  409. align-items: center;
  410. padding: 25px 0;
  411. }
  412. .navigation__mobile {
  413. position: absolute;
  414. top: 0;
  415. left: 0;
  416. right: 0;
  417. bottom: 0;
  418. background-color: var(--white);
  419. z-index: 10;
  420. display: flex;
  421. flex-direction: column;
  422. align-items: center;
  423. text-align: center;
  424. padding-top: 80px;
  425. }
  426. .navigation__mobile-toggle {
  427. background-color: transparent;
  428. border: none;
  429. }
  430. .navigation__mobile-toggle[aria-expanded="true"] {
  431. position: absolute;
  432. z-index: 15;
  433. top: 30px;
  434. right: 20px;
  435. }
  436. @media (min-width: 1150px) {
  437. .navigation__mobile {
  438. display: none;
  439. }
  440. }
  441. .navigation__mobile-toggle[aria-expanded="true"] .navigation__toggle-icon-bar {
  442. opacity: 0;
  443. }
  444. .navigation__mobile-toggle[aria-expanded="true"] .navigation__toggle-icon-bar:first-of-type {
  445. transform: translateY(10px) rotate(45deg);
  446. opacity: 1;
  447. }
  448. .navigation__mobile-toggle[aria-expanded="true"] .navigation__toggle-icon-bar:last-child {
  449. transform: translateY(-10px) rotate(-45deg);
  450. opacity: 1;
  451. }
  452. .navigation__mobile-search {
  453. margin-top: 20px;
  454. position: relative;
  455. }
  456. .navigation__search {
  457. display: none;
  458. margin: 15px 0 0 0;
  459. position: relative;
  460. }
  461. .navigation__search-icon {
  462. display: block;
  463. position: absolute;
  464. right: 13px;
  465. top: 13px;
  466. }
  467. @media (min-width: 768px) {
  468. .navigation__search-icon {
  469. top: 11px;
  470. }
  471. }
  472. .navigation__search-input {
  473. color: var(--dark);
  474. font-size: var(--font-sm);
  475. line-height: 1.5;
  476. border: 1px solid var(--dark);
  477. padding: 10px;
  478. }
  479. .navigation__items {
  480. list-style: none;
  481. margin: 0;
  482. padding: 20px 0 0 0;
  483. }
  484. .navigation__desktop {
  485. display: none;
  486. }
  487. @media (min-width: 1150px) {
  488. .navigation__desktop {
  489. display: block;
  490. }
  491. .navigation__search {
  492. display: block;
  493. margin: 0 0 0 auto;
  494. }
  495. .navigation__items {
  496. padding: 0 0 0 20px;
  497. }
  498. }
  499. .navigation__items>li {
  500. padding: 10px 0;
  501. }
  502. .navigation__items>li>a {
  503. color: var(--dark);
  504. font-family: var(--font--secondary);
  505. font-size: var(--font-md);
  506. line-height: 1.55;
  507. padding: 10px 0;
  508. }
  509. @media (min-width: 1150px) {
  510. .navigation__items {
  511. display: block;
  512. }
  513. .navigation__items>li {
  514. padding: 0 0 0 20px;
  515. }
  516. .navigation__items>li>a {
  517. padding: 10px;
  518. }
  519. .navigation__items>li:first-child {
  520. padding: 0 0 0 20px;
  521. }
  522. }
  523. /* N.B. We're overriding Bootstrap's default nav styles here,
  524. these rules set what the currently active nav tab looks like. */
  525. .navigation__items>li.active>a,
  526. .navigation__items>li.active>a:focus,
  527. .navigation__items>li.active>a:hover {
  528. color: var(--dark);
  529. border-radius: 0;
  530. border: none;
  531. background-color: transparent;
  532. }
  533. .navigation__items>li:hover,
  534. .navigation__items>li>a:focus,
  535. .navigation__items>li>a:hover {
  536. text-decoration: underline;
  537. }
  538. .navigation__mobile-toggle {
  539. margin: 0 0 0 auto;
  540. }
  541. /* Required as bootstrap nav automatically hides this otherwise */
  542. @media (min-width: 768px) {
  543. .navigation__mobile-toggle {
  544. display: block;
  545. }
  546. }
  547. @media (min-width: 1150px) {
  548. .navigation__mobile-toggle {
  549. display: none;
  550. }
  551. }
  552. .navigation__toggle-icon-bar {
  553. background-color: var(--dark);
  554. width: 30px;
  555. height: 2px;
  556. margin-bottom: 8px;
  557. display: block;
  558. }
  559. .navigation__toggle-icon-bar:last-child {
  560. margin-bottom: 0;
  561. }
  562. .collapse.in {
  563. padding: 0;
  564. }
  565. @media (max-width: 1150px) {
  566. .collapse.in {
  567. flex-basis: 100%;
  568. overflow-y: hidden;
  569. }
  570. .collapse.in .navigation__items {
  571. display: block;
  572. }
  573. }
  574. .navigation__logo,
  575. .navigation__logo:visited,
  576. .navigation__logo:focus {
  577. display: inline-block;
  578. color: var(--dark);
  579. font-family: var(--font--primary);
  580. font-weight: 400;
  581. font-size: 1.5rem;
  582. line-height: 1.25;
  583. margin: 0 0 0;
  584. position: relative;
  585. }
  586. @media (min-width: 1150px) {
  587. .navigation__logo::after {
  588. content: '';
  589. position: absolute;
  590. right: -20px;
  591. top: -5px;
  592. bottom: 0;
  593. width: 1px;
  594. height: 42px;
  595. background-color: var(--border-grey);
  596. }
  597. }
  598. .dropdown-menu {
  599. background-color: var(--cream);
  600. border-radius: 0;
  601. border: transparent;
  602. }
  603. .dropdown-menu>li>a {
  604. border-bottom: 1px solid var(--border-grey);
  605. color: var(--dark);
  606. font-family: var(--font--secondary);
  607. padding: 10px 20px;
  608. }
  609. .dropdown-menu>li>a:hover {
  610. text-decoration: underline;
  611. }
  612. /* Menu dropdown hack to allow toggling */
  613. li.has-submenu a.allow-toggle {
  614. float: left;
  615. padding-right: 0;
  616. }
  617. .caret-custom {
  618. float: right;
  619. padding: 10px 10px 15px 5px !important;
  620. }
  621. .caret-custom:after {
  622. content: "▼" !important;
  623. }
  624. /* Mobile menu styling */
  625. @media (max-width: 1150px) {
  626. .nav-pills>.presentation {
  627. float: none;
  628. width: 100%;
  629. }
  630. }
  631. /* Custom page footer */
  632. hr {
  633. margin: 0;
  634. border-top: 1px solid var(--light-brown);
  635. opacity: 0.25;
  636. }
  637. footer {
  638. padding: 55px 0 30px 0;
  639. background-color: var(--white);
  640. }
  641. .footer__icon a {
  642. color: var(--cream);
  643. font-size: 1.5rem;
  644. }
  645. .footer__icon .fa-inverse {
  646. color: var(--orange);
  647. }
  648. .footer__icon:hover a {
  649. color: var(--orange);
  650. }
  651. .footer__icon:hover .fa-inverse {
  652. color: var(--cream);
  653. }
  654. .copyright p {
  655. color: var(--dark);
  656. font-family: var(--font--secondary);
  657. font-size: var(--font-sm);
  658. line-height: 1.5;
  659. }
  660. @media (min-width: 768px) {
  661. .copyright p {
  662. font-size: var(--font-md);
  663. line-height: 1.55;
  664. }
  665. }
  666. .container {
  667. width: auto;
  668. padding-left: 20px;
  669. padding-right: 20px;
  670. }
  671. @media (min-width: 768px) {
  672. .container {
  673. max-width: 1400px;
  674. padding-left: 40px;
  675. padding-right: 40px;
  676. }
  677. }
  678. .container-narrow>hr {
  679. margin: 30px 0;
  680. }
  681. /* Breadcrumbs */
  682. .breadcrumb-container {
  683. position: relative;
  684. z-index: 3;
  685. margin-bottom: 15px;
  686. }
  687. .breadcrumb {
  688. color: var(--dark);
  689. font-family: var(--font--secondary);
  690. font-size: var(--font-sm);
  691. line-height: 1.5;
  692. margin-bottom: 0px;
  693. padding-left: 0px;
  694. text-decoration: underline;
  695. background-color: transparent;
  696. }
  697. .breadcrumb>li+li:before {
  698. display: none;
  699. }
  700. .breadcrumb__chevron-icon {
  701. width: 8px;
  702. height: 16px;
  703. margin: 0 10px;
  704. }
  705. .breadcrumb__chevron-icon path {
  706. fill: var(--dark);
  707. }
  708. .breadcrumb a,
  709. .breadcrumb .active {
  710. color: var(--dark);
  711. text-decoration: underline;
  712. }
  713. .breadcrumb a:hover {
  714. color: var(--dark-orange);
  715. }
  716. /* Pagination navigation */
  717. .pagination {
  718. display: block;
  719. margin: 0 auto 40px auto;
  720. }
  721. .pagination__list {
  722. display: flex;
  723. width: 100%;
  724. justify-content: center;
  725. gap: 20px;
  726. list-style-type: none;
  727. padding-left: 0;
  728. }
  729. .pagination .page-item a {
  730. text-transform: capitalize;
  731. text-decoration: underline;
  732. }
  733. .pagination .page-item.active span {
  734. color: var(--grey);
  735. }
  736. .pagination .page-item.disabled a {
  737. color: var(--grey);
  738. text-decoration: none;
  739. cursor: default;
  740. }
  741. /* Search page */
  742. .search__introduction {
  743. color: var(--dark);
  744. font-family: var(--font--primary);
  745. font-weight: 400;
  746. font-size: 1.625rem;
  747. line-height: 1.15;
  748. margin-top: 20px;
  749. margin-bottom: 40px;
  750. }
  751. .search__results {
  752. list-style-type: none;
  753. padding-left: 0;
  754. margin-bottom: 90px;
  755. }
  756. @media (min-width: 768px) {
  757. .search__introduction {
  758. margin-bottom: 60px;
  759. }
  760. .search__results {
  761. margin-bottom: 120px;
  762. }
  763. }
  764. /* Location list page */
  765. .location-list-page {
  766. padding: 0 0 70px 0;
  767. display: grid;
  768. grid-template-columns: 1fr;
  769. gap: 10px;
  770. }
  771. @media (min-width: 768px) {
  772. .location-list-page {
  773. padding: 50px 0 110px 0;
  774. grid-template-columns: 1fr 1fr;
  775. gap: 30px;
  776. }
  777. }
  778. /* Location detail page */
  779. .location__meta-title {
  780. font-family: var(--font--primary);
  781. margin-top: 30px;
  782. margin-bottom: 10px;
  783. font-size: 1.625rem;
  784. line-height: 1.23;
  785. }
  786. .location__meta-title:first-child {
  787. margin-top: 0;
  788. }
  789. .location__day {
  790. font-weight: bold;
  791. font-family: var(--font--secondary);
  792. }
  793. .location__time {
  794. display: block;
  795. }
  796. /* ---- Blog Index Page ---- */
  797. .blog-tags {
  798. list-style: none;
  799. display: flex;
  800. flex-wrap: wrap;
  801. padding-left: 0;
  802. row-gap: 25px;
  803. column-gap: 15px;
  804. margin-bottom: 70px;
  805. }
  806. .blog-tags.blog-tags--condensed {
  807. column-gap: 0;
  808. }
  809. .blog-tags__pill {
  810. padding: 10px 18px;
  811. font-size: var(--font-md);
  812. line-height: 1.55;
  813. border: 1px solid var(--orange);
  814. border-radius: 60px;
  815. margin-left: 20px;
  816. text-transform: capitalize;
  817. }
  818. .blog-tags__pill--selected {
  819. background-color: var(--dark-orange);
  820. border: 1px solid var(--dark-orange);
  821. color: var(--white);
  822. }
  823. .blog-tags__pill:hover.blog-tags__pill--selected{
  824. background-color: var(--dark-orange);
  825. }
  826. .blog-tags__pill:first-child {
  827. margin-left: 0;
  828. }
  829. .blog-tags__pill:hover {
  830. background-color: var(--orange);
  831. color: var(--white);
  832. }
  833. .blog-tags__tag {
  834. color: var(--orange);
  835. text-transform: capitalize;
  836. }
  837. .blog-list {
  838. padding: 0;
  839. }
  840. .blog-list-item {
  841. display: flex;
  842. flex-direction: column;
  843. margin-bottom: 20px;
  844. }
  845. .blog-list-item a {
  846. display: flex;
  847. flex-grow: 1;
  848. flex-direction: column;
  849. }
  850. .blog-list-item:hover img {
  851. opacity: 0.3;
  852. }
  853. .blog-list-item .image {
  854. overflow: hidden;
  855. background-color: #eb7400;
  856. flex: 1 0 auto;
  857. }
  858. .blog-list-item .image img {
  859. min-height: 510px;
  860. width: auto;
  861. min-width: 100%;
  862. }
  863. .blog-list-item .text {
  864. background: linear-gradient(to bottom,
  865. rgba(0, 0, 0, 0) 0%,
  866. rgba(0, 0, 0, 0.6) 23%,
  867. rgba(0, 0, 0, 1) 50%);
  868. margin-top: -150px;
  869. padding: 20px;
  870. position: relative;
  871. z-index: 1;
  872. }
  873. .blog-list-item .text h2 {
  874. color: #fff;
  875. font-weight: 200;
  876. margin-top: 0;
  877. }
  878. .blog-list-item .text p {
  879. color: #e3e3e3;
  880. font-size: 0.875rem;
  881. margin-bottom: 0;
  882. }
  883. .blog-list-item .footer {
  884. background-color: #333;
  885. color: #fff;
  886. margin-top: 0;
  887. padding: 20px;
  888. position: relative;
  889. z-index: 1;
  890. }
  891. /* ---- Blog Page ---- */
  892. .blog__meta {
  893. margin-bottom: 20px;
  894. }
  895. .blog__avatar {
  896. border-radius: 100%;
  897. display: inline;
  898. width: unset;
  899. margin-right: 10px;
  900. }
  901. .blog__avatars {
  902. margin-bottom: 20px;
  903. }
  904. .blog__author {
  905. font-family: var(--font--primary);
  906. font-size: 1.375rem;
  907. line-height: 1.18;
  908. display: inline-block;
  909. margin-right: 40px;
  910. margin-bottom: 10px;
  911. }
  912. .blog__published {
  913. color: var(--grey);
  914. margin-bottom: 30px;
  915. }
  916. .blog__tag-introduction {
  917. font-size: var(--font-md);
  918. color: var(--grey);
  919. margin-bottom: 20px;
  920. margin-top: 60px;
  921. }
  922. @media (min-width: 768px) {
  923. .blog__published {
  924. margin-bottom: 40px;
  925. }
  926. .blog__avatars {
  927. margin-bottom: 40px;
  928. }
  929. .blog__tag-introduction {
  930. margin-top: 100px;
  931. }
  932. }
  933. /* ---- Gallery Page ---- */
  934. .gallery__container {
  935. padding-top: 40px;
  936. padding-bottom: 60px;
  937. }
  938. .gallery__introduction {
  939. color: var(--dark);
  940. font-family: var(--font--primary);
  941. font-size: 1.625rem;
  942. line-height: 1.15;
  943. margin: 0 0 60px 0;
  944. }
  945. .gallery__grid {
  946. display: grid;
  947. grid-template-columns: 1fr;
  948. gap: 10px;
  949. }
  950. @media (min-width: 768px) {
  951. .gallery__container {
  952. padding-top: 180px;
  953. padding-bottom: 80px;
  954. }
  955. .gallery__introduction {
  956. font-size: 2rem;
  957. line-height: 1.31;
  958. margin: 0 0 85px 0;
  959. }
  960. .gallery__grid {
  961. grid-template-columns: 1fr 1fr;
  962. gap: 30px;
  963. }
  964. }
  965. /* ---- Bread Index Page ---- */
  966. .bread-list {
  967. list-style-type: none;
  968. padding-left: 0;
  969. padding-bottom: 40px;
  970. }
  971. @media (min-width: 992px) {
  972. .bread-list {
  973. display: grid;
  974. grid-template-columns: 1fr 1fr;
  975. gap: 30px;
  976. padding-top: 30px;
  977. padding-bottom: 80px;
  978. }
  979. }
  980. /* ---- Bread Detail Page ---- */
  981. .bread-detail {
  982. padding-bottom: 60px;
  983. }
  984. .bread-detail__introduction {
  985. color: var(--dark);
  986. font-family: var(--font--primary);
  987. font-size: 1.625rem;
  988. line-height: 1.15;
  989. margin-top: 50px;
  990. margin-bottom: 65px;
  991. }
  992. @media (min-width: 768px) {
  993. .bread-detail__introduction {
  994. font-size: 2rem;
  995. line-height: 1.31;
  996. margin-top: 160px;
  997. }
  998. }
  999. .bread-detail figure {
  1000. margin: 35px auto 20px auto;
  1001. overflow: hidden;
  1002. }
  1003. .bread-detail figure img {
  1004. height: auto;
  1005. }
  1006. .bread-detail__meta {
  1007. background-color: var(--cream);
  1008. padding: 40px;
  1009. margin-right: -15px;
  1010. margin-bottom: 60px;
  1011. }
  1012. .bread-detail__meta ul li {
  1013. border-bottom: 1px solid var(--border-grey);
  1014. list-style: none;
  1015. color: var(--grey);
  1016. max-width: 450px;
  1017. margin-bottom: 15px;
  1018. }
  1019. .bread-detail__meta-title {
  1020. font-family: var(--font--secondary);
  1021. font-weight: 700;
  1022. font-size: var(--font-md);
  1023. line-height: 1.55;
  1024. margin: 0 0 5px 0;
  1025. }
  1026. .bread-detail__meta-content {
  1027. font-family: var(--font--secondary);
  1028. font-size: var(--font-md);
  1029. line-height: 1.55;
  1030. margin: 0 0 20px 0;
  1031. }
  1032. @media (min-width: 992px) {
  1033. .bread-detail__meta {
  1034. background-color: var(--cream);
  1035. padding: 240px 60px 60px 60px;
  1036. margin-right: -40px;
  1037. margin-bottom: 0;
  1038. }
  1039. }
  1040. /* Forms */
  1041. .form-page {
  1042. padding-bottom: 60px;
  1043. }
  1044. .form-page input,
  1045. textarea,
  1046. select {
  1047. display: block;
  1048. width: 100%;
  1049. padding: 8px;
  1050. border: 1px solid var(--dark);
  1051. }
  1052. .form-page input[type="submit"]{
  1053. border: none;
  1054. color: var(--white);
  1055. background-color: var(--orange);
  1056. font-weight: 700;
  1057. padding: 15px 25px;
  1058. display: inline-block;
  1059. vertical-align: middle;
  1060. transition-duration: 0.1s;
  1061. width: max-content;
  1062. }
  1063. .form-page input[type="submit"]:hover {
  1064. background-color: var(--dark);
  1065. }
  1066. .form-page li input[type="checkbox"],
  1067. input[type="radio"] {
  1068. display: inline-block;
  1069. margin-right: 10px;
  1070. }
  1071. .form-page__field ul,
  1072. .form-page__field li {
  1073. list-style: none;
  1074. padding: 0;
  1075. margin: 0;
  1076. }
  1077. .form-page .required {
  1078. color: red;
  1079. }
  1080. .form-page .fieldWrapper {
  1081. margin-bottom: 30px;
  1082. }
  1083. .form-page .help {
  1084. color: var(--dark);
  1085. font-family: var(--font--secondary);
  1086. font-size: var(--font-sm);
  1087. margin-top: 10px;
  1088. max-width: 350px;
  1089. }
  1090. .form-page .required {
  1091. color: var(--orange);
  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 0;
  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 0;
  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 0;
  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 0;
  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 60px;
  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 0;
  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 20px;
  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 0;
  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: -webkit-box;
  1415. display: -webkit-flex;
  1416. display: -ms-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: 0px;
  1469. right: 0px;
  1470. bottom: 0px;
  1471. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 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. }