/* =========================================================
   CRUISES.CSS
   Cruises Page Only Styles
========================================================= */


/* =========================================================
   01 � PAGE BASE
========================================================= */
body {
  background: #ffffff;
}


/* =========================================================
   02 — HERO OVERRIDES
========================================================= */
.hero--cruise .hero-headline {
  font-size: clamp(3.15rem, 6.3vw, 6.35rem);
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.78),
    0 5px 12px rgba(0, 0, 0, 0.62),
    0 14px 30px rgba(0, 0, 0, 0.48);
}

.hero--cruise .hero-tagline {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.62);
}

.hero--cruise + .cruise-search-section {
  margin-top: clamp(42px, 5vw, 58px);
}

/* =========================================================
   03 - SHARED SECTION HEADERS
========================================================= */
.section-header {
  width: min(1100px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: #003366;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.section-subtitle {
      max-width: 900px;
      margin: 0 auto;
      color: #6b7a86;
      font-size: clamp(1.05rem, 1.35vw, 1.18rem);
      line-height: 1.62;
      text-wrap: pretty;
}

/* =========================================================
   04 � SEARCH SECTION
========================================================= */
.cruise-search-section {
  padding: 0 20px;
}

.cruise-search-bar {
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cruise-search-bar label {
  font-weight: 600;
  color: #003b4a;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cruise-search-inputwrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#cruise-search {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 1rem;
  border: 2px solid #cccccc;
  border-radius: 6px;
}

#cruise-search:focus {
  outline: none;
  border-color: #007794;
}

.cruise-search-clear {
  flex: 0 0 auto;
  min-width: 46px;
  height: 46px;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
  border: none;
  background: #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
}

.cruise-search-clear:hover {
  background: #d0d0d0;
}


/* =========================================================
   05 � TOOLTIP
========================================================= */
.tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tooltip-trigger {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #007794;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tooltip-content {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  width: clamp(260px, 38vw, 420px);
  max-width: 90vw;
  background: #ffffff;
  color: #333333;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  line-height: 1.5;
}

.tooltip-content strong {
  display: block;
  margin-bottom: 6px;
  color: #003366;
}

.tooltip-content ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.tooltip-content li {
  margin-bottom: 6px;
}

.tooltip:hover .tooltip-content,
.tooltip:focus-within .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =========================================================
   06 � CRUISE GRID
========================================================= */
#cruise-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}


/* =========================================================
   07 � CRUISE CARD
========================================================= */
.cruise-card {
  background: #ffffff;
  border: 1px solid rgba(0, 59, 74, 0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}


.cruise-card:focus-visible {
  outline: 3px solid rgba(0, 181, 209, 0.75);
  outline-offset: 4px;
}
.cruise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 119, 148, 0.24);
}


/* =========================================================
   08 � CRUISE IMAGE
========================================================= */
.cruise-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef5f8 0%, #dfe9ee 100%);
}

.cruise-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cruise-card:hover .cruise-image-wrapper img {
  transform: scale(1.04);
}

.cruise-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 27, 40, 0.42) 0%,
    rgba(0, 27, 40, 0.10) 42%,
    rgba(0, 27, 40, 0.04) 100%
  );
}

.cruise-image-wrapper.img-fallback::before {
  content: "Image Coming Soon";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c6070;
  font-weight: 600;
  letter-spacing: 0.02em;
}


.cruise-sale-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #d9332f, #9f1f2c);
  color: #ffffff;

  padding: 8px 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cruise-card:hover .cruise-sale-ribbon {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.cruise-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  max-width: calc(100% - 32px);
  background: rgba(0, 39, 54, 0.78);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* =========================================================
   09 � CARD BODY
========================================================= */
.cruise-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cruise-line-logo {
  display: block;
  align-self: flex-start;
  width: auto;
  max-width: min(230px, 100%);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.cruise-title {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.28;
  color: #003366;
  margin: 0;
}

.cruise-subtitle {
  font-size: 0.97rem;
  color: #5b6670;
  margin: -4px 0 0;
}

.cruise-note {
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 119, 148, 0.10);
  color: #0b6d89;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}


/* =========================================================
   10 � INFO ROW
========================================================= */
.cruise-info-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 2px;
}

.cruise-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.label {
  font-size: 10px;
  text-transform: uppercase;
  color: #6f7d87;
  display: block;
  letter-spacing: 0.12em;
  margin-bottom: 1px;
}

.value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1d2f3c;
  display: block;
  line-height: 1.35;
}


