.tour-showcase-slider {
  --tss-charcoal: #25292a;
  --tss-gray: #6b6f71;
  --tss-teal: #3bb2a0;
  --tss-green: #9ccf2f;
  --tss-orange: #f49a18;
  --tss-orange-dark: #d97808;
  --tss-panel-bg: rgba(37, 41, 42, 0.62);
  --tss-panel-border: rgba(59, 178, 160, 0.32);
  --tss-cream: #ffffff;
  --tss-muted: rgba(255, 255, 255, 0.74);
  --tss-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --tss-heading-font: "Fira Sans Condensed", "Fira Sans", "Aptos", sans-serif;
  --tss-body-font: "Fira Sans", "Aptos", "Segoe UI", sans-serif;
  --tss-condensed-font: "Fira Sans Condensed", "Fira Sans", "Aptos", sans-serif;
  --tss-mono-font: "Fira Mono", Consolas, monospace;
  --tss-panel-width: min(860px, calc(100vw - 40px));
  --tss-mobile-visible-height: 100vh;
  --tss-mobile-visible-height: 100svh;
  position: relative;
  width: 100%;
  height: max(95svh, 720px);
  min-height: max(95svh, 720px);
  overflow: hidden;
  background: #13120f;
  color: var(--tss-cream);
  font-family: var(--tss-body-font);
  isolation: isolate;
}

.tour-showcase-slider[data-tss-options] {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 420ms ease,
    transform 520ms ease,
    visibility 0s linear 420ms;
}

.tour-showcase-slider[data-tss-options].tour-showcase-slider--ready,
.tour-showcase-slider[data-tss-options].tour-showcase-slider--static {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) !important;
  transition-delay: 0s;
}

.tour-showcase-slider *,
.tour-showcase-slider *::before,
.tour-showcase-slider *::after {
  box-sizing: border-box;
}

.tour-showcase-slider__stage,
.tour-showcase-slider__track,
.tour-showcase-slider__slide {
  width: 100%;
  min-height: inherit;
}

.tour-showcase-slider__stage {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

/* Keep the slider clipped even when a theme de-duplicates or delays Swiper CSS. */
.tour-showcase-slider__track {
  position: relative;
  display: flex;
  height: 100%;
  min-height: inherit;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  z-index: 1;
}

.tour-showcase-slider__stage.swiper-vertical > .tour-showcase-slider__track {
  flex-direction: column;
}

.tour-showcase-slider__slide {
  position: relative;
  display: block;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #171717;
}

.tour-showcase-slider__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: inset(3% round 28px);
  opacity: 0.88;
  overflow: hidden;
  transform: scale(1.065);
  transform-origin: 50% 50%;
  transition:
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms ease;
  will-change: clip-path, transform, opacity;
  backface-visibility: hidden;
}

.tour-showcase-slider__slide.is-active .tour-showcase-slider__media,
.tour-showcase-slider__slide.swiper-slide-active .tour-showcase-slider__media {
  clip-path: inset(0 round 0);
  opacity: 1;
  transform: scale(1);
}

.tour-showcase-slider__image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center;
  filter: brightness(1.2) saturate(1.08) contrast(1.01);
}

.tour-showcase-slider__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 50% 82%,
      rgba(3, 8, 17, 0.58) 0%,
      rgba(3, 8, 17, 0.4) 28%,
      rgba(3, 8, 17, 0.18) 56%,
      transparent 76%
    ),
    radial-gradient(
      circle at 68% 18%,
      rgba(59, 178, 160, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 76% 70%,
      rgba(244, 154, 24, 0.05),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(3, 8, 17, 0.26) 0%,
      rgba(3, 8, 17, 0.08) 42%,
      rgba(3, 8, 17, 0.03) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 5, 8, 0.32) 0%,
      rgba(4, 5, 8, 0.12) 34%,
      rgba(4, 5, 8, 0.01) 58%
    );
  pointer-events: none;
}

.tour-showcase-slider__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(35px, 4.5vw, 64px) clamp(16px, 3vw, 43px)
    clamp(18px, 2.25vw, 34px);
}

.tour-showcase-slider__copy {
  width: var(--tss-panel-width);
  max-width: var(--tss-panel-width);
  margin-inline: auto;
  opacity: 0;
  text-align: center;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 700ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-showcase-slider__slide.is-active .tour-showcase-slider__copy,
.tour-showcase-slider__slide.swiper-slide-active .tour-showcase-slider__copy,
.tour-showcase-slider--static .tour-showcase-slider__copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tour-showcase-slider__eyebrow {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 9px;
  color: var(--tss-teal);
  font-family: var(--tss-condensed-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tour-showcase-slider__eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--tss-green), var(--tss-teal));
}

