/* =========================================
   PLAN RESULTS PAGE
========================================= */

/* === PAGE BASE === */

.plan-results-main{
  background:#fff;
  min-height:70vh;
}

.plan-results-section{
  padding:72px 0;
}

.plan-results-wrap{
  max-width:1180px;
  margin:0 auto;
}


/* === HEADER === */

.plan-results-head{
  max-width:820px;
  margin-bottom:24px;
}

.plan-results-head h1{
  margin:0 0 10px;
  color:#0A1F44;
  font-size:clamp(30px,4vw,52px);
  line-height:1.05;
}

.plan-results-head p{
  color:#52657c;
  font-size:17px;
  line-height:1.65;
}


/* === SUMMARY TAGS === */

.plan-results-summary{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0 28px;
}

.plan-results-summary span{
  border:1px solid rgba(10,31,68,.12);
  border-radius:999px;
  padding:9px 13px;
  font-weight:800;
  color:#0A1F44;
  background:#f8fafc;
  font-size:13px;
}


/* === PACKAGE GRID === */

.results-package-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}


/* === CARDS BASE === */

.result-package-card,
.custom-trip-card,
.plan-results-empty{
  border:1px solid rgba(10,31,68,.12);
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 45px rgba(10,31,68,.08);
  overflow:hidden;
}


/* === PACKAGE CARD === */

.result-package-media{
  height:190px;
  background:#f0f4f8;
}

.result-package-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.result-package-body{
  padding:18px;
  display:grid;
  gap:10px;
}

.result-package-kicker{
  margin:0;
  color:#b68b2e;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.result-package-body h2{
  margin:0;
  color:#0A1F44;
  font-size:22px;
  line-height:1.15;
}

.result-package-body p{
  margin:0;
  color:#52657c;
  font-size:14px;
  line-height:1.55;
}

.result-package-price{
  font-size:24px;
  font-weight:950;
  color:#0A1F44;
  margin-top:4px;
}


/* === CUSTOM TRIP / EMPTY === */

.custom-trip-card,
.plan-results-empty{
  padding:26px;
  margin-top:24px;
}

.custom-trip-card.compact{
  max-width:720px;
}

.custom-trip-card h2,
.plan-results-empty h1{
  margin:0 0 8px;
  color:#0A1F44;
}

.custom-trip-card p,
.plan-results-empty p{
  color:#52657c;
  line-height:1.6;
}