/* Travel with Amira – Trip Updates Popup
   Front-end styles. Everything is scoped under .twau-root / .twau-lb / .twau-tab
   so this file can never touch the older Trip Popup (which owns .twa-*). */

.twau-root,
.twau-root *,
.twau-lb,
.twau-lb *,
.twau-tab,
.twau-tab * {
  box-sizing: border-box;
}

.twau-root {
  position: fixed;
  inset: 0;
  z-index: 999992;
  /* one above the Trip Popup, so a queued open is never buried */
  display: none;
  /* zero layout footprint when closed — cannot widen the page */
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* How many trips are on screen at once. The slide width is derived from it,
	   so the strip always fills the card edge to edge. These fallbacks are
	   overridden per-install by the inline style from the Slider settings. */
  --twau-per-view: 3;
  --twau-per-view-mobile: 2;
  --twau-gap: 14px;
  --twau-cap-h: 27px;
  /* caption block under each flyer; centres the arrows */
}

.twau-root[data-open="1"] {
  display: flex;
}

/* ---------- overlay ---------- */
.twau-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 15%, rgba(40, 20, 24, .68), rgba(22, 10, 13, .92));
  cursor: pointer;
}

.twau-root[data-open="1"] .twau-overlay {
  animation: twau-fade .26s ease both;
}

/* ---------- modal ---------- */
.twau-modal {
  position: relative;
  z-index: 2;
  width: min(1020px, 100%);
  /* Bigger flyers make a taller card; give it a little more of the screen
	   before it has to scroll inside itself. */
  max-height: 92vh;
  overflow: hidden auto;
  border-radius: 26px;
  border: 1px solid rgba(184, 146, 74, .34);
  background:
    radial-gradient(115% 90% at 88% 4%, rgba(196, 99, 107, .30), transparent 58%),
    radial-gradient(90% 80% at 2% 100%, rgba(184, 146, 74, .20), transparent 60%),
    linear-gradient(154deg, #2a1418 0%, #1f0f13 46%, #180b0e 100%);
  box-shadow: 0 44px 100px rgba(24, 10, 13, .62);
  outline: none;
  /* the dialog takes focus on open — never show a ring */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 146, 74, .5) transparent;
}

.twau-root[data-open="1"] .twau-modal {
  animation: twau-pop .38s cubic-bezier(.16, .84, .44, 1) both;
}

.twau-modal::-webkit-scrollbar {
  width: 8px;
}

.twau-modal::-webkit-scrollbar-thumb {
  background: rgba(184, 146, 74, .45);
  border-radius: 8px;
}

/* a soft gold sheen across the top edge, echoing the Trip Popup's gilt feel */
.twau-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 220, 180, .75), transparent);
  pointer-events: none;
}

/* ---------- close ---------- */
.twau-close {
  position: absolute;
  z-index: 6;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(28, 15, 18, .55);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}

.twau-close:hover {
  background: var(--twau-rose);
  border-color: var(--twau-rose);
  transform: scale(1.07);
}

.twau-close:focus {
  outline: none;
}

.twau-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 2px;
}

/* ---------- badge ---------- */
.twau-badge {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 72px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 210deg, var(--twau-gold), #f0d9a6 25%, var(--twau-gold) 50%, #e6c988 75%, var(--twau-gold));
  box-shadow: 0 10px 26px rgba(0, 0, 0, .42);
}

.twau-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 50% 12%, #fffdf8, #fbf3e6);
  border: 1px solid rgba(184, 146, 74, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}

.twau-badge-star {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--twau-gold);
}

.twau-badge-rule {
  width: 13px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--twau-gold));
}

.twau-badge-rule--r {
  background: linear-gradient(90deg, var(--twau-gold), transparent);
}

.twau-badge-top {
  font-family: 'Sacramento', cursive;
  font-size: 23px;
  color: var(--twau-rose);
  line-height: .72;
}

.twau-badge-bottom {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 6.5px;
  letter-spacing: 2.2px;
  color: var(--twau-gold);
  margin-top: 3px;
}

/* ---------- body ---------- */
.twau-body {
  position: relative;
  z-index: 4;
  padding: 30px;
  color: #fff;
}

/* ---------- head ---------- */
.twau-head {
  text-align: center;
}

.twau-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--twau-rose);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  padding: 8px 16px 8px 14px;
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(196, 99, 107, .42);
}

.twau-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.twau-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  animation: twau-pulse 1.6s ease-in-out infinite;
}

.twau-dot-core {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #fff;
}

.twau-eyebrow {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 5.5px;
  color: #f4d9b0;
  margin-top: 18px;
}

