.recipesWrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  right: 0px;
  top: 208px;
  z-index: 4;
  width: 70%;
  max-width: 1670px;
}

.titleWrapper {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 16px;
}

.recipesWrapper h3 {
  font-size: 40px;
  font-weight: 400;
  text-align: left;
}

.recipesWrapper p {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-left: 12px;
}

.recipeCard {
  position: relative;
  width: 700px;
  max-width: 700px;
  height: 600px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-inline: 32px;
  padding-block: 66px;
}

.recipeCard img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease;
  filter: brightness(0.7);
  object-fit: cover;
}

.swiperWrapper {
  width: 100%;
}

.recipeInfo {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.recipeInfo h4 {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  color: white;
  max-width: 540px;
}

.recipeInfo p {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  margin-left: 0px;
  margin-top: 16px;
  margin-bottom: 26px;
  color: white;
  max-width: 440px;
}

.recipeCard span {
  position: absolute;
  right: 33px;
  top: 33px;
  color: white;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.recipeCard a {
  color: white;
  text-decoration: none;
  background-color: #ff9494;
  padding: 8px 32px;
  border-radius: 20px;
  margin-top: 16px;
}

@media screen and (max-width: 960px) {
  .recipesWrapper {
    top: 360px;
    width: 100%;
    padding-inline-start: 40px !important;
  }
}
@media screen and (max-width: 760px) {
  .recipeCard {
    max-width: 400px;
  }
}

@media screen and (max-width: 1110px) {
  .recipesWrapper {
    padding-inline: 16px;
  }

  .recipeCard {
    position: relative;
    width: 320px;
    height: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-inline: 32px;
    padding-block: 66px;
  }
}
@media screen and (max-width: 500px) {
  .recipesWrapper {
    padding-inline: 16px;
  }

  .recipeCard {
    position: relative;
    width: 300px;
    height: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-inline: 32px;
    padding-block: 66px;
  }
}
