.recipesWrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
  padding-inline-start: 66px;
  flex-direction: column;
}

.titleWrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 135px;
  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;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  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%;
  padding-bottom: 40px;
}

.recipeInfo {
  position: relative;
}

.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: 1110px) {
  .recipesWrapper {
    padding-inline-start: 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;
  }
}
@media screen and (max-width: 416px) {
  .titleWrapper {
    flex-direction: column;
    align-items: center;
  }
}
