/* ============================================
   SHIKÚ — About / Tethered / Collection Section
   ============================================ */

.about-section {
  padding: 64px var(--px-desktop);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 120px;
  position: relative;
  width: 100%;
}

/* ============================================
   SUB-SECTION 1: INTRODUCTION ROW
============================================ */
.tethered-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  width: 100%;
  flex-shrink: 0;
}
.tethered-intro__title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  width: 864px;
}
.tethered-intro__heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 86px;
  letter-spacing: -6px;
  color: #323232;
  width: 864px;
  word-break: break-word;
  margin: 0;
}
.tethered-intro__sub {
  font-family: 'Public Sans', sans-serif;
  font-weight: 200;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #323232;
  width: 100%;
  margin: 0;
}
.tethered-intro__desc-block {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  min-width: 1px;
}
.tethered-intro__desc {
  font-family: 'Public Sans', sans-serif;
  font-weight: 200;
  font-size: 12px;
  line-height: 18px;
  color: #323232;
  width: 100%;
  word-break: break-word;
  margin: 0;
}

/* ============================================
   SUB-SECTION 2: DUAL-IMAGE PANEL
============================================ */
.tethered-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  flex-shrink: 0;
  width: 100%;
}
.tethered-panel__stage {
  position: relative;
  height: 820px;
  width: 100%;
  flex-shrink: 0;
}
.tethered-panel__left {
  position: absolute;
  left: 0;
  top: 0.26px;
  width: 656px;
  height: 819px;
  overflow: hidden;
}
.tethered-panel__left-inner {
  position: absolute;
  left: 0;
  top: -50px;
  width: 656px;
  height: 896.68px;
}
.tethered-panel__left-inner img,
.tethered-panel__right-inner img,
.tethered-grid__left-img-wrap img,
.tethered-grid__right-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  max-width: none;
  transition: transform .5s;
}
.tethered-panel__left-inner:hover img,
.tethered-panel__right-inner:hover img,
.tethered-grid__left-img-wrap:hover img,
.tethered-grid__right-img-wrap:hover img {
  transform: scale(1.03);
  pointer-events: auto;
}

.tethered-panel__right {
  position: absolute;
  left: 779px;
  top: 137.26px;
  width: 410px;
  height: 544px;
  overflow: hidden;
}
.tethered-panel__right-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   SUB-SECTION 3: BOTTOM TWO-COLUMN IMAGES
============================================ */
.tethered-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 123px;
  width: 100%;
  flex-shrink: 0;
}
.tethered-grid__col-left,
.tethered-grid__col-right {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 1px;
  position: relative;
}
.tethered-grid__left-img-wrap {
  position: relative;
  height: 540px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.tethered-grid__right-img-wrap {
  position: relative;
  height: 720px;
  width: 594.67px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ============================================
   LABEL BAR
============================================ */
.tethered-label-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s;
}
.tethered-label-bar:hover {
  opacity: .7;
}
.tethered-label-bar__category {
  font-family: 'Public Sans', sans-serif;
  font-weight: 200;
  font-size: 12px;
  line-height: 18px;
  color: #323232;
  flex-shrink: 0;
  white-space: nowrap;
}
.tethered-label-bar__browse {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 1px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 1px;
  color: #323232;
  white-space: nowrap;
}
.tethered-label-bar__icon {
  display: flex;
  align-items: flex-start;
  padding: 3.57px 0 3.77px 15px;
  flex-shrink: 0;
}

/* ── Mobile Overrides ── */
@media (max-width: 1023px) {
  .about-section {
    padding: 32px var(--px-mobile);
    gap: 16px;
  }
  .tethered-intro,
  .tethered-panel,
  .tethered-panel__stage {
    display: contents;
  }
  .tethered-intro__title-block {
    width: 100%;
    gap: 4px;
    order: 1;
  }
  .tethered-intro__heading {
    width: 100%;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -2px;
  }
  .tethered-intro__sub {
    font-size: 10px;
    line-height: 1.4;
  }
  .tethered-intro__desc-block {
    order: 3;
    padding-bottom: 16px;
  }
  .tethered-intro__desc {
    font-size: 10px;
    line-height: 1.4;
  }
  .tethered-panel__left {
    order: 2;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  .tethered-panel__right {
    order: 4;
    position: relative;
    left: 0;
    top: 0;
    width: 60%;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  .tethered-label-bar {
    order: 5;
  }
  .tethered-grid {
    order: 6;
  }
  .tethered-panel__left-inner,
  .tethered-panel__right-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .tethered-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .tethered-grid__col-left,
  .tethered-grid__col-right {
    gap: 8px;
    width: 100%;
  }
  .tethered-grid__left-img-wrap {
    width: 60%;
    align-self: center;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .tethered-grid__right-img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  
  .tethered-label-bar__category {
    font-size: 8px;
    line-height: 1.4;
  }
  .tethered-label-bar__browse {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .tethered-label-bar__icon svg {
    width: 32px;
    height: 8px;
  }
}

