.recipe {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 20px;
}

.recipe_section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.recipe > img {
  width: 100%;
  object-fit: cover;
}

.recipe_title {
  font-size: 48px;
  margin: 0px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
}

.recipe_desc {
  color: var(--wp--preset--color--accent-2);
}

.recipe_details {
  display: flex;
  gap: 20px;
}

.recipe_detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wp--preset--color--accent-2);
}

.recipe_detail_line {
  width: 1px;
  background-color: var(--wp--preset--color--accent-2);
}

.recipe_line {
  height: 1px;
  width: 33%;
  background-color: var(--wp--preset--color--accent-2);
}

.recipe_h2 {
  font-size: 32px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
}

.recipe_ingredients_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.recipe_steps {
  counter-reset: step-counter;
}

.recipe_step {
  counter-increment: step-counter;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 16px;
  margin-bottom: 16px;
}

.recipe_step_number::before {
  content: counter(step-counter);
}

.recipe_step_number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--wp--preset--color--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.recipe_chef_section {
  margin-top: 48px;
  padding: 24px 28px;
  border-radius: 12px;
  background-color: var(--wp--preset--color--accent-1);
}

.recipe_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
