/** Shopify CDN: Minification failed

Line 127:0 Unexpected "}"

**/
/* Recipe article — prose styling for the intro (article.content) and the rich-text
   method metafield. Ingredients are rendered from metaobjects directly in the markup,
   so they need no list styling here. Matches the live layout: plain numbered method. */

.prose-recipe {
  font-size: 15px;
  line-height: 1.6;
}

.prose-recipe > * + * {
  margin-top: 0.85em;
}

.prose-recipe p {
  margin: 0;
}

.prose-recipe a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-recipe h2,
.prose-recipe h3,
.prose-recipe h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-scheme-fg, var(--color-sage));
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

.prose-recipe strong,
.prose-recipe b {
  font-weight: 400;
}

/* Method — numbered steps with plain serif numerals (live-theme style). */
.prose-recipe--steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: recipe-step;
}

.prose-recipe--steps ol li {
  position: relative;
  padding-left: 2.4em;
  margin-top: 1.25em;
}

.prose-recipe--steps ol li:first-child {
  margin-top: 0;
}

.prose-recipe--steps ol li::before {
  counter-increment: recipe-step;
  content: counter(recipe-step);
  position: absolute;
  left: 0;
  top: -0.05em;
  font-family: var(--font-serif);
  font-size: 1.15em;
  line-height: 1.4;
  color: var(--color-scheme-fg, var(--color-sage));
  opacity: 0.7;
}

/* Plain unordered lists inside method/intro keep a simple disc. */
.prose-recipe--steps ul {
  list-style: disc;
  padding-left: 1.2em;
}
.recipe-article__hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.recipe-article__hero-img {
  border-radius: var(--radius-card) !important;
  max-height: 450px;
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  object-position: center;
  height: auto !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.prose-recipe--steps {
  list-style: decimal;
  padding-left: 1.5rem;
}

.prose-recipe--steps li {
  padding-left: 0.5rem;
}

/* Mobile */
@media (max-width: 1023px) {
  .recipe-article__hero-text {
    padding-top: 0.5rem;
  }
}

  .recipe-article__hero-media {
    padding: 1rem 1rem -6rem;
    justify-content: center;
  }

  .recipe-article__hero-img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-card) !important;
    box-shadow: none;
  }
}

