/** Shopify CDN: Minification failed

Line 149:1 Expected "}" to go with "{"

**/
.article>a {
  text-decoration: none;
}

.article__image {
  position: relative;
  padding-top: 121.06537530266%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}

.article__image>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article__cook-time,
.article__serves {
  background: #F8F0E8;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 15px;
  font-family: Lato;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #2F4F4F;
  width: fit-content;
}

.article__cook-time p,
.article__serves p {
  margin: 0;
}

.article__cook-time strong,
.article__serves strong {
  font-weight: 800;
}

.article__cook-time img,
.article__serves img {
  display: block;
  width: 20px;
  height: 20px;
}

.article__title {
  font-family: var(--font-heading-family);
  font-size: 34px;
  font-weight: 400;
  line-height: 44.2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #2F4F4F;
  margin: 20px 0px 10px;
}

.article__author {
  font-family: Lato;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #2F4F4F;
  margin: 0;
  opacity: .7;
  display: flex;
  gap: 10px;
  align-items: center;
}

.article__author a {
  text-decoration: underline;
  color: #2F4F4F;
}

@media screen and (max-width: 768px) {
  .article__badges {
    top: 15px;
    left: 15px;
  }
  
  .article__cook-time,
  .article__serves {
    gap: 5px;
  }
  
  .article__title {
    font-size: 30px;
    line-height: 39px;
    margin-top: 15px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 680px) {
  .article__image {
    padding-top: 0;
    height: 140px;
  }

  .article__image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.article__author {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.4;
}

.article__author a {
  white-space: normal;
  word-break: break-word;
}