:root {
  --tb-color-navy: #13274b;
  --tb-color-deep-navy: #001236;
  --tb-color-coral: #f26458;
  --tb-color-coral-text: #c63f36;
  --tb-color-action-primary: var(--tb-color-coral-text);
  --tb-color-action-primary-hover: #a9342d;
  --tb-color-active: #4f8fcc;
  --tb-color-text: #26354b;
  --tb-color-muted: #5d6879;
  --tb-color-canvas: #f3f5f8;
  --tb-color-warm: #f7f4ef;
  --tb-color-border: #c8d0dc;
  --tb-color-border-subtle: #dce1e8;
  --tb-color-rating: #88601b;
  --tb-color-promotion-surface: #fff0eb;
  --tb-color-feature: #285749;
  --tb-font-body: "Dosis", "Trebuchet MS", sans-serif;
  --tb-font-heading: "Inter", Arial, sans-serif;
  --tb-content-wide: 1280px;
  --tb-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

body,
button,
input,
select,
textarea {
  font-family: var(--tb-font-body);
}

body {
  color: var(--tb-color-text);
  font-size: 1.075rem;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tb-font-heading);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.tb-action {
  align-items: center;
  background: var(--tb-color-action-primary);
  color: #fff;
  display: inline-flex;
  font-weight: 750;
  gap: 0.65rem;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  transition: background-color 180ms var(--tb-ease-out), color 180ms var(--tb-ease-out), transform 180ms var(--tb-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .tb-action:hover {
    background: var(--tb-color-action-primary-hover);
    color: #fff;
  }
}

button:active,
.tb-action:active {
  transform: scale(0.97);
}

.page-id-29 .tb-entry-header {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.page-id-29 .tb-entry-title {
  color: var(--tb-color-navy);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  overflow-wrap: anywhere;
}

.tb-site-header {
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(19 39 75 / 12%);
  position: sticky;
  top: 0;
  z-index: 50;
}

.tb-header-inner {
  align-items: center;
  column-gap: clamp(0.85rem, 1.5vw, 1.5rem);
  display: grid;
  grid-template-columns: auto minmax(13rem, 1fr) auto;
  grid-template-rows: auto;
  height: auto;
  max-width: var(--tb-content-wide);
  min-height: 5rem;
  padding-inline: 1rem;
}

.tb-brand {
  align-self: center;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  min-width: 0;
}

.tb-source-logo img,
.custom-logo-link img {
  display: block;
  height: auto;
  max-height: 3.2rem;
  object-fit: contain;
  width: auto;
}

.tb-primary-nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding: 0;
  width: auto;
}

.tb-header-search {
  align-items: stretch;
  background: #fff;
  border: 1px solid #bcc8d8;
  border-radius: 0.65rem;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  min-width: 0;
  overflow: hidden;
  transition: border-color 160ms var(--tb-ease-out), box-shadow 160ms var(--tb-ease-out);
}

.tb-header-search:focus-within {
  border-color: var(--tb-color-navy);
  box-shadow: 0 0 0 3px rgb(79 143 204 / 22%);
}

.tb-header-search input {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--tb-color-navy);
  font: inherit;
  font-size: 0.875rem;
  min-height: 2.75rem;
  min-width: 0;
  outline: 0;
  padding: 0.55rem 0.35rem 0.55rem 0.8rem;
  width: 100%;
}

.tb-header-search input::placeholder {
  color: #68758a;
  opacity: 1;
}

.tb-header-search input::-webkit-search-cancel-button {
  cursor: pointer;
}

.tb-header-search button {
  align-items: center;
  background: var(--tb-color-navy);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  transition: background-color 160ms var(--tb-ease-out), transform 120ms var(--tb-ease-out);
}

.tb-header-search button .tb-search-icon {
  height: 1.1rem;
  transform: scale(0.86);
  width: 1.1rem;
}

.tb-menu {
  align-items: center;
  gap: clamp(0.85rem, 1.6vw, 1.7rem);
  height: auto;
  justify-content: flex-end;
}

.tb-menu > li > a,
.tb-menu > li > .tb-submenu-toggle {
  align-items: center;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  min-height: 3rem;
  padding: 0.45rem 0;
  position: relative;
}

.tb-menu > li:not(.tb-menu-account, .tb-menu-insurance) > a::after {
  background: var(--tb-color-coral-text);
  bottom: 0.25rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--tb-ease-out);
  width: 100%;
}

