body {
  background:
    radial-gradient(1200px 600px at 30% 0%, rgba(60, 170, 255, 0.14) 0%, rgba(5, 11, 20, 0) 60%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.88) 0%, rgba(7, 19, 37, 0.92) 100%),
    url("../../assets/images/hero/hero-globe.png");
  background-size: 110% auto;
  background-position: center -80px;
  background-repeat: repeat-y;
}

.destination-hero {
  padding: 44px 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(60, 170, 255, 0.12) 0%, rgba(5, 11, 20, 0) 60%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.38) 0%, rgba(5, 11, 20, 0.82) 70%, rgba(5, 11, 20, 0.98) 100%),
    var(--destination-hero-image, url("../../assets/images/hero/hero-travel2.png"));
  background-size: cover;
  background-position: 40% 45%;
  background-repeat: no-repeat;
  position: relative;
}

.destination-hero > * {
  position: relative;
  z-index: 1;
}

.destination-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  align-self: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.destination-hero-logo img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.iso-placeholder {
  margin-top: 12px;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(60, 170, 255, 0.12) 0%, rgba(5, 11, 20, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.18) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.iso-placeholder .iso-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 220ms ease;
}

.iso-placeholder.is-loaded .iso-image {
  opacity: 1;
}

.iso-placeholder .iso-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  transition: opacity 220ms ease;
}

.iso-placeholder.is-loaded .iso-label {
  opacity: 0;
}

.site-highlight-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.site-highlight-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  padding: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.site-highlight-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.site-highlight-card p {
  margin: 0;
  color: var(--muted);
}

.cta.cta-inline.destination-cta {
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.45) 0%, rgba(5, 11, 20, 0.86) 100%),
    var(--destination-hero-image, url("../../assets/images/hero/hero-travel2.png"));
  background-size: cover;
  background-position: center 40%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.destination-cta h2,
.destination-cta p {
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.destination-cta .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .destination-hero {
    background: none;
  }

  .destination-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 520px at 30% 0%, rgba(60, 170, 255, 0.12) 0%, rgba(5, 11, 20, 0) 60%),
      linear-gradient(180deg, rgba(5, 11, 20, 0.38) 0%, rgba(5, 11, 20, 0.82) 70%, rgba(5, 11, 20, 0.98) 100%),
      var(--destination-hero-image, url("../../assets/images/hero/hero-travel2.png"));
    background-size: cover;
    background-position: 40% 45%;
    transform: scaleX(-1);
    z-index: 0;
  }
}
