/* [project]/components/recipes/recipe-flow-card.css [app-client] (css) */
.hn-recipe-chip {
  background: var(--surface-2, #162132);
  border: 1px solid var(--surface-3, #1e3252);
  box-sizing: border-box;
  border-radius: 10px;
  align-items: center;
  gap: 7px;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 4px 10px 4px 4px;
  display: flex;
}

.hn-recipe-chip--highlighted {
  background: linear-gradient(#4ebcff3d, #0f172af5);
  border-color: #4ebcffb8;
  box-shadow: 0 0 0 1px #4ebcff2e, inset 0 1px #ffffff14;
}

.hn-recipe-chip__icon {
  background: #070b15;
  border: 1px solid #ffffff12;
  border-radius: 7px;
  flex-shrink: 0;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hn-recipe-chip__icon-img {
  object-fit: contain;
  width: 32px;
  height: 32px;
}

.hn-recipe-chip__body {
  flex: 1;
  min-width: 0;
}

.hn-recipe-chip__grade {
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
  display: inline-flex;
}

.hn-recipe-chip__grade-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.hn-recipe-chip__grade-label {
  font-size: clamp(10px, 2vw, 11px);
  font-weight: 800;
  line-height: 1;
}

.hn-recipe-chip__name {
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: .83rem;
  font-weight: 600;
  line-height: 1.2;
}

.hn-recipe-chip__link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
}

.hn-recipe-chip__link:focus-visible {
  outline: 2px solid var(--accent, #339af0);
  outline-offset: 2px;
  border-radius: 10px;
}

.hn-chip-link:hover .hn-chip-name {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.hn-recipe-flow-arrow {
  color: #f8fafcb3;
  flex-shrink: 0;
  align-self: center;
  padding-inline: 2px;
  font-size: .875rem;
  font-weight: 900;
}

.hn-recipe-flow-grid {
  gap: 7px;
  display: grid;
}

.hn-recipe-flow-badges {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  display: flex;
}

.hn-recipe-flow-actions {
  align-items: center;
  margin-left: auto;
  display: inline-flex;
}

.hn-recipe-flow-row {
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  display: flex;
}

.hn-recipe-flow-result {
  flex-direction: column;
  flex-shrink: 0;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  display: flex;
}

.hn-recipe-flow-result > * {
  flex: 1;
}

.hn-recipe-flow-ingredient {
  flex-direction: column;
  flex: 140px;
  min-width: 130px;
  max-width: 220px;
  display: flex;
}

.hn-recipe-flow-ingredient > * {
  flex: 1;
}

.hn-recipe-flow-ingredients {
  flex-wrap: wrap;
  flex: 1;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  display: flex;
}

@media (max-width: 767px) {
  .hn-recipe-flow-row {
    flex-direction: column;
  }

  .hn-recipe-flow-result {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hn-recipe-flow-ingredient {
    flex: calc(50% - 3px);
    min-width: 0;
    max-width: 100%;
  }

  .hn-recipe-flow-ingredients {
    flex: none;
    width: 100%;
  }
}

/*# sourceMappingURL=08ssn3d8r7zuj.css.map*/