/* 합성레시피 카드 (.comp-recipe-*) */
.comp-recipe-card {
  width: 100%;
  height: 92px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.comp-recipe-thumb {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  object-fit: contain;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}
.comp-recipe-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.comp-recipe-label {
  font-size: 11px;
  font-weight: 700;
  color: #9e9e9e;
  letter-spacing: -0.03em;
}
.comp-recipe-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.03em;
}

.lidetail-recipe-card {
  width: 100%;
  height: 92px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  position: relative;
  overflow: hidden;
}
