@charset "UTF-8";
#content .e-con-full, #content .e-con > .e-con-inner {
  padding-top: 0;
  padding-bottom: 0;
}

/* ===== Smart Trip Card Tracker =====
   DOM:
        .w64-tct  (grid, 2 cols)
            .w64-tct__clip        — overflow:hidden (SEPARATE from perspective)
                .w64-tct__stage     — perspective:800px, NO overflow:hidden
                    .w64-tct__card    — translate+scale (RAF), preserve-3d
                        .w64-tct__card-tilt  — rotateZ (RAF), preserve-3d
                            .w64-tct__card-flip — rotateX (RAF), preserve-3d
                                .w64-tct__face--front
                                .w64-tct__face--back
                .w64-tct__counter
            .w64-tct__content
                .w64-tct__content-wrapper
                    .w64-tct__content-remaining
                    .w64-tct__content-about-design
                    .w64-tct__content-stations

   clip ≠ stage: preserve-3d is flattened by overflow:hidden; separating them keeps the 3D chain intact.
===== */
.w64-tct {
  position: relative;
  width: 100%;
  max-width: 1140px;
  user-select: none;
  font-family: "Helvetica Now Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .w64-tct {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 4rem;
  }
}
.w64-tct__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}
@media (max-width: 768px) {
  .w64-tct__content {
    padding: 20px 20px 60px;
  }
}
.w64-tct__content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.w64-tct__content hr {
  background-color: var(--Color-Bronze-600, #715B53) !important;
}
.w64-tct__content-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w64-tct__content-item__remaining {
  color: var(--Gold, #BE9E2D);
  font-family: "Helvetica Now";
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: 80%;
  letter-spacing: -1.6px;
}
.w64-tct__content-item__label {
  color: var(--Text-Inverse, #FFF);
  font-family: var(--Text-Family-Body, "Helvetica Now");
  font-size: var(--Text-Size-XS, 12px);
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 700);
  line-height: 125%;
  letter-spacing: -0.24px;
}
.w64-tct__content-item__label.gold {
  color: var(--Gold, #BE9E2D);
  font-size: 20px;
}
.w64-tct__content-item__label.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.w64-tct__content-item__description {
  color: var(--Text-Inverse, #FFF);
  font-family: "Helvetica Now";
  font-size: var(--Text-Size-Base, 16px);
  font-style: normal;
  font-weight: var(--Text-Weight-Regular, 700);
  line-height: 125%;
}
.w64-tct__content-item__stations {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.w64-tct__content-item .w64-tct__station-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}
.w64-tct__content-item .w64-tct__station-header span:not(:first-child) {
  min-width: 56px;
  text-align: right;
}
.w64-tct__content-item__station {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid #715B53 !important;
}
.w64-tct__content-item__station__starting {
  min-width: 56px;
  text-align: right;
  font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--Text-Size-MD, 16px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  color: var(--Text-Inverse, #FFF);
  display: none !important;
}
.w64-tct__content-item__station__name {
  flex: 1;
  color: #FFF;
  font-family: "Helvetica Now";
  font-size: var(--Text-Size-Base, 16px);
  font-style: normal;
  font-weight: var(--Text-Weight-Regular, 400);
  line-height: 125%;
}
.w64-tct__content-item__station__avail {
  margin-left: auto;
  font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--Text-Size-MD, 16px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  color: var(--Text-Inverse, #FFF);
}
.w64-tct__content-item__station__avail.is-red .w64-tct__few-left {
  display: inline-block;
  font-style: normal;
  font-size: 0.75em;
  margin-right: 4px;
  opacity: 0.85;
}
.w64-tct__content-item__station__avail.is-red svg {
  margin-right: 2px;
  width: 16px;
  height: 16px;
  transform: translateY(2px);
}
.w64-tct__content-item__station .lines {
  display: none;
  align-items: center;
  gap: 4px;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line {
  display: block;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 40px;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.green {
  background-color: #BAD505;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.red {
  background-color: #F22245;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.yellow {
  background-color: #F9D01E;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.blue {
  background-color: #003DA5;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.silver {
  background-color: #808080;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.orange {
  background-color: #E65B01;
}
.w64-tct__content-item__station .lines .w64-tct__content-item__station__line.purple {
  background-color: #800080;
}
.w64-tct {
  /* ===== Clip ===== */
}
.w64-tct__clip {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .w64-tct__clip {
    height: auto !important;
    aspect-ratio: 300/240;
  }
}
.w64-tct {
  /* ===== Stage ===== */
}
.w64-tct__stage {
  position: absolute;
  inset: 0;
  perspective: 800px;
  perspective-origin: 50% 50%;
  --card-w: clamp(280px, 52vw, 580px);
  --card-h: calc(var(--card-w) * 432 / 686);
}
.w64-tct {
  /* ===== Cards ===== */
}
.w64-tct__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--card-w);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform;
}
.w64-tct__card.is-active {
  pointer-events: auto;
}
.w64-tct {
  /* ===== Tilt ===== */
}
.w64-tct__card-tilt {
  width: 100%;
  height: var(--card-h);
  transform-style: preserve-3d;
  will-change: transform;
}
@media (max-width: 768px) {
  .w64-tct__card-tilt {
    width: calc(90vw - 40px);
    height: auto !important;
    aspect-ratio: 300/178;
  }
}
.w64-tct {
  /* ===== Flip ===== */
}
.w64-tct__card-flip {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.w64-tct {
  /* ===== Faces ===== */
}
.w64-tct__face {
  position: absolute;
  inset: 0;
  border-radius: 2.1vh;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #f9f1ea;
  box-shadow: 0 2px 6px rgba(58, 44, 38, 0.1), 0 14px 40px rgba(58, 44, 38, 0.22);
}
.w64-tct__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.w64-tct__face--back {
  transform: rotateX(180deg);
}
.w64-tct {
  /* ===== Card name ===== */
}
.w64-tct__card-name {
  font-family: "Helvetica Now Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: #3a2c26;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.w64-tct {
  /* ===== Counter ===== */
}
.w64-tct__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: "Helvetica Now Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: #3a2c26;
  display: flex;
  align-items: center;
  gap: 4px;
  display: none;
}
.w64-tct__counter-sep {
  opacity: 0.4;
}
.w64-tct {
  /* ===== Mobile ===== */
}
@media (max-width: 640px) {
  .w64-tct__stage {
    --card-w: min(86vw, 340px);
    perspective: 500px;
  }
  .w64-tct__counter {
    bottom: 20px;
  }
}
.w64-tct {
  /* ===== Reduced motion ===== */
}
@media (prefers-reduced-motion: reduce) {
  .w64-tct__card, .w64-tct__card-tilt, .w64-tct__card-flip {
    transition: none !important;
  }
}

/*# sourceMappingURL=smart-trip-card-tracker.css.map */