.tb-menu > li:not(.tb-menu-account, .tb-menu-insurance) > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.tb-menu-insurance a {
  border: 1px solid var(--tb-color-coral-text);
  border-radius: 0.45rem;
  color: var(--tb-color-coral-text);
  padding-inline: 0.85rem !important;
  transition: background-color 180ms var(--tb-ease-out), color 180ms var(--tb-ease-out), transform 140ms var(--tb-ease-out);
}

.tb-menu-insurance a[aria-current="page"] {
  background: rgb(198 63 54 / 9%);
}

.tb-menu-account a {
  background: var(--tb-color-navy);
  border: 1px solid var(--tb-color-navy);
  color: #fff;
  padding-inline: 1rem !important;
  transition: background-color 180ms var(--tb-ease-out), border-color 180ms var(--tb-ease-out), color 180ms var(--tb-ease-out), transform 140ms var(--tb-ease-out);
}

.tb-menu-enquiry > a {
  color: var(--tb-color-coral-text);
}

.tb-nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--tb-color-navy);
  cursor: pointer;
  display: none;
  gap: 0.65rem;
  height: 4.5rem;
  justify-self: end;
  justify-content: center;
  padding: 0 0.25rem;
  position: relative;
  width: auto;
}

.tb-nav-toggle__label {
  font-size: 0.9rem;
  font-weight: 700;
}

.tb-nav-toggle__icon {
  display: grid;
  gap: 0.25rem;
  width: 1.35rem;
}

.tb-nav-toggle > .tb-nav-toggle__icon[aria-hidden] {
  background: transparent;
  display: grid;
  height: auto;
  left: auto;
  position: static;
  top: auto;
  width: 1.35rem;
}

.tb-nav-toggle > .tb-nav-toggle__icon[aria-hidden]::before,
.tb-nav-toggle > .tb-nav-toggle__icon[aria-hidden]::after {
  content: none;
  display: none;
}

.tb-nav-toggle__icon > span {
  background: currentColor;
  display: block;
  height: 2px;
  transform-origin: center;
  transition: opacity 120ms var(--tb-ease-out), transform 180ms var(--tb-ease-out);
  width: 100%;
}

.tb-nav-toggle[aria-expanded="true"] .tb-nav-toggle__icon > span:first-child {
  transform: translateY(0.4rem) rotate(45deg);
}

