/* =========================
   DESTINATIONS GRID
   ========================= */

.destinations-section{padding-top:10px}

.dest-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  flex-wrap:wrap;
}

.dest-search{min-width:260px}

.dest-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
@media(max-width:1100px){
  .dest-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:700px){
  .dest-grid{grid-template-columns:repeat(2,1fr);}
}

.dest-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:16px;
  text-align:center;
  transition:.1s ease;
}
.dest-card:hover{
  background:rgba(255,255,255,.07);
  transform:translateY(-2px);
}

.dest-flag{
  width:42px;
  height:auto;
  margin-bottom:10px;
}

.dest-name{
  font-weight:900;
  font-size:14px;
}

.dest-price{
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
}