/* 卖点卡：背景图全铺 + 左下白色叠字 */
.lp-hl {
  display: grid;
  grid-template-columns: repeat(var(--lp-hl-cols, 4), minmax(0, 1fr));
  gap: var(--lp-hl-gap, 10px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-hl__item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: var(--lp-hl-min-h, 140px);
  aspect-ratio: 1 / 1.05;
  border-radius: var(--lp-hl-radius, 18px);
  box-sizing: border-box;
}

.lp-hl__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f3eee6;
}

.lp-hl__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 无图时的色调底 + 装饰色块（对齐参考图） */
.lp-hl__item--cream .lp-hl__media {
  background: linear-gradient(160deg, #f7f4ef 0%, #efe9e0 100%);
}

.lp-hl__item--warm .lp-hl__media {
  background: linear-gradient(160deg, #f6f1ea 0%, #ebe3d8 100%);
}

.lp-hl__item--mint .lp-hl__media {
  background: linear-gradient(160deg, #eef6ef 0%, #e3efe6 100%);
}

.lp-hl__item--sage .lp-hl__media {
  background: linear-gradient(160deg, #eaf3eb 0%, #ddebdf 100%);
}

.lp-hl__item--warm .lp-hl__media::before,
.lp-hl__item--sage .lp-hl__media::before {
  position: absolute;
  top: -18%;
  left: -22%;
  width: 72%;
  height: 72%;
  content: "";
  background: #c4a484;
  border-radius: 42% 48% 40% 55%;
}

.lp-hl__item--warm .lp-hl__media::after {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 42%;
  height: 28%;
  content: "";
  background: #b89572;
  border-radius: 28px;
}

.lp-hl__item--sage .lp-hl__media::after {
  display: none;
  content: none;
}

.lp-hl__item:has(.lp-hl__media img) .lp-hl__media::before,
.lp-hl__item:has(.lp-hl__media img) .lp-hl__media::after {
  display: none !important;
  content: none !important;
}

.lp-hl__item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(20, 40, 28, 0) 42%,
    rgba(20, 40, 28, 0.45) 100%
  );
}

.lp-hl__copy {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  text-align: left;
}

.lp-hl__title {
  margin: 0;
  color: #fff;
  font-size: var(--lp-hl-title-size, 14px);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.lp-hl__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--lp-hl-desc-size, 12px);
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

@media (max-width: 767.98px) {
  .lp-hl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