.tb-nav-toggle[aria-expanded="true"] .tb-nav-toggle__icon > span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.tb-nav-toggle[aria-expanded="true"] .tb-nav-toggle__icon > span:last-child {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.tb-site-footer {
  background: var(--tb-color-deep-navy);
  color: #fff;
  overflow: hidden;
  padding: 0;
}

.tb-footer-newsletter {
  align-items: start;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  display: grid;
  gap: 1.5rem clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.tb-footer-newsletter > h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: -0.03em;
  margin: 0;
}

.tb-footer-newsletter__form,
.tb-newsletter-form {
  min-width: 0;
}

.tb-newsletter-form__row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.tb-newsletter-form__row input,
.tb-newsletter-form__row button {
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 0.5rem;
  font: inherit;
  min-height: 2.75rem;
}

.tb-newsletter-form__row input {
  background: #fff;
  color: var(--tb-color-deep-navy);
  padding: 0.7rem 0.9rem;
  width: 100%;
}

.tb-newsletter-form__row button {
  background: var(--tb-color-coral-text);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0.7rem 1.2rem;
  transition: background-color 160ms var(--tb-ease-out), color 160ms var(--tb-ease-out);
}

.tb-newsletter-form__row input:focus-visible,
.tb-newsletter-form__row button:focus-visible,
.tb-newsletter-form__consent input:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.tb-newsletter-form__consent {
  align-items: flex-start;
  color: rgb(255 255 255 / 78%);
  display: flex;
  font-size: 0.86rem;
  gap: 0.65rem;
  line-height: 1.55;
  margin-top: 1rem;
}

.tb-newsletter-form__consent input {
  flex: 0 0 auto;
  height: 1.25rem;
  margin: 0.1rem 0 0;
  width: 1.25rem;
}

.tb-newsletter-form__consent a {
  color: #fff;
  text-underline-offset: 0.2em;
}

.tb-newsletter-form__help,
.tb-newsletter-notice {
  color: rgb(255 255 255 / 68%);
  font-size: 0.82rem;
  margin: 0.75rem 0 0;
}

.tb-newsletter-notice {
  color: #fff;
  font-weight: 700;
  margin: 0 0 1rem;
}

.tb-newsletter-form__website {
  left: -10000px;
  position: absolute;
}

.tb-footer-main {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(12rem, 1fr) minmax(10rem, 1fr) minmax(12rem, 1fr);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.tb-footer-main h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 1rem;
}

.tb-footer-brand h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: -0.03em;
}

.tb-footer-main ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tb-footer-main a {
  color: rgb(255 255 255 / 78%);
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: color 160ms var(--tb-ease-out), text-decoration-color 160ms var(--tb-ease-out);
}

