

.list-page{
  padding:28px 0 50px;
}

.page-head{
  margin-bottom:20px;
}

.page-title{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.15;
  font-weight:800;
  color:#ffffff;
}

.page-desc{
  margin:0;
  max-width:760px;
  color:#ffffff;
  font-size:15px;
  line-height:1.8;
}

.promo-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

/* =========================
   promo & package tripCARD BASE
   ========================= */
.promo-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  border:1px solid #eef2f7;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  background:#fff;
  isolation:isolate;
}

/* =========================
   BACKGROUND BLUR
   ========================= */
.promo-card-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:blur(28px) brightness(3.55);
  transform:scale(1.2);
  z-index:0;
}

.promo-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(15,23,42,.35),
    rgba(15,23,42,.65)
  );
  z-index:1;
}

/* =========================
   MEDIA
   ========================= */
.promo-media{
  position:relative;
  z-index:2;
  background:#e2e8f0;
}

.promo-media img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.promo-media-empty{
  height:280px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e2e8f0,#f8fafc);
  color:#64748b;
  font-weight:700;
}

/* =========================
   PREMIUM BADGE
   ========================= */
.promo-badge{
  position:absolute;
  top:0;
  left:0;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:39px;
  padding:6px 12px 4px;
  background:linear-gradient(45deg, #b452a3 2.28%, #7640a1 99.77%);
  color:#fff;
  font-size:16px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
  white-space:nowrap;
  border-radius:0 0 17px 0;
  box-shadow:0 8px 18px rgba(118, 64, 161, .30);
}

/* =========================
   BODY PUTIH OVERLAP
   ========================= */
.promo-body{
  position:relative;
  z-index:3;
  margin:-40px 14px 14px;
  background:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:
    0 12px 24px rgba(15,23,42,.12),
    0 2px 6px rgba(15,23,42,.08);
}

.promo-title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
  font-weight:800;
  color:#0f172a;
}

.promo-text{
  margin:0 0 14px;
  color:#64748b;
  font-size:14px;
  line-height:1.8;
  word-break:break-word;
}

.promo-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.promo-price{
  font-size:24px;
  font-weight:800;
  color:#0f766e;
  line-height:1.1;
  word-break:break-word;
}

.promo-btn{
display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: solid 2px blue;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}

.promo-btn:hover{
  transform:translateY(-1px);
  opacity:.95;
}

.empty-note{
  background:#fff;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  padding:22px; 
  color:#64748b;
}

@media (max-width: 992px){
  .promo-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .page-title{
    font-size:28px;
  }

  .promo-media img,
  .promo-media-empty{
    height:220px;
  }

  .promo-badge{
    min-height:32px;
    font-size:12px;
    padding:6px 10px 4px;
  }

  .promo-title{
    font-size:20px;
  }

  .promo-price{
    font-size:20px;
  }
}
