/* 
 * Styles CSS spécifiques aux recettes de blog
 * Camille Wehrling - Diététicienne Nutritionniste
 */

/* Carte de recette principale */
.recipe-card {
  background: linear-gradient(135deg, #fce9ec 0%, #fff 100%);
  border: 2px solid #e94e8a;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

/* Éléments d'ingrédients */
.ingredient-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.ingredient-item:last-child {
  border-bottom: none;
}

/* Numéros d'étapes de préparation */
.step-number {
  background: #e94e8a;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}