/* MSC World Europa – SEO-/AI-Pilot, 2026-08-11 */

body.ship-detail-v2 {
  background: #fff;
  color: var(--ink);
}

html.ship-detail-v2-root {
  scroll-behavior: auto;
}

.ship-detail-v2 main {
  overflow: hidden;
}

.ship-detail-v2 .ship-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ship-detail-v2 .ship-container--narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.ship-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 68px));
  display: flex;
  align-items: end;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}

.ship-hero__media,
.ship-hero__media img,
.ship-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ship-hero__media {
  z-index: -2;
  overflow: hidden;
}

.ship-hero__media img {
  display: block;
  object-fit: cover;
  object-position: 56% center;
}

.ship-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, .08) 5%, rgba(18, 18, 18, .36) 48%, rgba(18, 18, 18, .94) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, .72), rgba(18, 18, 18, .08) 72%);
}

.ship-hero__content {
  padding-block: 46px 58px;
}

.ship-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: rgba(245, 243, 239, .68);
}

.ship-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.ship-breadcrumb a:hover {
  color: var(--paper);
}

.ship-breadcrumb__separator {
  color: var(--gold);
}

.ship-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.ship-detail-v2 .ship-section--white .ship-kicker,
.ship-detail-v2 .ship-section--paper .ship-kicker,
.ship-detail-v2 .angebote-slot .ship-kicker {
  color: #705817;
}

.ship-detail-v2 .ship-section--ink .ship-kicker {
  color: var(--gold);
}

.ship-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.ship-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}

.ship-hero__lead {
  max-width: 660px;
  margin: 22px 0 30px;
  color: rgba(245, 243, 239, .86);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.ship-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ship-actions .btn {
  text-align: center;
}

.ship-actions .btn--outline-light {
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(245, 243, 239, .68);
}

.ship-actions .btn--outline-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.ship-jumpnav {
  position: sticky;
  z-index: 20;
  top: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(18, 18, 18, .05);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.ship-jumpnav::-webkit-scrollbar {
  display: none;
}

.ship-jumpnav .ship-container {
  display: flex;
  gap: 28px;
  min-width: max-content;
}

.ship-jumpnav a {
  position: relative;
  padding: 17px 0 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.ship-jumpnav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.ship-jumpnav a:hover,
.ship-jumpnav a:focus-visible {
  color: var(--ink);
}

.ship-jumpnav a:hover::after,
.ship-jumpnav a:focus-visible::after {
  transform: scaleX(1);
}

.ship-section[id],
.ship-detail-v2 main section[id] {
  scroll-margin-top: 88px;
}

.ship-section {
  padding-block: 88px;
}

.ship-section--paper {
  background: var(--paper);
}

.ship-section--white {
  background: #fff;
}

.ship-section--ink {
  background: var(--ink);
  color: var(--paper);
}

.ship-section--ink h2,
.ship-section--ink h3,
.ship-section--ink h4 {
  color: var(--paper);
}

.ship-section--ink p,
.ship-section--ink li {
  color: rgba(245, 243, 239, .76);
}

.ship-section__head {
  max-width: 760px;
  margin-bottom: 42px;
}

.ship-section__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.ship-section__head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.ship-section--ink .ship-section__head p {
  color: rgba(245, 243, 239, .72);
}

.ship-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: 72px;
  align-items: start;
}

.ship-editorial h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
}

.ship-editorial p {
  margin: 0 0 18px;
  color: #48463f;
  font-size: 17px;
  line-height: 1.78;
}

.ship-review-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 16px;
  max-width: 620px;
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
}

.ship-review-line span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ship-review-line strong {
  color: var(--ink);
  font-size: 13px;
}

.ship-review-line time {
  color: var(--muted);
  font-size: 11px;
}

.ship-facts {
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
}

.ship-facts h3 {
  margin: 0 0 24px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.ship-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 243, 239, .16);
  border-left: 1px solid rgba(245, 243, 239, .16);
}

.ship-fact {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(245, 243, 239, .16);
  border-bottom: 1px solid rgba(245, 243, 239, .16);
}

.ship-fact strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.ship-fact span {
  display: block;
  margin-top: 5px;
  color: rgba(245, 243, 239, .67);
  font-size: 12px;
}

.ship-source-note {
  margin: 18px 0 0;
  color: rgba(245, 243, 239, .54);
  font-size: 11px;
  line-height: 1.5;
}

.angebote-slot {
  padding-block: 88px;
  background: var(--paper);
}

.angebote-slot__live .ship-section__head,
.angebote-slot__fallback .ship-section__head {
  margin-bottom: 34px;
}

.angebote-slot__cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
}

.ship-offer-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: stretch;
}

.ship-offer-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.ship-offer-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, .72));
  content: "";
  pointer-events: none;
}

.ship-offer-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.ship-offer-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ship-offer-layout .angebote-slot__cards {
  align-content: start;
}

.angebote-card {
  min-height: 280px;
  padding: 30px;
  box-shadow: 0 16px 45px rgba(26, 26, 26, .07);
}