.twau-title {
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  font-size: 64px;
  line-height: .86;
  margin: 10px 0 0;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}

.twau-desc {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: #efe1d6;
}

/* ---------- notes ---------- */
.twau-notes {
  list-style: none;
  margin: 30px auto 0;
  padding: 15px 20px;
  max-width: 800px;
  text-align: left;
  border: 1px solid rgba(184, 146, 74, .32);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  display: flex;
  gap: 30px;
  justify-content: center;
  width: fit-content;
}

.twau-notes li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #f6ece2;
}

.twau-note-ico {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a1418;
  background: linear-gradient(140deg, #f0d9a6, var(--twau-gold));
  box-shadow: 0 3px 10px rgba(184, 146, 74, .4);
}

.twau-note-text {
  flex: 1 1 auto;
}

/* ---------- slider ---------- *
   The strip fills the card edge to edge and each slide is sized as a fraction
   of it, so exactly --twau-per-view trips are on screen at any width. The
   arrows float on top of the strip rather than sitting beside it — beside it
   they would eat ~96px that the flyers can use instead. */
.twau-slider {
  position: relative;
  margin-top: 22px;
}

.twau-arrow {
  position: absolute;
  z-index: 3;
  /* centred on the flyers, not the whole strip — the caption sits below */
  top: 50%;
  margin-top: calc((var(--twau-cap-h) / 2) - 48px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, .55);
  background: rgba(28, 15, 18, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #f4d9b0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(16, 7, 9, .45);
  transition: background-color .15s ease, color .15s ease, transform .15s ease, opacity .15s ease;
}

.twau-arrow--prev {
  left: -21px;
}

.twau-arrow--next {
  right: -21px;
}

.twau-arrow:hover {
  background: var(--twau-gold);
  color: #23100f;
  transform: scale(1.06);
}

.twau-arrow[hidden] {
  display: none;
}

.twau-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.twau-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.twau-viewport::-webkit-scrollbar {
  display: none;
}

.twau-track {
  list-style: none;
  margin: 0;
  /* vertical breathing room only, so the hover lift is not clipped by the
	   viewport; horizontal padding would break the slide-width maths below */
  padding: 6px 0;
  display: flex;
  gap: var(--twau-gap);
}

.twau-slide {
  /* one slide = one --twau-per-view-th of the strip, gaps taken out first */
  flex: 0 0 calc((100% - (var(--twau-per-view) - 1) * var(--twau-gap)) / var(--twau-per-view));
  margin: 0;
  scroll-snap-align: start;
}

.twau-thumb-wrap {
  /* anchors the "view flyer" pill so it can sit on top of the image itself
     instead of below the caption */
  position: relative;
}

.twau-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font: inherit;
}

.twau-thumb-shot {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 74, .45);
  background: #2a1418;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .4);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* aspect-ratio fallback for older Safari. The padding trick is ratio-based, so
   it stays correct at every width without a single hard-coded height. */
@supports not (aspect-ratio: 2 / 3) {
  .twau-thumb-shot {
    height: 0;
    padding-bottom: 150%;
  }

  .twau-thumb-shot img {
    position: absolute;
    inset: 0;
  }
}

.twau-thumb-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* flyer headlines sit at the top — keep them visible */
}

.twau-thumb:hover .twau-thumb-shot,
.twau-thumb:focus-visible .twau-thumb-shot {
  transform: translateY(-4px);
  border-color: var(--twau-gold);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .5);
}

.twau-thumb:focus {
  outline: none;
}

.twau-thumb:focus-visible .twau-thumb-shot {
  outline: 2px solid rgba(244, 217, 176, .95);
  outline-offset: 3px;
}

.twau-thumb-cap {
  display: block;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #eadbcd;
  transition: color .15s ease;
}

.twau-thumb:hover .twau-thumb-cap {
  color: #f4d9b0;
}

.twau-thumb-cta {
  position: absolute;
  left: 50%;
  bottom: 35px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: auto;
  margin-top: 0;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--twau-gold), var(--twau-rose));
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: #23110f;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .45);
  transition: background-position .3s ease, box-shadow .18s ease, transform .18s ease;
  transform: translate(-50%, 0);
}

.twau-thumb-cta svg {
  flex: 0 0 auto;
}

.twau-thumb-cta:hover,
.twau-thumb-cta:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .5);
  transform: translate(-50%, -2px);
}

.twau-thumb-cta:active {
  transform: translate(-50%, 0);
}

.twau-thumb-cta:focus {
  outline: none;
}

.twau-thumb-cta:focus-visible {
  outline: 2px solid rgba(244, 217, 176, .95);
  outline-offset: 2px;
}

