.recipe-list {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.recipe-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4) var(--space-3) var(--space-3);
  text-decoration: none;
  color: inherit;
}

.recipe-row:nth-child(odd)  { background: var(--warm-white); }
.recipe-row:nth-child(even) { background: var(--cream); }
.recipe-row:nth-child(3n+1) { border-left: 5px solid var(--coral); }
.recipe-row:nth-child(3n+2) { border-left: 5px solid var(--maize-dk); }
.recipe-row:nth-child(3n)   { border-left: 5px solid var(--sage); }

.recipe-row:hover {
  filter: brightness(0.97);
}

.recipe-row__photo {
  width: var(--avatar-sm);
  height: var(--avatar-sm);
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.recipe-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-row__title {
  flex: 1;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
}

.recipe-row__meta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-lt);
  flex-shrink: 0;
}

.recipe-row__tags {
  display: flex;
  gap: var(--space-1);
  flex-shrink: 0;
}

.recipe-row__tag {
  background: color-mix(in srgb, black 12%, transparent);
  color: var(--ink);
  font-size: var(--text-2xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.18em 0.55em;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .recipe-row {
    padding: var(--space-3);
  }

  .recipe-row__tags {
    display: none;
  }
}