.angebote-card__price {
  margin-top: auto;
  padding-top: 10px;
  color: var(--gold-text);
  font-size: 30px;
}

.angebote-slot__disclaimer,
.ship-price-note {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.ship-offer-freshness {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.ship-offer-empty {
  margin: 0;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.ship-offer-fallback {
  max-width: none;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.ship-offer-fallback p {
  margin: 0 0 20px;
  color: var(--muted);
}

.ship-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ship-fit-card {
  padding: 36px;
  border: 1px solid rgba(245, 243, 239, .16);
  background: var(--ink-soft);
}

.ship-fit-card h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
}

.ship-fit-card ul,
.ship-inclusions ul,
.cabin-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ship-fit-card li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid rgba(245, 243, 239, .1);
}

.ship-fit-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
}

.ship-fit-card--not li::before {
  content: "–";
}

.onboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ship-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 18px;
  margin-bottom: 24px;
}

.ship-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.ship-gallery__feature {
  aspect-ratio: 4 / 3;
}

.ship-gallery__stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ship-gallery__stack figure {
  aspect-ratio: 16 / 9;
}

.ship-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ship-gallery figure:hover img {
  transform: scale(1.02);
}

.ship-gallery figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, .78));
  content: "";
  pointer-events: none;
}

.ship-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 20px;
}

.onboard-card {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.onboard-card__number {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-text);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.onboard-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 22px;
}

.onboard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cabin-card {
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(245, 243, 239, .14);
  background: var(--ink-soft);
}

.cabin-card > img {
  display: block;
  width: calc(100% + 68px);
  max-width: none;
  margin: -34px -34px 28px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cabin-card__label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cabin-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
}

.cabin-card > p {
  margin: 0 0 20px;
  font-size: 14px;
}

.cabin-card li {
  padding: 9px 0;
  border-top: 1px solid rgba(245, 243, 239, .1);
  font-size: 13px;
  line-height: 1.45;
}

.ship-image-note {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(245, 243, 239, .56) !important;
  font-size: 11px;
  line-height: 1.55;
}

.ship-table-wrap {
  width: 100%;
  margin: 0 0 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
}

.ship-data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
  text-align: left;
}

.ship-data-table th,
.ship-data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  vertical-align: top;
}

.ship-data-table thead th {
  background: #ece8df;
  color: #58554e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ship-data-table tbody th {
  color: var(--ink);
  font-weight: 700;
}

.ship-data-table tbody tr:last-child th,
.ship-data-table tbody tr:last-child td {
  border-bottom: 0;
}

.ship-data-table a {
  color: inherit;
  text-decoration-color: rgba(180, 143, 52, .55);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.ship-data-table a:hover {
  color: var(--gold-text);
}

.ship-data-table .is-current {
  background: rgba(180, 143, 52, .1);
}

.ship-data-table--comparison th,
.ship-data-table--comparison td {
  width: 25%;
}

.ship-data-table--comparison tbody th {
  width: 25%;
}

.ship-section--ink .ship-table-wrap {
  border-color: rgba(245, 243, 239, .16);
  background: var(--ink-soft);
}

.ship-data-table--dark {
  color: rgba(245, 243, 239, .76);
}

.ship-data-table--dark th,
.ship-data-table--dark td {
  border-color: rgba(245, 243, 239, .13);
}

.ship-data-table--dark thead th {
  background: rgba(245, 243, 239, .08);
  color: rgba(245, 243, 239, .62);
}

.ship-data-table--dark tbody th {
  color: var(--paper);
}

.ship-table-note {
  max-width: 850px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.ship-section--ink .ship-table-note {
  color: rgba(245, 243, 239, .56);
}

.ship-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ship-deck-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.ship-deck-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-text);
  font-family: var(--display);
  font-size: 30px;
}

.ship-deck-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.ship-deck-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ship-deck-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 28px 30px;
  background: var(--ink);
  color: var(--paper);
}

.ship-deck-cta strong,
.ship-deck-cta span {
  display: block;
}

.ship-deck-cta strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.ship-deck-cta span {
  margin-top: 5px;
  color: rgba(245, 243, 239, .62);
  font-size: 12px;
}

.ship-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ship-inclusions__card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.ship-inclusions__card h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 26px;
}

.ship-inclusions li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #59564f;
}

.ship-inclusions li::before {
  position: absolute;
  left: 0;
  color: var(--gold-text);
  content: "✓";
  font-weight: 700;
}

.ship-inclusions__card--extra li::before {
  content: "+";
}

.ship-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 52px;
  align-items: end;
  max-width: 980px;
  margin-inline: auto;
}

.ship-quote blockquote {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(25px, 3.8vw, 40px);
  font-style: italic;
  line-height: 1.35;
}

.ship-quote__person {
  padding-top: 20px;
  border-top: 1px solid rgba(245, 243, 239, .18);
}

.ship-quote__person strong {
  display: block;
  color: var(--paper);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
}

.ship-quote__person span {
  display: block;
  margin-top: 5px;
  color: rgba(245, 243, 239, .62);
  font-size: 12px;
}

.ship-quote__person a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ship-faq {
  border-top: 1px solid var(--line);
}

