/* ═══════════════════════════════════════
   DESTINATIONS — Overview & Country Pages
═══════════════════════════════════════ */

/* ── HERO ── */
.dest-hero {
    background: var(--deep2);
    position: relative; overflow: hidden;
}
.dest-hero__bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* ── DESTINATION CARDS GRID ── */
.dest-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dest-overview-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    display: flex; flex-direction: column;
}
.dest-overview-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--gold);
}
 .dest-overview-card__img {
    height: 180px;
    min-height: 180px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background-size: cover !important;
    background-position: center !important;
}
.dest-overview-card__flag {
    font-size: 36px;
    line-height: 1;
}
.dest-overview-card__savings {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(201,168,76,0.25);
    border: 1px solid rgba(201,168,76,0.4);
    color: #E8D5A3;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.dest-overview-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dest-overview-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--text); margin: 0;
}
.dest-overview-card__tagline {
    font-size: 13px; color: var(--muted);
    line-height: 1.5; font-weight: 300; margin: 0;
}
.dest-overview-card__meta {
    font-size: 12px; color: var(--muted2);
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-top: auto; padding-top: 8px;
}
.dest-overview-card__cta {
    font-size: 13px; font-weight: 500;
    color: var(--teal);
    margin-top: 4px;
    display: flex; align-items: center; gap: 4px;
    transition: gap 0.2s;
}
.dest-overview-card:hover .dest-overview-card__cta {
    gap: 8px;
}

/* ── LOCATION HERO ── */
.location-hero {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
    .dest-cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){
    .dest-cards-grid { grid-template-columns: 1fr; }
    .location-hero { min-height: auto; }
}
@media(max-width:900px){
  .location-content-grid {
    grid-template-columns: 1fr !important;
  }
  .location-content-grid > div:last-child {
    position: static !important;
    order: -1;
  }
}