.twau-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .3px;
  color: rgba(238, 222, 208, .62);
}

/* ---------- CTA ---------- */
.twau-bar {
  margin-top: 5px;
  /* Sits lower than the divider by design: the gap above the button now
	   roughly matches the gap below it down to the card's bottom edge. */
  padding-top: 15px;
  border-top: 1px solid rgba(184, 146, 74, .26);
  display: flex;
  justify-content: center;
}

.twau-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--twau-rose), #a8484f);
  color: #fff !important;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  box-shadow: 0 14px 30px rgba(196, 99, 107, .42);
  transition: transform .16s ease, box-shadow .16s ease;
}

.twau-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(196, 99, 107, .55);
}

.twau-cta-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-18deg);
}

.twau-cta:hover .twau-cta-shine {
  animation: twau-shine .75s ease both;
}

/* ---------- lightbox ---------- */
.twau-lb {
  position: fixed;
  inset: 0;
  z-index: 999995;
  /* above the popup it was opened from */
  display: none;
  /* flex-start, not center: a centred item taller than the container can't be
	   scrolled up to reveal its top (scrollTop can't go negative) — it just
	   gets cropped. Starting at the top keeps it fully reachable by scrolling down. */
  align-items: flex-start;
  justify-content: center;
  padding: 15px 74px;
  overflow-y: auto;
  /* only needed in full-size mode, see .is-full below */
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.twau-lb[data-open="1"] {
  display: flex;
}

.twau-lb-back {
  /* fixed, not absolute: in full-size mode the dialog itself scrolls, and an
	   absolute overlay would scroll away with it, uncovering the page below */
  position: fixed;
  inset: 0;
  background: rgba(13, 6, 8, .94);
  cursor: zoom-out;
}

.twau-lb[data-open="1"] .twau-lb-back {
  animation: twau-fade .2s ease both;
}

.twau-lb-fig {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.twau-lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 90px);
  /* fit mode: whole flyer + caption always on screen */
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(184, 146, 74, .4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
  background: #2a1418;
}

.twau-lb[data-open="1"] .twau-lb-img {
  animation: twau-pop .3s cubic-bezier(.16, .84, .44, 1) both;
}

/* full-size mode, toggled by the zoom button: drop the height cap and let the
   dialog itself scroll (width still capped, so it never runs off sideways) */
.twau-lb.is-full .twau-lb-fig {
  max-height: none;
}

.twau-lb.is-full .twau-lb-img {
  max-height: none;
}

.twau-lb-cap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f0dfd0;
}

.twau-lb-title {
  font-weight: 600;
}

.twau-lb-count {
  color: rgba(240, 223, 208, .55);
  letter-spacing: 1px;
}

.twau-lb-close {
  /* fixed so it stays reachable even when full-size mode is scrolled */
  position: fixed;
  z-index: 4;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, transform .15s ease;
}

