.cruise-list-hero {
  min-height: 360px;
  background-image: url("../images/nyc-skyline-hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: end;
}

.cruise-list-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,31,63,.15), rgba(7,31,63,.55));
}

.cruise-list-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 58px;
  text-align: center;
}

.cruise-list-hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 64px);
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

.cruise-list-section {
  padding: 42px 0 56px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 8px;
}

.cruise-list-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 14px;
}

.section-intro {
  max-width: 900px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 34px;
}

.cruise-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.cruise-card {
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 420px;
}

.cruise-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.badge {
  position: absolute;
  left: 0;
  top: 18px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 9px 18px;
}

.cruise-card-body {
  padding: 22px 26px 26px;
  position: relative;
  min-height: 210px;
}

.cruise-card-body small {
  display: block;
  text-align: right;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cruise-card h3 {
  font-size: 34px;
  line-height: 1.08;
  margin: 0 0 18px;
}

.cruise-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.cruise-card li {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.card-btn {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  padding: 14px 18px;
  min-width: 118px;
}

.card-btn span {
  font-size: 10px;
  margin-top: 2px;
}

.cruise-card-body::after {
  content: "";
  display: table;
  clear: both;
}

.wave-divider {
  height: 34px;
  width: 100%;
  margin: 46px 0 34px;
  background:
    radial-gradient(22px 16px at 22px 18px, transparent 20px, var(--primary) 21px, var(--primary) 24px, transparent 25px)
    repeat-x;
  background-size: 56px 34px;
}

.featured-pass-section {
  margin-top: 8px;
}

.pass-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
  margin: 28px 0 44px;
}

.pass-img {
  min-height: 210px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.pass-row h3 {
  font-size: 28px;
  color: var(--accent);
  text-decoration: underline;
  margin: 0 0 14px;
}

.pass-row p {
  line-height: 1.6;
  color: var(--text);
}

.text-link {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .cruise-card-grid,
  .two-card-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .pass-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cruise-list-hero {
    min-height: 300px;
  }

  .cruise-card-grid,
  .two-card-row {
    grid-template-columns: 1fr;
  }

  .cruise-img {
    height: 210px;
  }

 .card-btn {
  position: static;
  width: 100%;
  margin-top: 14px;
}
}