/* ====== Estilos generales ====== */
.ingredientes__wrap,
.receta__pasos {
  margin: 1.5em 0;
  padding: 0;
  list-style: none;  
}

/* ====== Ingredientes ====== */
.ingredientes__wrap .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 1em;
  padding: 1em;
  transition: box-shadow 0.2s ease;
}

.ingredientes__wrap .item:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.item__left h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.item__left h4 span {
  font-weight: normal;
  font-size: 0.9rem;
  color: #666;
  margin-left: 0.3em;
}

.item_ingrediente {
  margin-top: 0.3em;
  color: #444;
  font-size: 0.95rem;
}

.item__right {
  flex-shrink: 0;
  margin-left: 1em;
}

.item__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* ====== Pasos ====== */
.receta__pasos {
  counter-reset: paso;
}

.receta__pasos li {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1em;
  background: #fff;
  border-left: 4px solid #AB2B20;
  padding: 0.8em 1em;
  border-radius: 8px;
}

.receta__pasos .paso__numero {
  font-weight: 700;
  font-size: 1.2rem;
  color: #AB2B20;
  min-width: 32px;
  text-align: center;
}

.receta__pasos .paso__descripcion {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}