@charset "UTF-8";
body.single-receta #content {
  padding-bottom: 10vw !important;
}
body.single-receta #content .ast-container {
  flex-direction: column;
  background-image: url("../assets/receta-hero-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 10vw !important;
  margin-top: -80px;
}

.receta-hero {
  min-height: 220px;
  display: flex;
  align-items: center;
  margin-top: 6rem;
}
@media screen and (max-width: 921px) {
  .receta-hero {
    margin-top: 0;
  }
}
.receta-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.receta-hero__brand {
  width: 50%;
  margin-left: -5%;
}
@media screen and (max-width: 768px) {
  .receta-hero__brand {
    width: 100%;
    margin-left: 0;
  }
}
.receta-hero__lata {
  position: absolute;
  width: 25%;
  right: 0;
  bottom: -50%;
}
@media screen and (max-width: 768px) {
  .receta-hero__lata {
    display: none;
  }
}
.receta-hero__deco-right, .receta-hero__deco-left {
  position: absolute;
  width: 8vw;
  height: 8vw;
  top: 11vw;
  right: 28vw;
  object-fit: contain;
  object-position: center;
}
.receta-hero__deco-right {
  width: 10vw;
  height: 10vw;
  top: 7vw;
  right: 7vw;
}

.receta-content {
  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);
}
.receta-content__inner {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  align-items: flex-start;
}
.receta-content__thumbnail {
  flex: 0 0 42%;
}
.receta-content__thumbnail img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.receta-content__body {
  flex: 1;
  min-width: 0;
}
.receta-content__title {
  font-family: "Franklin", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1b489a;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.receta-content__deco-bottom {
  position: absolute;
  width: 8vw;
  height: 8vw;
  bottom: 19vw;
  right: 14vw;
  object-fit: contain;
  object-position: center;
}

/* Seccion ingredientes y modo preparación*/
.recipe-ingredients__title-img,
.recipe-preparation__title-img {
  max-width: 180px !important;
  margin-bottom: 1rem;
}

li.recipe-ingredients__item,
li.recipe-preparation__step {
  color: #0A2965;
  font-family: "Gotham";
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .receta-hero {
    padding: 2rem 1rem;
    min-height: auto;
  }
  .receta-hero__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .receta-hero__title-box {
    max-width: 100%;
  }
  .receta-hero__maintitle {
    font-size: 1.4rem;
  }
  .receta-hero__lata img {
    width: 140px;
  }
  .receta-hero__deco-right, .receta-hero__deco-left {
    display: none;
  }
  .receta-content {
    padding: 2rem 1rem;
  }
  .receta-content__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .receta-content__thumbnail {
    flex: none;
    width: 100%;
  }
  .receta-content__title {
    font-size: 6vw;
    text-align: center;
  }
  .receta-content__deco-bottom {
    display: none;
  }
}