.tour-showcase-slider__title {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  color: #fff;
  font-family: var(--tss-heading-font);
  font-size: 2.52vw;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
}

.tour-showcase-slider__title-main,
.tour-showcase-slider__title-sub {
  display: block;
}

.tour-showcase-slider__title-sub {
  margin-top: 0.08em;
  font-size: 0.52em;
  font-weight: 300;
  line-height: 1.12em;
  letter-spacing: 0;
  opacity: 0.88;
}

.tour-showcase-slider__description {
  width: 100%;
  max-width: none;
  margin: clamp(9px, 1.2vw, 14px) auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--tss-body-font);
  font-size: clamp(13px, 0.7vw, 15px);
  line-height: 1.55;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.tour-showcase-slider__eyebrow,
.tour-showcase-slider__description {
  display: none !important;
}

.tour-showcase-slider__booking {
  align-self: center;
  display: flex;
  width: var(--tss-panel-width);
  min-height: 72px;
  align-items: stretch;
  justify-content: space-between;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--tss-panel-border);
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(37, 41, 42, 0.68),
    rgba(37, 41, 42, 0.52)
  );
  box-shadow: var(--tss-shadow);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms ease 120ms,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.tour-showcase-slider__slide.is-active .tour-showcase-slider__booking,
.tour-showcase-slider__slide.swiper-slide-active .tour-showcase-slider__booking,
.tour-showcase-slider--static .tour-showcase-slider__booking {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tour-showcase-slider__meta {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
}

.tour-showcase-slider__meta-item {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
}

.tour-showcase-slider__meta-item + .tour-showcase-slider__meta-item::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.tour-showcase-slider__meta-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  color: var(--tss-green);
}

