/* Recipe Badges
   -------------------------------------------------- */
.recipe-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.recipe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 1em 1.2em;
  border-radius: 2em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid currentColor;
}

.recipe-badge__value {
  font-weight: 500;
}

.recipe-badge__course {
  font-weight: 700;
}

/* Colour variants — override with your theme colours */
.recipe-badge--meta {
  color: #00452b;
  background-color: var(--wp--preset--color--organic-clay);
  border-color: var(--wp--preset--color--earth-green);
}

.recipe-badge--new {
  color: #fff;
  background-color: var(--wp--preset--color--earth-green, #00452b);
  border-color: var(--wp--preset--color--earth-green, #00452b);
  letter-spacing: 0.08em;
  font-weight: 700;
}