.tb-footer-account {
  display: inline-flex;
  font-weight: 700;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tb-footer-contact {
  display: grid;
  font-style: normal;
  gap: 0.35rem;
}

.tb-footer-contact a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.tb-footer-bottom {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: rgb(255 255 255 / 78%);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  padding-block: 1.35rem;
}

.tb-footer-bottom p {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .tb-header-search button:hover {
    background: var(--tb-color-coral-text);
  }

  .tb-menu > li:not(.tb-menu-account, .tb-menu-insurance) > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .tb-menu-insurance a:hover {
    background: var(--tb-color-coral-text);
    color: #fff;
  }

  .tb-menu-account a:hover {
    background: var(--tb-color-coral-text);
    border-color: var(--tb-color-coral-text);
    color: #fff;
  }

  .tb-footer-main a:hover {
    color: #fff;
    text-decoration-color: currentColor;
  }

  .tb-newsletter-form__row button:hover {
    background: #fff;
    color: var(--tb-color-deep-navy);
  }
}

@media (min-width: 960px) and (max-width: 1399px) {
  .tb-header-inner {
    column-gap: 0.75rem;
    grid-template-columns: auto minmax(10rem, 1fr) auto;
  }

  .tb-source-logo img,
  .custom-logo-link img {
    max-width: 9rem;
  }

  .tb-menu {
    gap: clamp(0.55rem, 1vw, 0.8rem);
  }

  .tb-menu > li > a,
  .tb-menu > li > .tb-submenu-toggle {
    font-size: 0.9rem;
  }
}

@media (max-width: 1099px) {
  body.tb-navigation-open {
    overflow: hidden;
  }

  .tb-header-inner {
    gap: 0.5rem 0.75rem;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 3.5rem 3rem;
    min-height: 8rem;
    padding: 0.5rem 1rem;
  }

  .tb-brand {
    left: auto;
    position: static;
    top: auto;
  }

  .tb-source-logo img,
  .custom-logo-link img {
    height: auto;
    max-height: 2.75rem;
    max-width: 10.5rem;
    width: auto;
  }

  .tb-nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    height: 3.5rem;
    right: auto;
    top: auto;
  }

  .tb-header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .tb-header-search input,
  .tb-header-search button {
    min-height: 3rem;
  }

  .tb-primary-nav {
    background: var(--tb-color-deep-navy);
    border: 0;
    bottom: 0;
    box-shadow: none;
    display: block;
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    left: 0;
    max-width: none;
    opacity: 0;
    overscroll-behavior: contain;
    overflow-y: auto;
    padding: clamp(1.5rem, 7vw, 3rem) 1.5rem max(2rem, env(safe-area-inset-bottom));
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 8rem;
    transform: translateY(-0.75rem);
    transition: opacity 160ms var(--tb-ease-out), transform 220ms var(--tb-ease-out), visibility 0s linear 220ms;
    visibility: hidden;
    width: 100%;
    will-change: opacity, transform;
    z-index: 100;
  }

  .tb-primary-nav[data-open] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .tb-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin-inline: auto;
    max-width: 34rem;
  }

  .tb-menu li {
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .tb-menu > li {
    display: block;
  }

  .tb-menu a {
    color: #fff;
    font-family: var(--tb-font-heading);
    font-size: clamp(1.35rem, 6vw, 2rem);
    min-height: 3rem;
    padding: 1rem 0;
  }

  .tb-menu > li:not(.tb-menu-account, .tb-menu-insurance) > a::after {
    display: none;
  }

  .tb-menu-insurance {
    padding: 1.25rem 0 0.5rem;
  }

  .tb-menu-insurance a {
    font-family: var(--tb-font-body);
    font-size: 1.05rem;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.75rem 1rem !important;
  }

  .tb-menu-account {
    border-bottom: 0 !important;
    padding-top: 0.75rem;
  }

  .tb-menu-account a {
    background: var(--tb-color-coral-text);
    border-color: var(--tb-color-coral-text);
    font-family: var(--tb-font-body);
    font-size: 1.05rem;
    justify-content: center;
    margin: 0;
    min-height: 3.5rem;
  }

  .tb-footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .tb-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .tb-header-inner {
    padding-inline: 0.75rem;
  }

  .tb-header-search input {
    font-size: 1rem;
  }

  .tb-footer-newsletter,
  .tb-footer-main {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .tb-newsletter-form__row {
    grid-template-columns: 1fr;
  }

  .tb-newsletter-form__row button {
    width: 100%;
  }

  .tb-footer-brand {
    grid-column: auto;
  }

  .tb-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1099px), (hover: none), (pointer: coarse) {
  .tb-brand a,
  .tb-footer-main a {
    align-items: center;
    display: inline-flex;
    min-height: 2.75rem;
  }

  .tb-footer-main ul {
    gap: 0.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tb-menu > li > a::after,
  .tb-header-search,
  .tb-header-search button,
  .tb-primary-nav,
  .tb-menu-insurance a,
  .tb-menu-account a,
  .tb-nav-toggle__icon > span,
  .tb-footer-main a,
  .tb-newsletter-form__row button {
    transition: none;
  }
}

/* Shared package and cruise detail layout. */
.tb-single-offer .tb-offer { box-shadow: none; }
.tb-single-offer .tb-offer__content h1 { font-size: clamp(1.65rem, 2.4vw, 2.4rem); line-height: 1.18; text-wrap: balance; }
.tb-single-offer .tb-offer__content, .tb-single-offer .tb-offer__price { min-width: 0; }
.tb-single-offer .tb-offer__price { gap: .75rem; }
.tb-single-offer .tb-offer__meta { gap: .5rem 1rem; line-height: 1.5; }
.tb-single-offer :is(.tb-cruise-configurator__intro, .tb-package-variants__intro) { display: block; }
.tb-single-offer :is(.tb-cruise-configurator__intro, .tb-package-variants__intro) > p { margin-top: .6rem; max-width: 65ch; }
.tb-single-offer :is(input, select, textarea) { font-size: 1rem; max-width: 100%; min-width: 0; }
.tb-single-offer select { min-height: 3rem; text-overflow: ellipsis; }
.tb-single-offer select:disabled { color: #526074; opacity: 1; background-color: #f3f5f8; }
.tb-single-offer .tb-field > label { display: block; margin-bottom: .45rem; line-height: 1.4; }
.tb-single-offer .tb-passenger-policy { font-size: .9rem; line-height: 1.55; }
.tb-single-offer .tb-cruise-variant__body h4 { font-size: 1.1rem; line-height: 1.4; }
.tb-single-offer .tb-cruise-variant__summary { min-width: 0; }
.tb-single-offer .tb-cruise-variant__inquiry { font-size: .9rem; line-height: 1.4; }
.tb-single-offer .tb-cruise-details__tab { min-height: 3rem; font-size: .95rem; }
.tb-single-offer .tb-cruise-details__panel { border-radius: 0 0 .75rem .75rem; }
.tb-single-offer :is(.tb-cruise-details__panel, .tb-package-details__rich-text) :is(p, ul, ol, blockquote) { max-width: 72ch; line-height: 1.75; }
.tb-single-offer :is(.tb-cruise-details__panel, .tb-package-details__rich-text) :is(h2, h3, h4) { line-height: 1.35; margin-block: 1.5rem .75rem; }
.tb-single-offer .tb-cruise-details__disclosure { margin-block: .75rem; border: 1px solid #d9dee7; border-radius: .5rem; }
.tb-single-offer .tb-cruise-details__disclosure-content { max-height: none; max-width: 76ch; }
.tb-single-offer .tb-cruise-cabins { align-items: start; gap: .65rem; }
.tb-single-offer .tb-cruise-cabin[hidden] { display: none; }
.tb-single-offer .tb-cruise-cabin > h3 { font-size: 1rem; margin: 0; padding: 1rem; font-weight: 600; }
.tb-single-offer .tb-cruise-cabin > summary { font-size: 1rem; font-weight: 600; }
.tb-single-offer .tb-cruise-cabins__toggle { margin-top: 1rem; }
.tb-single-offer :is(.tb-cruise-cabin, .tb-cruise-details__disclosure) > summary:focus-visible { outline: 3px solid #4f8fcc; outline-offset: -3px; }
@media (min-width: 961px) {
  .tb-single-offer .tb-offer:not(.tb-offer--without-image) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
  .tb-single-offer .tb-offer:not(.tb-offer--without-image) .tb-offer__media { grid-column: 1; grid-row: 1 / 3; }
  .tb-single-offer .tb-offer:not(.tb-offer--without-image) .tb-offer__content { grid-column: 2; }
  .tb-single-offer .tb-offer:not(.tb-offer--without-image) .tb-offer__price { grid-column: 2; border-left: 0; border-top: 1px solid #d9dee7; }
  .tb-single-offer .tb-offer__image { max-height: none; height: 100%; }
  .tb-single-offer .tb-cruise-configurator__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tb-single-offer .tb-cruise-configurator__grid > .tb-field:has([data-cruise-cabin]) { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .tb-single-offer .tb-offer { grid-template-columns: minmax(0, 1fr); }
  .tb-single-offer .tb-offer__media { order: 2; min-height: 0; }
  .tb-single-offer .tb-offer__price { order: 3; border-left: 0; }
  .tb-single-offer .tb-offer__image { aspect-ratio: 16 / 9; min-height: 0; max-height: 22rem; }
  .tb-single-offer .tb-cruise-configurator__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tb-single-offer .tb-cruise-configurator__grid > .tb-field:has([data-cruise-cabin]) { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .tb-single-offer :is(.tb-cruise-configurator, .tb-package-variants, .tb-package-details, .tb-offer-contract) { padding: 1rem; border-radius: .75rem; }
  .tb-single-offer .tb-cruise-configurator__grid { grid-template-columns: minmax(0, 1fr); }
  .tb-single-offer .tb-cruise-cabins { grid-template-columns: minmax(0, 1fr); }
  .tb-single-offer .tb-cruise-details__panel { padding: .85rem; }
  .tb-single-offer .tb-cruise-details__tab-list { gap: .25rem; }
  .tb-single-offer .tb-cruise-details__tab { padding-inline: .5rem; }
  .tb-single-offer .tb-cruise-variant__summary { padding: 1rem; }
  .tb-single-offer .tb-cruise-variant__inquiry { width: 100%; }
}

/* Shared archive cards adapt to the result column, including beside filters. */
@media (max-width: 640px) {
 .tb-booking-page .tb-results-toolbar > .tb-field-help { grid-column: 1 / -1; margin: 0; }
 .tb-booking-page .tb-results-toolbar .tb-result-count { font-size: 1rem; overflow-wrap: anywhere; }
}
.tb-booking-page .tb-results { container-type: inline-size; gap: 1.25rem; }
.tb-booking-page .tb-results .tb-result-card { grid-template-columns: minmax(0, 1fr); border-radius: .75rem; box-shadow: none; transition: border-color 150ms ease-out; }
.tb-booking-page .tb-results .tb-result-card__image-link { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
.tb-booking-page .tb-results .tb-result-card__image { width: 100%; height: 100%; min-height: 0; max-height: none; aspect-ratio: auto; object-fit: cover; }
.tb-booking-page .tb-results .tb-result-card__body { gap: .65rem; padding: 1.1rem; min-width: 0; }
.tb-booking-page .tb-results .tb-result-card__body h2 { font-size: 1.15rem; font-weight: 650; line-height: 1.35; margin: 0; text-wrap: pretty; }
.tb-booking-page .tb-results .tb-result-card__location { color: #596579; font-size: .8rem; line-height: 1.45; font-weight: 500; text-transform: none; letter-spacing: normal; margin: 0; display: block; overflow-wrap: anywhere; }
.tb-booking-page .tb-results .tb-result-card__meta { font-size: .9rem; font-weight: 500; margin: 0; }
.tb-booking-page .tb-results .tb-result-card__facts--structured { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .65rem; margin: .35rem 0 0; padding-top: .8rem; border-top: 1px solid #edf0f3; }
.tb-booking-page .tb-results .tb-result-card__facts--structured dt { font-size: .75rem; font-weight: 400; color: #596579; }
.tb-booking-page .tb-results .tb-result-card__facts--structured dd { font-size: .85rem; font-weight: 500; line-height: 1.45; }
.tb-booking-page .tb-results .tb-result-card__action { grid-column: auto; grid-template-columns: minmax(0, 1fr) auto; align-items: center; align-content: start; gap: .75rem 1rem; padding: 1.1rem; border-left: 0; border-top: 1px solid #e3e7ec; background: #fafbfc; }
.tb-booking-page .tb-results .tb-result-card__price { font-size: 1.4rem; font-weight: 700; line-height: 1.25; font-variant-numeric: tabular-nums; }
.tb-booking-page .tb-results .tb-result-card__price-block > span { font-size: .78rem; font-weight: 500; line-height: 1.4; }
.tb-booking-page .tb-results .tb-result-card__price-block :is(small,time) { font-size: .72rem; line-height: 1.4; }
.tb-booking-page .tb-results .tb-result-card__previous-price { font-size: .9rem; font-weight: 400; }
.tb-booking-page .tb-results .tb-result-card__availability { grid-column: 1 / -1; grid-row: 2; margin: 0; font-size: .75rem; font-weight: 400; line-height: 1.5; }
.tb-booking-page .tb-results .tb-result-card__availability[data-availability-state="unverified"]::before { background: #8c98a8; }
.tb-booking-page .tb-results .tb-result-card__actions { grid-column: 2; grid-row: 1; margin: 0; }
.tb-booking-page .tb-results .tb-result-card__actions .tb-button { min-height: 2.75rem; border-radius: .4rem; font-size: .9rem; padding: .7rem 1.15rem; }
.tb-booking-page .tb-results .tb-result-card__badges { gap: .4rem; margin: 0 0 .15rem; align-items: start; }
.tb-booking-page .tb-offer-badges .tb-offer-badge { align-items: center; gap: .35rem; background: var(--tb-color-promotion-surface); color: #93362e; border: 0; border-radius: .35rem; padding: .4rem .6rem; font-size: .8rem; font-weight: 600; line-height: 1.4; letter-spacing: normal; text-transform: none; white-space: normal; max-width: 100%; overflow-wrap: anywhere; }
.tb-booking-page .tb-offer-badges .tb-offer-badge--discount { color: #fff; background: #b43830; }
.tb-booking-page .tb-offer-badge svg { width: 1rem; height: 1rem; flex: 0 0 1rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tb-booking-page .tb-offer-rating { display: flex; align-items: center; flex-wrap: wrap; gap: .4rem .65rem; max-width: 100%; color: var(--tb-color-rating); }
.tb-offer-rating__stars { display: inline-flex; gap: .1rem; }
.tb-offer-rating__stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.tb-offer-rating__label { font-size: .8rem; line-height: 1.4; color: var(--tb-color-muted); overflow-wrap: anywhere; }
.tb-booking-page .tb-offer-features { display: flex; flex-wrap: wrap; gap: .4rem 1rem; list-style: none; padding: 0; margin: 0; }
.tb-offer-features li { display: flex; align-items: baseline; gap: .35rem; max-width: 100%; font-size: .85rem; line-height: 1.5; color: var(--tb-color-feature); overflow-wrap: anywhere; }
.tb-offer-features svg { width: .9rem; height: .9rem; flex: 0 0 .9rem; align-self: flex-start; margin-top: .2rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tb-booking-page .tb-results .tb-result-card__fact--wide { grid-column: 1 / -1; }
.tb-booking-page .tb-results .tb-result-card__previous-price { color: var(--tb-color-muted); text-decoration-thickness: 1px; }
.tb-booking-page .tb-results .tb-result-card__price-block:has(del) .tb-result-card__price { color: var(--tb-color-coral-text); }
.tb-booking-page .tb-results .tb-result-card__heading { display: block; }
@container (min-width: 36rem) {
 .tb-booking-page .tb-results .tb-result-card { grid-template-columns: minmax(12rem, .8fr) minmax(0, 1.3fr); }
 .tb-booking-page .tb-results .tb-result-card__image-link { aspect-ratio: auto; height: 100%; min-height: 12rem; }
 .tb-booking-page .tb-results .tb-result-card__action { grid-column: 1 / -1; }
 .tb-booking-page .tb-results .tb-result-card--without-image { grid-template-columns: minmax(0, 1fr); }
}
@container (min-width: 52rem) {
 .tb-booking-page .tb-results .tb-result-card { grid-template-columns: minmax(12rem, .85fr) minmax(0, 1.35fr) minmax(11.5rem, .8fr); }
 .tb-booking-page .tb-results .tb-result-card__action { grid-column: auto; grid-template-columns: minmax(0, 1fr); align-content: space-between; border-top: 0; border-left: 1px solid #e3e7ec; }
 .tb-booking-page .tb-results .tb-result-card__actions { grid-column: 1; grid-row: 3; }
 .tb-booking-page .tb-results .tb-result-card__availability { grid-row: 2; }
 .tb-booking-page .tb-results .tb-result-card--without-image { grid-template-columns: minmax(0, 1fr) minmax(11.5rem, .4fr); }
}
@container (max-width: 23rem) {
 .tb-booking-page .tb-results .tb-result-card__action { grid-template-columns: minmax(0, 1fr); }
 .tb-booking-page .tb-results .tb-result-card__actions { grid-column: 1; grid-row: 3; }
 .tb-booking-page .tb-results .tb-result-card__facts--structured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .tb-booking-page .tb-results .tb-result-card__facts--structured > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (hover: hover) { .tb-booking-page .tb-results .tb-result-card:hover { border-color: #aab5c3; box-shadow: none; } }
@media (prefers-reduced-motion: reduce) { .tb-booking-page .tb-results .tb-result-card { transition: none; } }