/* =========================================================
   11 � ITINERARY
========================================================= */
.cruise-itinerary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  margin-top: 2px;
  padding-top: 14px;
}

.cruise-itinerary .value {
  font-weight: 500;
  line-height: 1.6;
  color: #40505d;
}

.itin-sep {
  color: #84a0b0;
  margin: 0 5px;
}

.itin-more {
  color: #7a8892;
  font-style: italic;
}


/* =========================================================
   12 � PRICE + BUTTON
========================================================= */
.cruise-card-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  margin-top: 2px;
}


.cruise-price-inline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.cruise-price-inline .price-label {
  align-self: flex-start;
  margin-bottom: 0;
  padding-top: 2px;
}

.price-person {
  align-self: flex-end;
  padding-bottom: 1px;
  color: #6f7d87;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.price-label {
  display: block;
  font-size: 10px;
  color: #6f7d87;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
  color: #123c72;
  letter-spacing: -0.02em;
}





/* =========================================================
   13 � PAGINATION
========================================================= */
.pagination {
  text-align: center;
  margin-bottom: 42px;
}

.pagination-top {
  margin: 0 auto 22px;
}

.pagination button {
  margin: 0 6px;
  padding: 9px 15px;
  border: 1px solid #d3dbe0;
  background: #ffffff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.pagination button.active {
  background: #003b4a;
  color: #ffffff;
  border-color: #003b4a;
}


/* =========================================================
   14 � CRUISE LINE LOGOS
========================================================= */
.cruise-line-logos {
  width: min(1200px, 100%);
  margin: 72px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.cruise-line-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.cruise-line-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  width: 100%;
  padding: 16px 14px 13px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(246, 250, 252, 0.98) 100%
  );
  border: 1px solid rgba(0, 59, 74, 0.08);
  border-radius: 20px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  opacity: 1;
  filter: none;
}

.cruise-line-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(0, 181, 209, 0.03) 100%
  );
  pointer-events: none;
}

.cruise-line-link:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 148, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(249, 252, 253, 1) 100%
  );
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cruise-line-link img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 165px;
  height: 48px;
  object-fit: contain;
  margin: auto 0;
  opacity: 1;
  filter: none;
  transition: transform 0.28s ease;
}

.cruise-line-link:hover img {
  transform: scale(1.06);
}

.cruise-partner-tags {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 24px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  color: rgba(0, 59, 74, 0.68);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}



/* =========================================================
   CRUISE SEARCH HEADER OPTIONS
========================================================= */
.cruise-search-header .partners-teaser-link {
  margin: 12px auto 4px;
}

.cruise-search-divider {
  margin: 16px 0 8px;
  color: #003b4a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.partners-teaser-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(0, 119, 148, 0.88);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(0, 119, 148, 0.16);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.partners-teaser-link:hover {
  background: rgba(0, 59, 74, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 59, 74, 0.20);
}
/* =========================================================
   15 � MODAL
========================================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal-content {
  position: relative;
  padding: 0;
  max-width: 920px;
  width: min(94vw, 920px);
  max-height: 92vh;
  border-radius: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #003b4a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   16 � MODAL HERO
========================================================= */
.modal-hero {
  position: relative;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  background: linear-gradient(180deg, #eef5f8 0%, #dfe9ee 100%);
  overflow: hidden;
}

.modal-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 27, 40, 0.52) 0%,
    rgba(0, 27, 40, 0.14) 45%,
    rgba(0, 27, 40, 0.04) 100%
  );
}

.modal-hero-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: min(260px, calc(100% - 90px));
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
}

