/* ===== Exhibition Train Widget ===== 
   DOM:
     .w64-et
       .w64-et__left
         .w64-et__slides
           .w64-et__slide[.is-active]
             .w64-et__slide-title
             .w64-et__slide-desc
         .w64-et__nav
           .w64-et__btn--prev
           .w64-et__pagination
             .w64-et__current  /  .w64-et__sep  /  .w64-et__total
           .w64-et__btn--next
       .w64-et__right
         .w64-et__strip
           img (horizontal strip)
===== */
.w64-et {
  --padding-bottom: 60px;
  max-width: 100svw;
  overflow-x: clip;
  position: relative;
  padding-bottom: var(--padding-bottom);
}
.w64-et__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  height: calc(100% - var(--padding-bottom));
  gap: 22%;
  visibility: hidden;
}
.w64-et__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  width: 340px;
  aspect-ratio: 320/500;
  height: auto;
  padding: 60px 40px;
  flex-shrink: 0;
}
.w64-et__slides {
  position: relative;
}
.w64-et__slide {
  display: none;
}
.w64-et__slide.is-active {
  display: block;
}
.w64-et__slide-title {
  margin: 0;
  padding: 0;
  color: var(--Text-Primary, #3A2C26);
  font-size: var(--Text-Size-5XL, 32px);
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 800);
  line-height: 94%;
  letter-spacing: -0.64px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .w64-et__slide-title {
    font-size: 28px !important;
    letter-spacing: -0.56px !important;
    margin-bottom: 20px;
  }
}
.w64-et__slide-desc {
  margin: 0;
  padding: 0;
  color: var(--Text-Primary, #3A2C26);
  font-size: var(--Text-Size-Base, 16px);
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 800);
  line-height: 125%;
  letter-spacing: -0.32px;
}
@media (max-width: 768px) {
  .w64-et__slide-desc {
    font-size: var(--Text-Size-Base, 16px);
    font-weight: 400;
    letter-spacing: 0;
  }
}
.w64-et__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.w64-et__btn {
  display: flex;
  width: var(--Spacing-9, 36px);
  height: 36px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: var(--Form-Radius, 4px);
  background: var(--Button-Primary-Fill, #3A2C26);
  cursor: pointer;
}
.w64-et__btn:hover {
  background: var(--Button-Primary-Hover-Fill, #2C221E);
}
.w64-et__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.w64-et__pagination {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--Text-Primary, #3A2C26);
  text-align: center;
  font-size: var(--Text-Size-SM, 14px);
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 800);
  line-height: 120%;
  letter-spacing: -0.28px;
}
@media (max-width: 768px) {
  .w64-et__pagination {
    font-size: var(--Text-Size-SM, 14px);
    letter-spacing: -0.28px;
  }
}
.w64-et__right {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  background-color: #1f1f1f;
}
.w64-et__strip {
  position: absolute;
  top: 17.6470588235%;
  left: 0;
  width: auto;
  display: flex;
  align-items: stretch;
  height: 38.6764705882%;
}
.w64-et__strip img {
  display: block;
  flex-shrink: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
}
.w64-et__image-train {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - var(--padding-bottom));
  z-index: 4;
  pointer-events: none;
}
.w64-et__image-train-inner {
  width: auto;
  height: 100%;
  aspect-ratio: 7087/680 !important;
  position: relative;
  visibility: hidden;
  /* transform is handled by JS for alignment + animation */
}
.w64-et__image-train-inner-door {
  position: absolute;
  top: 50%;
  left: 18.0047975166%;
  overflow: hidden;
  aspect-ratio: 381/585;
  height: 91.1764705882%;
  width: auto;
  transform: translateY(-50%);
  z-index: 2;
}
.w64-et__image-train-inner-door .door-left {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.w64-et__image-train-inner-door .door-right {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.w64-et__image-train-inner img.train-image {
  height: 100%;
  width: auto !important;
  z-index: 3;
}
.w64-et__image-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: var(--padding-bottom);
  background-image: url("/wp-content/themes/astra-child/assets/images/train-bottom.webp");
  background-size: auto 100%;
  background-position: center;
  background-repeat: repeat-x;
  z-index: 5;
}
@media (max-width: 768px) {
  .w64-et__image-bottom {
    height: 16px;
  }
}

/*# sourceMappingURL=exhibition-train.css.map */
