.card-recipe {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFFFFF;
  color: #403A2F;
}
.card-recipe__link {
  display: contents;
}
.card-recipe__head {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 25px 25px;
}
.card-recipe__preview {
  aspect-ratio: 1.4974093264;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #E9EADF;
}
.card-recipe__tags {
  position: absolute;
  top: 30px;
  right: 35px;
  left: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.card-recipe__tag {
  display: block;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border-image-source: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px);
  font-family: "StampatelloFaceto";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
}
@media (max-width: 1439.98px) {
  .card-recipe__tag {
    font-family: "StampatelloFaceto";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 110%;
  }
}
@media (max-width: 767.98px) {
  .card-recipe__tag {
    font-family: "StampatelloFaceto";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 110%;
  }
}
.card-recipe__description {
  display: block;
  max-width: calc(100% - 80px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-family: "StampatelloFaceto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 1439.98px) {
  .card-recipe__description {
    font-family: "StampatelloFaceto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 767.98px) {
  .card-recipe__description {
    font-family: "StampatelloFaceto";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
  }
}
.card-recipe__body {
  flex-grow: 1;
  padding: 0px 25px 25px;
  position: relative;
}
.card-recipe__button {
  position: absolute;
  right: 25px;
  bottom: 25px;
}
.page-list {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .page-list {
    padding-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .page-list {
    padding-bottom: 40px;
  }
}
.page-list__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
}
@media (max-width: 1439.98px) {
  .page-list__list {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.page-list__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .page-list__footer {
    margin-top: 30px;
  }
}
