body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #EDEDED;
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Animated inline words: SCROLL ZOOM PLAY, one by one, fade in, hold 3s, fade out, loop 3 times */
.fade-words-inline-once {
  position: inherit;
  padding-top: 20px;
  padding-left: 3vw;
  z-index: 2000;
  display: flex;
  gap: 3px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #222;
  pointer-events: none;
  user-select: none;
}
.fade-inline-word-once {
  opacity: 0;
  animation: fadeInlineOnce 6s forwards 3;
}
.fade-inline-word-once:nth-child(1) { animation-delay: 0s; }
.fade-inline-word-once:nth-child(2) { animation-delay: 0.4s; }
.fade-inline-word-once:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeInlineOnce {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Navigation */
.page-navigation {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
  padding: 10px;
}
.page-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 10px;
}
.circle-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px #0002;
  transition: background 0.18s;
  text-decoration: none;
  overflow: hidden;
}
.circle-icon svg,
.circle-icon img {
  display: block;
  width: 20px;
  height: 20px;
}
.circle-icon:active {
  background: #222;
}
.nav-icon {
  width: 25px;
  height: 25px;
}

/* Typography */
.info-title {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  padding-bottom: 10px;
  padding-right: 20%;
}
.info-section p,
.info-section .info-left-1,
.info-section .info-right-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: #606060;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 12px;
	
	
}

/* Info Panel Layout */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
  box-sizing: border-box;
  padding: 5vw 3vw 3vw 3vw;
  width: 100%;
  font-size: 14px;
  align-items: flex-start;
  background: none;
  position: relative;
}
.info-left {
  grid-column: 1 / -1;
  min-width: 0;
  width: 70vw;
  max-width: 70vw;
	max-height: 155px;
	overflow-y: scroll;
	padding-right: 30px;
	scroll-behavior: smooth;
	gradient
	
}
.info-right.info-right-1c {
  display: contents;
}
.info-right.info-right-1c > .column,
.info-right.info-right-1c > .column-3 {
  min-width: 0;
}

