/* Featured Bahamas cruise spotlight — homepage + Vacation Deals checkout */
.vd-cruise-spotlight {
  --vd-cruise-navy: #050a14;
  --vd-cruise-deep: #0f172a;
  --vd-cruise-teal: #14b8a6;
  --vd-cruise-gold: #fbbf24;
  --vd-cruise-coral: #f97316;
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(20, 184, 166, 0.18), transparent 60%),
    radial-gradient(700px 280px at 88% 100%, rgba(251, 191, 36, 0.12), transparent 55%),
    linear-gradient(165deg, var(--vd-cruise-navy) 0%, var(--vd-cruise-deep) 48%, #0c4a6e 100%);
  overflow: hidden;
}

.vd-cruise-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.7;
}

.vd-cruise-spotlight__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.vd-cruise-spotlight__card {
  display: grid;
  grid-template-columns: 1fr min(44%, 420px);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

@media (max-width: 860px) {
  .vd-cruise-spotlight__card {
    grid-template-columns: 1fr;
  }
}

.vd-cruise-spotlight__copy {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.5rem);
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vd-cruise-spotlight__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.vd-cruise-spotlight__badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #0f172a;
  background: linear-gradient(135deg, var(--vd-cruise-gold), #fde68a);
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.35);
}

.vd-cruise-spotlight__badge--alt {
  color: #ecfeff;
  background: rgba(20, 184, 166, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.45);
  box-shadow: none;
  letter-spacing: 0.08em;
}

.vd-cruise-spotlight__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.vd-cruise-spotlight__sub {
  margin: 0.85rem 0 0;
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.88);
  max-width: 36rem;
}

.vd-cruise-spotlight__perk {
  margin: 1rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #99f6e4;
}

.vd-cruise-spotlight__perk-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.vd-cruise-spotlight__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.vd-cruise-spotlight__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vd-cruise-spotlight__btn--primary {
  color: #0f172a;
  background: linear-gradient(135deg, var(--vd-cruise-gold) 0%, #f59e0b 100%);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.vd-cruise-spotlight__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.5);
  color: #0f172a;
}

.vd-cruise-spotlight__btn--ghost {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.vd-cruise-spotlight__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.vd-cruise-spotlight__fine {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.55);
  max-width: 40rem;
}

.vd-cruise-spotlight__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .vd-cruise-spotlight__media {
    min-height: 200px;
    order: -1;
  }
}

.vd-cruise-spotlight__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.vd-cruise-spotlight__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 10, 20, 0.75) 0%,
    rgba(5, 10, 20, 0.15) 45%,
    transparent 70%
  );
  pointer-events: none;
}

@media (max-width: 860px) {
  .vd-cruise-spotlight__media-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(5, 10, 20, 0.5) 55%,
      rgba(5, 10, 20, 0.85) 100%
    );
  }
}

.vd-cruise-spotlight__media-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.vd-cruise-spotlight--homepage {
  margin: 0;
}

.vd-cruise-spotlight--credits {
  margin: 0;
}

.vd-credits-page .vd-cruise-spotlight {
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

@media (prefers-reduced-motion: reduce) {
  .vd-cruise-spotlight__btn {
    transition: none;
  }
}
