/** Shopify CDN: Minification failed

Line 322:11 Expected ":"

**/
.article-template {
  margin: 3rem auto 5rem;
  max-width: 640px;

  &.a-story-from-the-field {
    header {
      margin-top: 0;
    }

    .article-template__title {
      color: var(--at-ease-green);
    }

    .star > svg path {
      fill: var(--at-ease-green);
    }
  }

  &.recipe {
    .article-template__title {
      color: var(--heritage-chesnut);
    }

    .star > svg path {
      fill: var(--heritage-chesnut);
    }
  }

  iframe {
    max-width: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .article-template {
    max-width: 40%;
  }
}

.article-template > *:first-child:not(.article-template__hero-container) {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template > *:first-child:not(.article-template__hero-container) {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.article-template__hero-container {
  max-width: 130rem;
  margin: 0 auto;
}

.article-template__hero-small {
  height: 11rem;
}

.article-template__hero-medium {
  height: 22rem;
}

.article-template__hero-large {
  height: 33rem;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .article-template__hero-small {
    height: 22rem;
  }

  .article-template__hero-medium {
    height: 44rem;
  }

  .article-template__hero-large {
    height: 66rem;
  }
}

@media screen and (min-width: 990px) {
  .article-template__hero-small {
    height: 27.5rem;
  }

  .article-template__hero-medium {
    height: 55rem;
  }

  .article-template__hero-large {
    height: 82.5rem;
  }
}

.article-template header {
  margin-block: 40px 60px;
  line-height: calc(0.8 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .article-template header {
    margin-top: 5rem;
  }
}

.article-template__title {
  font-size: 30px;
  letter-spacing: -0.5px;
  line-height: 1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.article-template__title + p,
.byline {
  letter-spacing: 1.6px;
  line-height: 1.2;
  margin: 20px auto 18px;
  max-width: 270px;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.byline {
  font-weight: 800;
  max-width: 300px;
}

.article-template__title:not(:only-child) {
  margin-bottom: 1rem;
}

.article-template__link {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.article-template__link .icon-wrap {
  display: flex;
  margin-right: 1rem;
  transform: rotate(180deg);
}

.article-template__content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.article-template__social-sharing {
  border-top: 2px solid var(--iron-shadow-grey);
  margin-top: 3rem;
  max-width: 90%;
  padding: 10px 0 0;
  text-align: right;
}

.article-template__social-sharing + header,
.article-template__social-sharing + .article-template__content {
  margin-top: 1.5rem;
}

.article-template__comment-wrapper {
  margin-top: 5rem;
  padding: 2.7rem 0;
}

@media screen and (min-width: 750px) {
  .article-template__comment-wrapper {
    margin-top: 6rem;
    padding: 3.6rem 0;
  }
}

.article-template__comment-wrapper h2 {
  margin-top: 0;
}

.article-template__comments {
  margin-bottom: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments {
    margin-bottom: 7rem;
  }
}

.article-template__comments-fields {
  margin-bottom: 4rem;
}

.article-template__comments-comment {
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
  margin-bottom: 1.5rem;
  padding: 2rem 2rem 1.5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments-comment {
    padding: 2rem 2.5rem;
  }
}

.article-template__comments-comment p {
  margin: 0 0 1rem;
}

.article-template__comment-fields > * {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .article-template__comment-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4rem;
  }
}

.article-template__comment-warning {
  margin: 2rem 0 2.5rem;
}

@media screen and (min-width: 990px) {
  .article-template__comments .pagination-wrapper {
    margin: 5rem 0 8rem;
  }
}

.article-template__back:last-child {
  margin-bottom: 3.2rem;
}

/* ME additional styles */
.article-template__content {
  p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 40px;
  }
}

.article-template__content,
.recipe-ingredients {
  h3 {
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
}

.field-icon {
  display: block;
  margin: 0 auto -12px;
  max-width: 50px;
  position: relative;
  translate: 0 -50%;
}

.star {
  text-align: center;

  > svg {
    height: auto;
    max-width: 30px;
  }
}

.recipe-intro {
  font-weight: 800;
  line-height: 1.5;
  margin-block: 36px;
  text-align: center;

  @media screen and (min-width: 1024px) {
    font-size: 20px;
  }
}

.recipe-ingredients {
  h3 {
    text-align: center;
  }

  ul {
    border-bottom: 2px solid var(--heritage-chesnut);
    border-top: 2px solid var(--heritage-chesnut);
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 30px 0;
  }

  ul li {
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;

    span {
      font-weight: 500;
      text-transform: none;
    }
  }
}

.byline {
  font-size
}