.modal-hero-logo img {
  display: block;
  width: 230px;
  max-width: 230px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.modal-hero-destination {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 36px);
  width: fit-content;
  display: inline-block;
  background: rgba(0, 39, 54, 0.78);
  color: #ffffff;
  padding: 9px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-hero.img-fallback::before {
  content: "Image Coming Soon";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c6070;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* =========================================================
   17 � MODAL DETAILS
========================================================= */
.modal-copy {
  padding: 18px 18px 20px;
}

.modal-title {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.15;
  color: #003366;
}

.modal-subtitle {
  margin: 0 0 18px;
  color: #5b6670;
  font-size: 1rem;
}

.modal-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: -6px 0 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 119, 148, 0.10);
  color: #0b6d89;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 16px;
}

.modal-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.modal-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #6f7d87;
  letter-spacing: 0.12em;
}

.modal-value {
  font-size: 1rem;
  line-height: 1.5;
  color: #1d2f3c;
  font-weight: 500;
}

.modal-itinerary {
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  padding-top: 14px;
  margin-top: 0;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid rgba(0, 59, 74, 0.08);
  margin-top: 16px;
  padding-top: 14px;
  flex-wrap: wrap;
}

.modal-price-wrap {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-price-wrap .modal-label {
  align-self: flex-start;
  margin-bottom: 0;
  padding-top: 3px;
}

.modal-price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #123c72;
  letter-spacing: -0.02em;
}

.modal-price-person {
  align-self: flex-end;
  padding-bottom: 2px;
  color: #6f7d87;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.modal-ad-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 109, 137, 0.10);
  color: #0b6d89;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.modal-ad-inline {
  display: flex;
  align-items: center;
  height: 100%;
}


/* =========================================================
   18 � RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .cruise-line-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  #cruise-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .cruise-line-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cruise-line-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .modal.open {
    align-items: flex-start;
    padding: 10px;
  }

  .modal-content {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 14px;
  }

  .modal-hero {
    height: 170px;
  }

  .modal-hero-logo {
    top: 12px;
    left: 12px;
    min-height: 46px;
    max-width: calc(100% - 72px);
    padding: 8px 10px;
    border-radius: 12px;
  }

  .modal-hero-logo img {
    width: 190px;
    max-width: 190px;
    height: auto;
    max-height: 56px;
  }

  .modal-hero-destination {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.88rem;
    padding: 8px 12px;
  }

  .modal-copy {
    padding: 18px 16px 20px;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-price {
    font-size: 1.7rem;
  }

  .modal-footer {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .hero--cruise .hero-headline {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .cruise-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cruise-search-bar label {
    justify-content: space-between;
    white-space: normal;
  }

  .cruise-search-inputwrap {
    width: 100%;
  }

  .cruise-image-wrapper {
    height: 220px;
  }

  .cruise-card-body {
    padding: 20px 18px 18px;
    gap: 12px;
  }

  .cruise-line-logo {
    height: 38px;
    max-width: min(210px, 100%);
  }

  .cruise-title {
    font-size: 1.15rem;
  }

  .cruise-subtitle {
    font-size: 0.93rem;
  }

  .cruise-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }


  .cruise-line-logos {
    margin: 56px auto 32px;
    padding: 0 12px;
  }

  .cruise-line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cruise-line-link {
    min-height: 114px;
    padding: 14px 11px 12px;
    border-radius: 16px;
  }

  .cruise-line-link img {
    max-width: 140px;
    height: 42px;
  }

  .cruise-partner-tags {
    min-height: 25px;
    margin-top: 7px;
    padding-top: 7px;
    font-size: 0.58rem;
    line-height: 1.28;
    letter-spacing: 0.06em;
  }

  .tooltip-content {
    left: auto;
    right: 0;
    width: min(92vw, 360px);
  }
}

@media (max-width: 360px) {
  .cruise-line-grid {
    grid-template-columns: 1fr;
  }
}










/* =========================================================
   CRUISE PARTNER CARD STRUCTURE LOCK
========================================================= */
.page-cruise-lines .cruise-line-link {
  display: grid;
  grid-template-rows: minmax(48px, 1fr) auto;
  align-items: center;
  justify-items: center;
  row-gap: 0;
}

.page-cruise-lines .cruise-line-link img {
  grid-row: 1;
  align-self: center;
  justify-self: center;
}

.page-cruise-lines .cruise-partner-tags {
  grid-row: 2;
  align-self: end;
  justify-self: stretch;
}

