/** Shopify CDN: Minification failed

Line 145:18 Unexpected "{"
Line 145:27 Expected ":"
Line 158:19 Unexpected "{"
Line 158:28 Expected ":"
Line 163:19 Unexpected "{"
Line 163:28 Expected ":"
Line 169:19 Unexpected "{"
Line 169:28 Expected ":"

**/
.rich-text {
  margin: auto;
  max-width: 110rem;
  text-align: center;
  width: calc(100% - 3rem);
}

.rich-text.rich-text--full-width {
  max-width: initial;
  width: 100%;
}

.join-the-story .newsletter-form__field-wrapper .field {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  border: .1rem solid #608477;
  height: 6rem;
  box-sizing: border-box;
  transition: border var(--duration-default);
}

.join-the-story .newsletter-form__field-wrapper .field:active {
  border: .1rem solid #C4A976;
}

.join-the-story .newsletter-form__field-wrapper .field:focus {
  border: .1rem solid #C4A976;
}

.rich-text__blocks {
  margin: auto;
  width: calc(100% - 5rem);
}

.rich-text__blocks .title--section {
  color: #104633;
  text-transform: uppercase;
}

.rich-text__subheading {
  color: #C4A976;
  font-family: 'CamptonMedium', sans-serif !important;
  font-size: 24px !important;
  letter-spacing: -2% !important;
  line-height: 3rem;
}

.rich-text__blocks .rich-text__text p {
  color: black;
}

.rich-text__blocks .title--section em {
  line-height: 0;
}

.rich-text__blocks * {
  overflow-wrap: break-word;
}

.rich-text--full-width .rich-text__blocks {
  /* width: calc(100% - 8rem); */
}

@media screen and (min-width: 750px) {
  .rich-text {
    width: calc(100% - 10rem);
  }

  .rich-text__blocks {
    max-width: 50rem;
  }

  .rich-text--full-width .rich-text__blocks {
    max-width: 98.2rem;
  }
}

@media screen and (min-width: 990px) {
  .rich-text__blocks {
    max-width: 78rem;
  }
}

/* Blocks */
.rich-text__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}

.rich-text__blocks > * + * {
  margin-top: 4rem;
}

@media screen and (max-width: 990px) {
  .rich-text__blocks > * + * {
    margin-top: 3rem;
  }

  .rich-text__buttons {
    margin-top: 3rem!important;
    width: 100%;
  }
}

.rich-text__text p {
  margin: 0;
}

/* Buttons wrapper */
.rich-text__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 4.8rem;
}

/* Keep buttons same line on desktop */
@media screen and (min-width: 750px) {
  .rich-text__buttons {
    flex-wrap: nowrap;
  }
}

#shopify-section-{{ section.id }} .button--green-outline {
		background: #ffffff;
		color: #104633;
		border: 1px solid #104633;
		transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 10rem;
    min-height: 6rem;
    padding: .85rem 4rem;
	}

	#shopify-section-{{ section.id }} .button--green-outline span {
		color: #104633;
		transition: all 0.3s ease;
	}

	#shopify-section-{{ section.id }} .button--green-outline:hover {
		background: #104633;
		border-color: #104633;
		color: #ffffff;
	}

	#shopify-section-{{ section.id }} .button--green-outline:hover span {
		color: #ffffff;
	}