.ship-faq details {
  border-bottom: 1px solid var(--line);
}

.ship-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.ship-faq summary::-webkit-details-marker {
  display: none;
}

.ship-faq summary::after {
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--gold-text);
  content: "+";
  font-family: var(--body);
  font-size: 28px;
  font-weight: 300;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.ship-faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.ship-faq__answer {
  max-width: 720px;
  padding: 0 0 24px;
  color: var(--muted);
}

.ship-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ship-related-head {
  max-width: 760px;
  margin: 54px 0 26px;
}

.ship-related-head h3 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}

.ship-related-head p {
  margin: 0;
  color: var(--muted);
}

.ship-related-grid a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.ship-related-grid a:hover {
  z-index: 1;
  background: #f7f4ed;
  transform: translateY(-3px);
}

.ship-related-grid span {
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ship-related-grid strong {
  margin: 22px 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.ship-related-grid em {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.ship-sources-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.ship-sources-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
}

.ship-sources-layout > div:first-child p {
  margin: 18px 0 0;
  color: var(--muted);
}

.ship-sources {
  border-top: 1px solid var(--line);
}

.ship-sources a,
.ship-sources > div {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.ship-sources a:hover strong {
  color: var(--gold-text);
}

.ship-sources strong {
  font-size: 13px;
}

.ship-sources span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ship-source-status {
  grid-column: 1 / -1;
  margin: -20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.ship-cta {
  text-align: center;
}

.ship-cta h2 {
  max-width: 15ch;
  margin: 0 auto 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.ship-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(245, 243, 239, .72);
}

.ship-detail-v2 footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .ship-intro,
  .ship-quote,
  .ship-sources-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .onboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ship-deck-grid {
    grid-template-columns: 1fr;
  }

  .ship-deck-card {
    min-height: 0;
  }

  .ship-deck-card > span {
    margin-bottom: 22px;
  }

  .ship-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ship-offer-layout,
  .ship-gallery {
    grid-template-columns: 1fr;
  }

  .ship-offer-visual {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .ship-offer-visual img {
    min-height: 0;
    object-position: center 42%;
  }

  .ship-gallery__feature {
    aspect-ratio: 16 / 10;
  }

  .ship-gallery__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .ship-quote__person {
    max-width: 360px;
  }

  .ship-source-status {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .ship-detail-v2 .ship-container,
  .ship-detail-v2 .ship-container--narrow {
    width: min(100% - 32px, 1180px);
  }

  .ship-hero {
    min-height: 620px;
  }

  .ship-hero__content {
    padding-block: 34px 42px;
  }

  .ship-jumpnav .ship-container {
    gap: 22px;
  }

  .ship-breadcrumb {
    margin-bottom: 24px;
  }

  .ship-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .ship-actions {
    flex-direction: column;
  }

  .ship-actions .btn {
    width: 100%;
  }

  .ship-section,
  .angebote-slot {
    padding-block: 62px;
  }

  .ship-intro {
    grid-template-columns: 1fr;
  }

  .ship-fit-grid,
  .cabin-grid,
  .ship-inclusions,
  .ship-related-grid {
    grid-template-columns: 1fr;
  }

  .onboard-grid {
    grid-template-columns: 1fr;
  }

  .onboard-card {
    min-height: 0;
  }

  .ship-facts,
  .ship-fit-card,
  .cabin-card,
  .ship-inclusions__card,
  .ship-deck-card {
    padding: 26px;
  }

  .ship-review-line {
    grid-template-columns: 1fr;
  }

  .ship-review-line span {
    grid-row: auto;
  }

  .ship-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .ship-data-table {
    display: block;
    min-width: 0;
    border-collapse: separate;
  }

  .ship-data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .ship-data-table tbody {
    display: grid;
    gap: 12px;
  }

  .ship-data-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
  }

  .ship-data-table tbody th,
  .ship-data-table tbody td {
    display: block;
    width: auto;
    padding: 13px 16px;
    border: 0;
  }

  .ship-data-table tbody th {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
    background: #ece8df;
  }

  .ship-data-table tbody td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-text);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .ship-data-table--dark tbody tr {
    border-color: rgba(245, 243, 239, .16);
    background: var(--ink-soft);
  }

  .ship-data-table--dark tbody th {
    border-color: rgba(245, 243, 239, .13);
    background: rgba(245, 243, 239, .08);
  }

  .ship-data-table .is-current {
    background: rgba(180, 143, 52, .13);
  }

  .ship-deck-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .ship-related-grid a {
    min-height: 170px;
  }

  .ship-sources a,
  .ship-sources > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cabin-card > img {
    width: calc(100% + 52px);
    margin: -26px -26px 24px;
  }
}

@media (max-width: 430px) {
  .ship-facts__grid {
    grid-template-columns: 1fr;
  }

  .ship-gallery__stack {
    grid-template-columns: 1fr;
  }

  .ship-gallery__stack figure {
    aspect-ratio: 4 / 3;
  }

  .ship-data-table tbody tr {
    grid-template-columns: 1fr;
  }
}
