<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dp-recipes-list {
  background-color: #fff;
  color: #000;
  padding-top: 50px;
  display: none;
}

.dp-lp-recettes[data-page="home"] .dp-recipes-list {
  display: block;
}

.dp-recipes-list__no-result {
  display: none;
  text-align: center;
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 1.5em;
  margin: 0 auto;
  padding: 30px;
  margin-bottom: 50px;
  background-color: rgba(143, 114, 71, 0.1);
}

.dp-recipes-list__see-all-results {
  color: #986f38;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.dp-recipes-list__no-result[is-displayed="1"] {
  display: table;
}

.dp-recipes-list__title {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.dp-recipes-list__description {
  font-size: 14px;
  text-align: center;
  letter-spacing: 3px;
  margin-top: 10px;
  margin-bottom: 50px;
  max-width: 996px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dp-recipes-list__container,
.dp-recipes-list__culinary-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 996px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.dp-recipes-list__recipe {
  width: 289px;
  height: 385px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin: 10px;
  cursor: pointer;
}

.dp-recipes-list__recipe:hover &gt; img {
  transform: scale(1.05) translate(-50%, -50%);
  transition: transform 0.3s;
  transform-origin: center center;
}

.dp-recipes-list__recipe &gt; img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.dp-recipes-list__recipe-top-container {
  align-self: flex-start;
  z-index: 1;
}

.dp-recipes-list__recipe-type {
  color: #8f7247;
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px;
  background-color: #fff;
  display: table;
}

.dp-recipes-list__recipe-bottom-container {
  align-self: flex-end;
  z-index: 1;
  display: flex;
}

.dp-recipes-list__recipe-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #000;
  margin-top: 10px;
}

.dp-recipes-list__recipe[is-white-title="1"] .dp-recipes-list__recipe-title {
  color: #fff;
}

.dp-recipes-list__recipe-duration,
.dp-recipes-list__recipe-difficulty {
  position: relative;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-self: center;
  height: 10px;
  justify-content: flex-start;
  font-size: 10px;
}

.dp-recipes-list__recipe-duration {
  margin-right: 25px;
}

.dp-recipes-list__recipe-difficulty img {
  margin-right: 4px;
}

.dp-recipes-list__recipe[data-color="black"] .dp-recipes-list__recipe-duration {
  color: #000;
}

.dp-recipes-list__recipe-duration::before {
  content: url(./images/duration-white.svg);
  display: inline-block;
  margin-right: 3px;
  text-transform: uppercase;
  height: 100%;
}

.dp-recipes-list__recipe[data-color="black"] .dp-recipes-list__recipe-duration::before {
  content: url(./images/duration-black.svg);
}

.dp-recipes-list__recipe[data-color="black"] .dp-recipes-list__recipe-difficulty {
  color: #000;
}

.dp-recipes-list__more-recipes-button {
  border: solid 1px #8f7247;
  background-color: #fff;
  padding: 20px 50px;
  text-transform: uppercase;
  font-family: "Lucas", sans-serif;
  font-size: 14px;
  transition: 0.3s;
  margin: 0 auto;
  display: block;
  margin-top: -30px;
  margin-bottom: 30px;
}

.dp-recipes-list__more-recipes-button:hover {
  background-color: #8f7247;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .dp-recipes-list {
    padding-top: 15px;
  }

  .dp-recipes-list__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 2px;
  }

  .dp-recipes-list__description {
    padding: 0 10px;
    line-height: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .dp-recipes-list__recipe {
    width: 162px;
    height: 215px;
    padding: 9px;
    margin: 6px;
  }

  .dp-recipes-list__recipe-type {
    font-size: 8px;
    padding: 3px;
  }

  .dp-recipes-list__recipe-title {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 1px;
  }

  .dp-recipes-list__recipe-bottom-container {
    justify-content: space-between;
    width: 100%;
  }

  .dp-recipes-list__recipe-duration {
    margin-right: 0;
  }
}
</pre></body></html>