.recipes-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.rf-chip {
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e9e3e3;
  color: #333;
  cursor: pointer;
  font-weight: 600;
}

.rf-chip.is-active {
  background: #d21f1f;
  color: #fff;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 1100px) {
  .recipes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .recipes-grid { grid-template-columns: 1fr; }
}

.recipe-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
}

.recipe-card__title {
  margin: 14px 0 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.recipes-pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
}

.rf-page {
  border: 0;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  background: #f2f2f2;
}

.rf-page.is-active {
  background: #111;
  color: #fff;
}

.rf-page[disabled] {
  opacity: .4;
  cursor: not-allowed;
}

.rf-ellipsis { opacity: .6; }