.tour-showcase-slider__meta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.tour-showcase-slider__meta-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.tour-showcase-slider__meta-text strong {
  overflow: hidden;
  color: #fff;
  font-family: var(--tss-condensed-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-showcase-slider__meta-text small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--tss-body-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-showcase-slider__button {
  display: inline-flex;
  min-width: 122px;
  align-items: center;
  justify-content: center;
  margin: 15px;
  padding: 0 22px;
  border-radius: 9px;
  background: linear-gradient(
    135deg,
    #ffb42e 0%,
    var(--tss-orange) 56%,
    var(--tss-orange-dark) 100%
  );
  box-shadow: 0 15px 34px rgba(244, 154, 24, 0.3);
  color: #fff;
  font-family: var(--tss-condensed-font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.tour-showcase-slider__button:hover,
.tour-showcase-slider__button:focus-visible {
  background: linear-gradient(
    135deg,
    #ffc34a 0%,
    var(--tss-orange) 48%,
    var(--tss-orange-dark) 100%
  );
  box-shadow: 0 18px 40px rgba(244, 154, 24, 0.44);
  color: #fff;
  transform: translateY(-1px);
}

.tour-showcase-slider__button:focus-visible,
.tour-showcase-slider__pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.tour-showcase-slider__pagination.swiper-pagination {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(18px, 3vw, 42px);
  bottom: auto;
  left: auto;
  display: flex;
  width: auto;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.tour-showcase-slider__pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 !important;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  opacity: 1;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.tour-showcase-slider__pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
}

.tour-showcase-slider__pagination .swiper-pagination-bullet-active {
  border-color: var(--tss-orange);
  background: var(--tss-orange);
  box-shadow: 0 0 0 5px rgba(244, 154, 24, 0.2);
  transform: scale(1.12);
}

.tour-showcase-slider--static .tour-showcase-slider__stage {
  position: relative;
}

.tour-showcase-slider-empty {
  padding: 14px 18px;
  border-left: 4px solid #d63638;
  background: #fff;
  color: #1d2327;
}

@media (max-width: 1180px) {
  .tour-showcase-slider {
    --tss-panel-width: min(820px, calc(100vw - 28px));
  }

  .tour-showcase-slider__booking {
    width: var(--tss-panel-width);
  }

  .tour-showcase-slider__meta-item {
    padding-inline: 15px;
  }
}

@media (max-width: 900px) {
  .tour-showcase-slider {
    height: max(95svh, 700px);
    min-height: max(95svh, 700px);
  }

  .tour-showcase-slider__content {
    padding-top: clamp(32px, 5vw, 48px);
  }

  .tour-showcase-slider__copy {
    width: var(--tss-panel-width);
    max-width: var(--tss-panel-width);
  }

  .tour-showcase-slider__booking {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-showcase-slider__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-showcase-slider__meta-item {
    flex: none;
    padding: 14px 16px;
  }

  .tour-showcase-slider__meta-item + .tour-showcase-slider__meta-item::before {
    display: none;
  }

  .tour-showcase-slider__meta-item:nth-child(2n)::before {
    content: "";
    position: absolute;
    top: 22%;
    bottom: 22%;
    left: 0;
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
  }

  .tour-showcase-slider__button {
    min-height: 46px;
    margin: 0 14px 14px;
  }
}

@media only screen and (max-width: 999px) {
  .traveltour-mobile-header-wrap {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
  }

  .traveltour-mobile-header,
  .traveltour-mobile-header-wrap .traveltour-top-bar {
    background: transparent !important;
    box-shadow: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .tour-showcase-slider__title {
    font-size: 3.42vw;
  }

  .tour-showcase-slider__title-sub {
    font-size: 1em;
  }

  .tour-showcase-slider__booking {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-showcase-slider__meta {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }

  .tour-showcase-slider__meta-item {
    flex: 1 1 0;
  }

  .tour-showcase-slider__meta-item + .tour-showcase-slider__meta-item::before,
  .tour-showcase-slider__meta-item:nth-child(2n)::before {
    content: "";
    position: absolute;
    top: 22%;
    bottom: 22%;
    left: 0;
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
  }

  .tour-showcase-slider__button {
    width: auto;
    min-height: 46px;
    margin: 0 20px 20px;
  }
}

@media (max-width: 767px) {
  .tour-showcase-slider {
    height: var(--tss-mobile-visible-height);
    min-height: 0;
    max-height: var(--tss-mobile-visible-height);
  }

  .tour-showcase-slider__stage,
  .tour-showcase-slider__track,
  .tour-showcase-slider__slide {
    height: 100%;
    min-height: 0;
  }

  .tour-showcase-slider__media {
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    background-position: center top;
    background-size: cover;
    clip-path: none;
    opacity: 1;
    overflow: hidden;
    transform: none;
  }

  .tour-showcase-slider__image {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .tour-showcase-slider__shade {
    background:
      linear-gradient(
        180deg,
        rgba(4, 6, 10, 0) 0%,
        rgba(4, 6, 10, 0.03) 60%,
        rgba(4, 6, 10, 0.12) 70%,
        rgba(4, 6, 10, 0.44) 86%,
        rgba(4, 6, 10, 0.78) 100%
      ),
      radial-gradient(
        ellipse at 50% 100%,
        rgba(3, 8, 17, 0.34) 0%,
        rgba(3, 8, 17, 0.14) 34%,
        transparent 62%
      );
  }

  .tour-showcase-slider__content {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    padding: 0 20px calc(52px + env(safe-area-inset-bottom));
  }

  .tour-showcase-slider__copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 0;
    transform: translate3d(0, 28px, 0);
  }

  .tour-showcase-slider__slide.is-active .tour-showcase-slider__copy,
  .tour-showcase-slider__slide.swiper-slide-active .tour-showcase-slider__copy,
  .tour-showcase-slider--static .tour-showcase-slider__copy {
    transform: translate3d(0, 0, 0);
  }

  .tour-showcase-slider__eyebrow {
    margin-bottom: 6px;
    font-size: clamp(9px, 2.3vw, 11px);
    letter-spacing: 0.13em;
  }

  .tour-showcase-slider__title {
    font-size: 6.12vw;
    line-height: 1.03;
  }

  .tour-showcase-slider__title-sub {
    font-size: 1em;
  }

  .tour-showcase-slider__description {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .tour-showcase-slider__booking {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 10px;
    background: linear-gradient(
      180deg,
      rgba(30, 34, 35, 0.54),
      rgba(20, 23, 24, 0.74)
    );
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
  }

  .tour-showcase-slider__meta {
    display: contents;
  }

  .tour-showcase-slider__meta-item {
    min-height: 46px;
    gap: 8px;
    padding: 8px 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .tour-showcase-slider__meta-item + .tour-showcase-slider__meta-item::before,
  .tour-showcase-slider__meta-item:nth-child(2n)::before {
    display: none;
  }

  .tour-showcase-slider__meta-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .tour-showcase-slider__meta-item:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .tour-showcase-slider__meta-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .tour-showcase-slider__meta-text {
    gap: 1px;
  }

  .tour-showcase-slider__meta-text strong {
    overflow: visible;
    font-size: clamp(10px, 3vw, 12px);
    text-overflow: clip;
    white-space: normal;
  }

  .tour-showcase-slider__meta-text small {
    overflow: visible;
    font-size: clamp(12px, 2.85vw, 14px);
    text-overflow: clip;
    white-space: normal;
  }

  .tour-showcase-slider__button {
    min-width: 0;
    min-height: 46px;
    margin: 0;
    padding: 0 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: none;
  }

  .tour-showcase-slider__booking--meta-count-0 .tour-showcase-slider__button,
  .tour-showcase-slider__booking--meta-count-2 .tour-showcase-slider__button,
  .tour-showcase-slider__booking--meta-count-4 .tour-showcase-slider__button,
  .tour-showcase-slider__booking--meta-count-6 .tour-showcase-slider__button,
  .tour-showcase-slider__booking--meta-count-8 .tour-showcase-slider__button,
  .tour-showcase-slider__booking--meta-count-10 .tour-showcase-slider__button {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .tour-showcase-slider__pagination.swiper-pagination {
    top: auto;
    right: 50%;
    bottom: 14px;
    flex-direction: row;
    transform: translateX(50%);
  }

  .tour-showcase-slider__pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-showcase-slider *,
  .tour-showcase-slider *::before,
  .tour-showcase-slider *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .tour-showcase-slider__media {
    clip-path: none;
    opacity: 1;
    transform: none;
  }

  .tour-showcase-slider__copy,
  .tour-showcase-slider__booking {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .tour-showcase-slider__copy,
  .tour-showcase-slider__slide.is-active .tour-showcase-slider__copy,
  .tour-showcase-slider__slide.swiper-slide-active .tour-showcase-slider__copy,
  .tour-showcase-slider--static .tour-showcase-slider__copy {
    transform: translate3d(0, 0, 0) !important;
  }
}

/* Theme isolation: GoodLayers/TravelTour applies broad heading and link rules. */
section.tour-showcase-slider
  .tour-showcase-slider__copy
  > h2.tour-showcase-slider__title,
.tour-showcase-slider.tour-showcase-slider
  .tour-showcase-slider__copy
  > h2.tour-showcase-slider__title {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-family: var(--tss-heading-font) !important;
  font-size: 2.52vw !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1.1em !important;
  letter-spacing: -0.035em !important;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.36) !important;
  text-transform: none !important;
}

section.tour-showcase-slider
  .tour-showcase-slider__copy
  > p.tour-showcase-slider__description,
.tour-showcase-slider.tour-showcase-slider
  .tour-showcase-slider__copy
  > p.tour-showcase-slider__description {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(9px, 1.2vw, 14px) auto 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-family: var(--tss-body-font) !important;
  font-size: clamp(13px, 0.7vw, 15px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
}

section.tour-showcase-slider
  .tour-showcase-slider__copy
  > .tour-showcase-slider__eyebrow,
.tour-showcase-slider.tour-showcase-slider
  .tour-showcase-slider__copy
  > .tour-showcase-slider__eyebrow {
  margin: 0 0 9px !important;
  width: 100% !important;
  color: var(--tss-teal) !important;
  font-family: var(--tss-condensed-font) !important;
  font-size: 10px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.18em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

section.tour-showcase-slider
  .tour-showcase-slider__booking
  a.tour-showcase-slider__button,
.tour-showcase-slider.tour-showcase-slider
  .tour-showcase-slider__booking
  a.tour-showcase-slider__button {
  color: #fff !important;
  font-family: var(--tss-condensed-font) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

@media (min-width: 768px) and (max-width: 1180px) {
  section.tour-showcase-slider
    .tour-showcase-slider__copy
    > h2.tour-showcase-slider__title,
  .tour-showcase-slider.tour-showcase-slider
    .tour-showcase-slider__copy
    > h2.tour-showcase-slider__title {
    font-size: 3.42vw !important;
  }
}

@media (max-width: 767px) {
  section.tour-showcase-slider
    .tour-showcase-slider__copy
    > .tour-showcase-slider__eyebrow,
  .tour-showcase-slider.tour-showcase-slider
    .tour-showcase-slider__copy
    > .tour-showcase-slider__eyebrow {
    margin-bottom: 6px !important;
    font-size: clamp(9px, 2.3vw, 11px) !important;
    letter-spacing: 0.13em !important;
  }

  section.tour-showcase-slider
    .tour-showcase-slider__copy
    > h2.tour-showcase-slider__title,
  .tour-showcase-slider.tour-showcase-slider
    .tour-showcase-slider__copy
    > h2.tour-showcase-slider__title {
    font-size: 6.12vw !important;
    line-height: 1.1em !important;
  }

  section.tour-showcase-slider
    .tour-showcase-slider__copy
    > p.tour-showcase-slider__description,
  .tour-showcase-slider.tour-showcase-slider
    .tour-showcase-slider__copy
    > p.tour-showcase-slider__description {
    margin-top: 9px !important;
    font-size: clamp(13px, 3.8vw, 16px) !important;
    line-height: 1.38 !important;
  }
}