/* At ≥1200px: .info-left fills 80% of screen, .info-right hidden */
@media (min-width: 1200px) {
  .info-section {
    grid-template-columns: 65vw 1fr 1fr;
  }
  .info-left {
    grid-column: 1 / 2;
    width: 60vw;
    max-width: 60vw;
  }
  .info-right.info-right-1c {
    display: contents;
  }
}
/* Stack and show 3c right grid at <1200px ≥500px */
@media (max-width: 1199px) and (min-width: 500px) {
  .info-section {
    grid-template-columns: 1fr;
    font-size: 14px;
    gap: 2vw;
    padding: 5vw 3vw 0 3vw;
  }
  .info-left {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .info-right.info-right-1c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 100%;
  }
}
/* Stack all at <500px */
@media (max-width: 499px) {
  .info-section {
    font-size: 12px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15vw 3vw 3% 3vw;
  }
  .info-left {
    width: 100%;
    max-width: 100%;
  }
  .info-right.info-right-1c {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}

/* Draggable Strip Styles */
.draggable-strip-container {
  width: 100vw;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  box-sizing: border-box;
  padding: 0 3vw;
  scrollbar-width: 1px;
  scrollbar-color: #bbb #eee;
  position: relative;
  height: auto;
  user-select: none;
}
.draggable-strip {
  display: flex;
  align-items: stretch;
  gap: 2vw;
  padding-top: 15px;
  padding-bottom: 15px;
  min-width: 100%;
  cursor: grab;
  transition: background 0.3s;
  /* ---- Allow last item to center in viewport when scrolled ---- */
  padding-right: calc(50vw - 0.5 * ((100vw - 8vw - 6vw) / 4));
}
.strip-item--first { margin-left: 3vw; }
.strip-item--last  { margin-right: 3vw; }

/* Responsive columns for strip: 4c, 3c, 2c, 1c */
.strip-item {
  aspect-ratio: 1/1;
  background: #F3F3F3;
  border-radius: 12px;
  box-shadow: 0 1px 9px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.2s;
  max-width: 600px;
  min-width: 400px;
  overflow: hidden;
}

/* Default: 4 columns */
.draggable-strip .strip-item {
  flex: 0 0 calc((100vw - 8vw - 6vw) / 4);
  width: calc((100vw - 8vw - 6vw) / 4);
}

/* 1200px to 900px: 3 columns */
@media (max-width: 1199px) and (min-width: 901px) {
  .draggable-strip {
    padding-right: calc(50vw - 0.5 * ((100vw - 8vw - 4vw) / 3));
  }
  .draggable-strip .strip-item {
    flex: 0 0 calc((100vw - 8vw - 4vw) / 3);
    width: calc((100vw - 8vw - 4vw) / 3);
  }
}

/* 900px to 500px: 2 columns */
@media (max-width: 900px) and (min-width: 501px) {
  .draggable-strip {
    padding-right: calc(50vw - 0.5 * ((100vw - 8vw - 2vw) / 2));
  }
  .draggable-strip .strip-item {
    flex: 0 0 calc((100vw - 8vw - 2vw) / 2);
    width: calc((100vw - 8vw - 2vw) / 2);
  }
}

/* ≤500px: 1 column - VERTICAL STACK AND VERTICAL SCROLL */
@media (max-width: 500px) {
  .draggable-strip-container {
    width: 100vw;
    max-width: 100vw;
    height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    box-sizing: border-box;
    display: block;
  }
  .draggable-strip {
    flex-direction: column;
    gap: 2vw;
    min-width: 100%;
    min-height: unset;
    width: 100vw;
    height: auto;
    cursor: grab;
    padding: 15px 0 0 0;
    display: flex;
    overflow-x: hidden;
    overflow-y: visible;
    padding-right: 0;
  }
  .draggable-strip .strip-item {
    flex: 0 0 auto;
    width: 94vw;
    min-width: 0;
    max-width: none;
    margin-left: 3vw;
    margin-right: 3vw;
    aspect-ratio: 1/1;
  }
}

.strip-item img,
.strip-item video {
  width: 90%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

/* .img-size utility for images/videos */
.img-size {
  max-height: 90%;
  max-width: 90%;
}

/* --- Scrollable Y support for strip items and expanded content --- */
.strip-item.scroll-y {
  overflow-y: scroll;   /* always show scrollbar */
  overflow-x: hidden;
  align-items: flex-start;
  position: relative;
  scrollbar-width: thin;
}

.strip-item.scroll-y img.tall-content,
.strip-item.scroll-y .tall-content {
  width: 90%;
  margin: 5% 0;
  height: auto;
  max-width: 100%;
  max-height: none;
  display: block;
  object-fit: unset;
}

/* Remove scroll indicator for strip items */
.scroll-indicator,
.strip-expand-content.scroll-y .scroll-indicator {
  display: none !important;
}

/* Expanded overlay: scrollable content */
.strip-expand-content.scroll-y {
  overflow-y: scroll;
  overflow-x: hidden;
  align-items: flex-start;
  position: relative;
  scrollbar-width: thin;
}

/* For tall objects in expanded view */
.strip-expand-content.scroll-y img.tall-content,
.strip-expand-content.scroll-y .tall-content,
.strip-expand-content.scroll-y iframe {
  width: 90%;
  margin: 5% 0;
  height: auto;
  max-width: 90%;
  max-height: none;
  display: block;
  object-fit: unset;
}

/* Overlay for expanded strip item */
.strip-expand-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.2s;
}
.strip-expand-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85vw;
  max-height: 85vh;
  box-shadow: 0 0px 0px rgba(0,0,0,0.4);
  border-radius: 0;
  background: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.strip-expand-overlay img,
.strip-expand-overlay video {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: 0 0px 0px rgba(0,0,0,0.17);
  background: #fff;
  display: block;
}

/* Navigation bar: match .page-navigation in placement and gap */
.strip-expand-navbar {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: none;
  border-radius: 0;
  pointer-events: none;
}
.strip-expand-nav {
  border: none;
  background: #000;
  padding: 0;
  margin: 0 0px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0px 0px #0002;
  transition: background 0.18s;
  pointer-events: all;
}
.strip-expand-nav img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
  pointer-events: none;
  filter: invert(0);
}
.strip-expand-nav:hover {
  background: #222;
}
.strip-expand-close {
  background: #000;
}
.strip-expand-close:hover {
  background: #222;
}

/* Always-on vertical scrollbar for scrollable items */
.strip-item.scroll-y,
.strip-expand-content.scroll-y {
  overflow-y: scroll !important;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #bbb #eee;
}

/* Chrome/Safari/Edge: thin custom scrollbar */
.strip-item.scroll-y:-webkit-scrollbar,
.strip-expand-content.scroll-y:-webkit-scrollbar {
  width: 1px;
  background: #eee;
}
.strip-item.scroll-y:-webkit-scrollbar-thumb,
.strip-expand-content.scroll-y:-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 1px;
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}@media (max-width: 500px) {
  html, body {
    height: 100%;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y; /* enable native vertical drag */
  }
  .draggable-strip-container {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0;
    box-sizing: border-box;
    display: block;
  }
  .draggable-strip {
    flex-direction: column;
    gap: 20vw;
    min-width: 100%;
    min-height: unset;
    width: 100vw;
    height: auto;
    cursor: grab;
    padding: 15px 0 0 0;
    display: flex;
    overflow-x: hidden;
    overflow-y: visible;
    padding-right: 0;
  }
  .draggable-strip .strip-item {
    flex: 0 0 auto;
    width: 94vw;
    min-width: 0;
    max-width: none;
    margin-left: 3vw;
    margin-right: 3vw;
    aspect-ratio: 1/1;
    display: flex;
  }
	
}.empty {
	padding-left: 35%;
	opacity: 0;
	
}
/* height*/
:-webkit-scrollbar {
  height: 1px;
}

/* Track */
:-webkit-scrollbar-track {
  background: #f1f13f1; 
	
}
 
/* Handle */
:-webkit-scrollbar-thumb {
  background: #888;
	;
}

/* Handle on hover */
:-webkit-scrollbar-thumb:hover {
  background: #555; 
}
