.recipe-section {
  margin-top: 40px;
}
.recipe-section .section__title-h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}
.recipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.recipe-items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}
.recipe-items li {
  width: calc(33.333% - 10px);
  text-align: center;
}
.recipe-items img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.recipe-all-link {
  display: block;
  margin-bottom: 15px;
  text-align: right;
  font-size: 0.9em;
  color: #c00;
}
