/* =========================================
   Recipes Showcase Widget
   ========================================= */
.recipes-showcase {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding-bottom: 20vw;
  padding-top: 20vw;
  /* --- Header --- */
  /* --- Cards grid --- */
}
@media screen and (max-width: 768px) {
  .recipes-showcase {
    padding-bottom: 60vw;
  }
}
.recipes-showcase__header {
  display: flex;
  align-items: center;
  position: absolute;
  width: 80%;
  margin: 0 15% 0 5%;
  top: 5vw;
}
.recipes-showcase__header-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.recipes-showcase__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
}
.recipes-showcase__title-line1, .recipes-showcase__title-line2 {
  display: block;
  line-height: 0;
}
.recipes-showcase__title-line1 img, .recipes-showcase__title-line2 img {
  width: 60vw;
}
@media screen and (max-width: 768px) {
  .recipes-showcase__title-line1 img, .recipes-showcase__title-line2 img {
    width: 90vw;
  }
}
.recipes-showcase__title-line2 {
  margin-top: -5vw;
}
@media screen and (max-width: 768px) {
  .recipes-showcase__title-line2 {
    top: -8vw;
  }
}
.recipes-showcase__title-line2 img {
  width: 38vw;
  margin-left: 13vw;
}
@media screen and (max-width: 768px) {
  .recipes-showcase__title-line2 img {
    width: 70vw;
    margin-left: 9vw;
  }
}
.recipes-showcase__title-img {
  display: block;
  max-width: 100%;
  height: auto;
}
.recipes-showcase__product {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  width: 30vw;
}
@media screen and (max-width: 768px) {
  .recipes-showcase__product {
    display: none;
  }
}
.recipes-showcase__product-img {
  display: block;
  width: auto;
  object-fit: contain;
}
.recipes-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0 0;
  background-image: url(../../assets/receta-content-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2vw 5vw;
  width: 80%;
  margin: auto;
  border-radius: 4vw;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  padding-top: 17vw;
}
@media screen and (max-width: 768px) {
  .recipes-showcase__grid {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 37vw;
  }
}
.recipes-showcase__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: inherit;
}
.recipes-showcase__card-img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  background-color: #e8e8e8;
}
.recipes-showcase__card-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.recipes-showcase__card:hover .recipes-showcase__card-img {
  transform: scale(1.05);
}
.recipes-showcase__card-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #d0d0d0;
}
.recipes-showcase__card-title {
  color: #1B489A;
  text-transform: uppercase;
  font-family: "Franklin";
  font-size: 2vw;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .recipes-showcase__card-title {
    font-size: 5vw;
  }
}

/*# sourceMappingURL=recipes-showcase.css.map */
