/* src/styles/recipe.scss */
.recipe-search-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (width >= 768px) {
  .recipe-search-result {
    flex-direction: row;
    justify-content: space-between;
  }
}
.recipe-search-result__filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
}
.recipe-search-result__text {
  text-align: center;
  font-weight: var(--FONT_WEIGHT_BOLD);
}


