#recipes #filters {
  margin-bottom: 20px;
}
#recipes .recipe-overview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}
#recipes .recipe-overview > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  color: var(--text);
  text-decoration: none;
  background-color: var(--tile);
  box-sizing: border-box;
  flex-basis: 30%;
  max-width: 30%;
  border-radius: 6px;
  opacity: 1;
  max-height: 500px;
  height: 100%;
}
#recipes .recipe-overview > a.faded {
  display: none;
}
#recipes .recipe-overview > a.faded * {
  display: none;
}
#recipes .recipe-overview > a:hover {
  background-color: var(--tile-hover);
}
#recipes .recipe-overview > a > b {
  margin-top: 4px;
}
#recipes .recipe-overview > a > b, #recipes .recipe-overview > a > i {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
#recipes .recipe-overview > a .tags {
  flex: 1;
  align-items: flex-start;
}
#recipes .recipe-overview > a .image {
  margin-bottom: 10px;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 100%;
}
#recipes .recipe-overview > a .image img {
  filter: contrast(1.2);
}
#recipes .recipe-overview > a .image img.portrait {
  width: 100%;
}
#recipes .recipe-overview > a .image img.landscape {
  height: 100%;
}
#recipes .recipe-overview > a .image svg {
  height: 100px;
}

@media only screen and (max-width: 600px) {
  .recipe-overview a {
    min-width: 100%;
    margin-right: 0;
  }
  .recipe-overview a.faded {
    max-height: 0px;
  }
  .recipe-overview a .image {
    width: 100%;
  }
  .recipe-overview a .image img.portrait {
    width: 100%;
  }
  .recipe-overview a .image img.landscape {
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=recipes.css.map */
