/** Shopify CDN: Minification failed

Line 107:0 Expected "}" to go with "{"

**/
.recipes-hero {
  position: relative;
  padding: 160px 0 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}

/* overlay */
.recipes-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color, transparent);
  opacity: var(--hero-overlay-opacity, 0);
  pointer-events: none;
}

/* bottom wave like home hero */
@media (min-width: 750px) {
  .recipes-hero::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 2;
    bottom: -1px;
    width: 100%;
    height: 250px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    background-image: url("/cdn/shop/files/Papa_s_Rice_bottom-bg.png?v=1763869994");
  }
}

.recipes-hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  justify-content: center;
}

.recipes-hero__content {
  max-width: 800px;
}

.recipes-hero__heading {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;
}

.recipes-hero__text {
  margin: 0 auto;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  color: #ffffff;
}

.recipes-hero__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.recipes-hero__btn {
  min-width: 200px;
}

/* mobile */
@media screen and (max-width: 749px) {
  .recipes-hero {
    padding: 120px 15px 60px 15px;
  }

  .recipes-hero__heading {
    font-size: 35px;
        line-height: 45px;
  }

  .recipes-hero__text {
    font-size: 16px;
  }

  .recipes-hero__buttons .recipes-hero__btn {
    width: 80%;
  }
}

@media (min-width: 1920px) {
  .recipes-hero::after {
  height: 300px; 
}