.twau-lb-close:hover {
  background: var(--twau-rose, #c4636b);
  transform: scale(1.07);
}

.twau-lb-zoom {
  position: fixed;
  z-index: 4;
  top: 20px;
  right: 74px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, transform .15s ease;
}

.twau-lb-zoom:hover {
  background: var(--twau-gold, #b8924a);
  color: #23100f;
  transform: scale(1.07);
}

.twau-lb-zoom-out {
  display: none;
}

.twau-lb.is-full .twau-lb-zoom-in {
  display: none;
}

.twau-lb.is-full .twau-lb-zoom-out {
  display: block;
}

.twau-lb-nav {
  position: fixed;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, transform .15s ease, opacity .15s ease;
}

.twau-lb-nav:hover {
  background: var(--twau-gold, #b8924a);
  color: #23100f;
}

.twau-lb-nav--prev {
  left: 16px;
}

.twau-lb-nav--next {
  right: 16px;
}

.twau-lb-nav[hidden] {
  display: none;
}

/* ---------- floating reopen tab ---------- */
.twau-tab {
  position: fixed;
  z-index: 999991;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(184, 146, 74, .5);
  border-radius: 40px;
  background: linear-gradient(135deg, #2a1418, #1c0d10);
  color: #f4d9b0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .6px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(20, 9, 11, .5);
  animation: twau-rise .35s ease both;
}

.twau-tab[hidden] {
  display: none;
}

.twau-tab:hover {
  border-color: var(--twau-gold);
}

.twau-tab-star {
  color: var(--twau-gold);
  font-size: 13px;
  line-height: 1;
}

.twau-tab-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  line-height: 1;
}

.twau-tab-x:hover {
  background: var(--twau-rose);
  color: #fff;
}

/* ---------- animations ---------- */
@keyframes twau-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes twau-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.965);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes twau-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes twau-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .85;
  }

  50% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes twau-shine {
  from {
    left: -60%;
  }

  to {
    left: 115%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .twau-root[data-open="1"] .twau-modal,
  .twau-root[data-open="1"] .twau-overlay,
  .twau-lb[data-open="1"] .twau-lb-img,
  .twau-lb[data-open="1"] .twau-lb-back,
  .twau-tab {
    animation: none !important;
  }

  .twau-dot-ping {
    animation: none;
    opacity: .8;
  }

  .twau-viewport {
    scroll-behavior: auto;
  }
}

/* ---------- tablet ---------- */
@media (max-width: 1024px) {
  .twau-root {
    padding: 18px;
  }

  .twau-body {
    padding: 34px 30px 30px;
  }

  .twau-title {
    font-size: 56px;
  }

  .twau-badge {
    width: 76px;
    height: 76px;
    right: 68px;
  }

  .twau-badge-top {
    font-size: 20px;
  }

  /* no --twau-per-view override needed: three is the desktop count too */

  /* Javed's flex edit lets a long note wrap to 2 lines and lose the stacked
	   look — go back to one bullet per row, which always fits. */
  .twau-notes {
    flex-direction: column;
    align-items: stretch;
    width: auto;
  }

  .twau-lb {
    padding: 20px 20px 24px;
  }

  .twau-lb-zoom {
    top: 20px;
    right: 68px;
  }

  .twau-lb-nav {
    width: 44px;
    height: 44px;
  }

  .twau-lb-nav--prev {
    left: 8px;
  }

  .twau-lb-nav--next {
    right: 8px;
  }
}

/* ---------- phone ---------- */
@media (max-width: 767px) {
  .twau-root {
    padding: 12px;
  }

  .twau-modal {
    max-height: 92vh;
    border-radius: 20px;
  }

  .twau-body {
    padding: 30px 15px;
  }

  .twau-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .twau-badge {
    display: none;
  }

  /* keeps the small screen calm */

  .twau-eyebrow {
    font-size: 10.5px;
    letter-spacing: 3.6px;
    margin-top: 14px;
  }

  .twau-title {
    font-size: 38px;
  }

  .twau-desc {
    font-size: 12px;
  }

  .twau-notes {
    padding: 10px;
    gap: 10px;
    border-radius: 8px;
    margin-top: 25px;
  }

  .twau-notes li {
    font-size: 11px;
    align-items: center;
  }
.twau-note-ico {
    width: 18px;
    height: 18px;
    margin-top: 0;
}
  .twau-slider {
    margin-top: 22px;
  }

  .twau-arrow {
    display: none !important;
  }

  /* swipe instead */
  /* Full-bleed swipe strip. Slides go back to a fixed width here — a quarter
	   of a 375px screen would be unreadable — and width:auto lets the negative
	   margins widen the box evenly on both sides so it runs off each edge. */
  .twau-viewport {
    width: auto;
    margin: 0;
    padding: 0 15px;
  }

  .twau-track {
    --twau-gap: 12px;
  }

  /* Same one-number sizing as desktop, just its own --twau-per-view-mobile. */
  .twau-slide {
    flex: 0 0 calc((100% - (var(--twau-per-view-mobile) - 1) * var(--twau-gap)) / var(--twau-per-view-mobile));
  }

  /* no hover on touch */
  .twau-thumb-cap {
    font-size: 10px;
    letter-spacing: .8px;
  }

  .twau-thumb-cta {
    bottom: 35px;
    font-size: 8.5px;
    letter-spacing: .5px;
    padding: 5px 10px;
    gap: 3px;
  }

  .twau-thumb-cta svg {
    width: 10px;
    height: 10px;
  }

  .twau-bar {
    margin-top: 22px;
    padding-top: 28px;
  }

  .twau-cta {
    padding: 14px 26px;
    font-size: 11.5px;
    letter-spacing: 1.3px;
  }

  .twau-lb {
    padding: 14px 12px 18px;
  }

  .twau-lb-img {
    max-height: calc(100dvh - 150px);
    border-radius: 10px;
  }

  .twau-lb-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .twau-lb-zoom {
    top: 12px;
    right: 58px;
    width: 38px;
    height: 38px;
  }

  .twau-lb-nav {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .twau-lb-nav--prev {
    left: 14px;
  }

  .twau-lb-nav--next {
    right: 14px;
  }

  .twau-lb-cap {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .twau-tab {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 11px;
  }
}