:root {
  color-scheme: dark;
  --bg: #111111;
  --ink: #f0eee8;
  --muted: #aaa49a;
  --line: #f0eee8;
  --accent: #68c8ff;
  --hover-accent: #111111;
  --panel: #0b0b0b;
  --media-bg: #1c1c1c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Arial,
    "Helvetica Neue",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    sans-serif;
  letter-spacing: 0;
  transition:
    background 180ms ease,
    color 180ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav a,
.language-toggle {
  font-size: 13px;
  line-height: 1;
}

.brand {
  font-weight: 700;
}

.site-header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.language-toggle {
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  opacity: 0.65;
  outline: 0;
}

.instagram-link {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.instagram-link img {
  width: 16px;
  height: 16px;
  display: block;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  opacity: 0.65;
  outline: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 44px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.collective-3d-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.collective-background-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.86)),
    repeating-linear-gradient(
      0deg,
      rgba(240, 238, 232, 0.035) 0,
      rgba(240, 238, 232, 0.035) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(240, 238, 232, 0.03) 0,
      rgba(240, 238, 232, 0.03) 1px,
      transparent 1px,
      transparent 92px
    );
}

.collective-background-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--bg) 72%);
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  font-size: 13px;
  line-height: 1.2;
}

.hero h1 {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 0;
  font-size: clamp(58px, 13.2vw, 190px);
  line-height: 0.78;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 22px rgba(17, 17, 17, 0.86),
    0 0 54px rgba(17, 17, 17, 0.62);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 8px auto;
  font-size: clamp(18px, 2vw, 32px);
  line-height: 1.35;
  word-break: keep-all;
  text-shadow: 0 0 20px rgba(17, 17, 17, 0.94);
}

.index-section,
.works-section,
.about-section,
.members-section {
  display: grid;
  grid-template-columns: minmax(180px, 24vw) 1fr;
  gap: 24px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.index-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.history-constellation-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.index-section .section-label,
.history-grid {
  position: relative;
  z-index: 1;
}

.section-label {
  position: sticky;
  top: 64px;
  align-self: start;
}

.section-label h2 {
  margin: 0 0 8px;
  font-size: 15px;
}

.section-label p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.history-grid {
  display: grid;
  gap: 0;
  border-left: 0;
}

.history-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.history-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.year-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 18%) 1fr;
  gap: clamp(28px, 5vw, 76px);
  min-height: 0;
  padding: 18px 0 20px;
  border-right: 0;
  border-bottom: 0;
}

.year-block:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 780ms ease;
}

.year-block.is-divider-visible:not(:last-child)::after {
  transform: scaleX(1);
}

.year-block:first-child {
  padding-top: 0;
}

.year-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.year-block h3 {
  grid-column: auto;
  margin: 0;
  padding: 10px 0;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 0.95;
  font-weight: 700;
  text-align: right;
  background: transparent;
  border-right: 0;
}

.history-items {
  display: grid;
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding-left: calc(22vw - 276px);
}

.year-block p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.year-block span {
  order: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.year-block strong {
  order: 1;
  font-size: clamp(24px, 2.55vw, 38px);
  line-height: 0.98;
  font-weight: 700;
}

.work-list {
  margin-top: clamp(28px, 3vw, 46px);
  margin-bottom: clamp(28px, 3vw, 46px);
  border-top: 1px solid var(--line);
}

.work-row {
  --work-overlay-0: rgba(0, 0, 0, 0.98);
  --work-overlay-1: rgba(0, 0, 0, 0.94);
  --work-overlay-2: rgba(0, 0, 0, 0.78);
  --work-overlay-3: rgba(0, 0, 0, 0.28);
  --work-overlay-4: rgba(0, 0, 0, 0.04);
  position: relative;
  width: 100%;
  height: auto;
  min-height: 116px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(160px, 22vw);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-content: center;
  align-items: start;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
}

.work-row:hover,
.work-row:focus-visible {
  --work-overlay-0: rgba(0, 0, 0, 0.96);
  --work-overlay-1: rgba(0, 0, 0, 0.88);
  --work-overlay-2: rgba(0, 0, 0, 0.62);
  --work-overlay-3: rgba(0, 0, 0, 0.18);
  --work-overlay-4: rgba(0, 0, 0, 0.02);
}

.work-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--work-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(0.82) brightness(1.16) contrast(1.04);
  opacity: 1;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.work-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--work-overlay-0) 0%,
    var(--work-overlay-1) 22%,
    var(--work-overlay-2) 38%,
    var(--work-overlay-3) 58%,
    var(--work-overlay-4) 100%
  );
}

.work-row:hover::before,
.work-row:focus-visible::before {
  filter: grayscale(0.08) brightness(1.22) contrast(1.08);
  opacity: 1;
}

.work-row span,
.work-row strong,
.work-row em {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.work-row span,
.work-row em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-style: normal;
}

.work-row span {
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 21px;
}

.work-row strong {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-top: 18px;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 0.96;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.work-row em {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  padding-bottom: 16px;
}

.work-thumb {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 100%;
  height: 116px;
  min-height: 0;
  display: none;
  object-fit: cover;
  background: var(--media-bg);
  filter: grayscale(1);
  transition: filter 180ms ease;
}

.work-row:hover .work-thumb,
.work-row:focus-visible .work-thumb {
  filter: grayscale(0);
}

.work-row:hover,
.work-row:focus-visible {
  color: var(--ink);
  outline: 0;
}

.work-row:hover span,
.work-row:hover em,
.work-row:focus-visible span,
.work-row:focus-visible em {
  color: var(--ink);
}

.about-section p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(28px, 5.4vw, 88px);
  line-height: 0.98;
  font-weight: 700;
  word-break: keep-all;
}

.about-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em) rotateX(32deg);
  transform-origin: left bottom;
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.about-word.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.member-grid article {
  min-height: 260px;
  padding: 12px;
  border-right: 1px solid var(--line);
}

.member-grid h3 {
  margin: 0;
  font-size: clamp(30px, 5vw, 82px);
  line-height: 0.92;
}

.member-grid p {
  margin: 18px 0 0 clamp(7px, 0.6vw, 12px);
  color: var(--muted);
  font-size: 15px;
}

.member-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 580ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.member-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-panel {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(280px, 32vw) 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--panel);
  color: var(--ink);
  transform: translateY(105%);
  transition: transform 280ms ease;
}

.project-panel.is-open {
  transform: translateY(0);
}

.panel-close {
  position: absolute;
  z-index: 2;
  top: clamp(24px, 2.6vw, 38px);
  right: clamp(24px, 2.6vw, 40px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  opacity: 0.88;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.panel-close::before,
.panel-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}

.panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.panel-close:hover,
.panel-close:focus-visible {
  opacity: 1;
  transform: scale(1.04);
  outline: 0;
}

.panel-close:focus-visible::before,
.panel-close:focus-visible::after {
  box-shadow: 0 0 0 1px currentColor;
}

.panel-copy {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 18px clamp(36px, 3vw, 58px) 18px 18px;
  border-right: 1px solid var(--line);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.panel-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.panel-copy h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(42px, 6.2vw, 96px);
  line-height: 0.9;
  overflow-wrap: break-word;
}

.panel-copy p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.45;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.panel-thumbs {
  grid-column: 1;
  grid-row: 2;
  width: min(calc(100% - 36px), 320px);
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
  margin: 0 clamp(36px, 3vw, 58px) 18px 18px;
}

.panel-thumbs[hidden] {
  display: none;
}

.panel-thumb {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  border: 0;
  text-align: left;
  cursor: pointer;
}

.panel-thumb img,
.panel-thumb video {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: var(--media-bg);
  filter: grayscale(1) brightness(0.62);
  pointer-events: none;
}

.panel-thumb-text {
  min-height: 56px;
  align-content: end;
  border-top: 1px solid color-mix(in srgb, var(--line) 36%, transparent);
}

.panel-thumb span {
  font-size: 12px;
  line-height: 1;
}

.panel-thumb:hover,
.panel-thumb:focus-visible,
.panel-thumb.is-active {
  color: var(--ink);
  outline: 0;
}

.panel-thumb:hover img,
.panel-thumb:focus-visible img,
.panel-thumb.is-active img,
.panel-thumb:hover video,
.panel-thumb:focus-visible video,
.panel-thumb.is-active video {
  filter: grayscale(0) brightness(1);
}

.panel-media {
  grid-column: 2;
  grid-row: 1 / -1;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  background: var(--media-bg);
  scroll-snap-type: y mandatory;
}

.panel-media img,
.panel-video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  background: var(--media-bg);
  scroll-snap-align: start;
}

.panel-media img {
  object-fit: contain;
}

.panel-video {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 56px);
  box-sizing: border-box;
}

.panel-youtube-link {
  position: relative;
  width: min(100%, calc((100vh - clamp(36px, 6vw, 112px)) * 16 / 9));
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  border: 0;
  background: #000;
  color: var(--ink);
  text-decoration: none;
}

.panel-vimeo-frame {
  width: min(100%, calc((100vh - clamp(36px, 6vw, 112px)) * 16 / 9));
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  border: 0;
}

.panel-local-video {
  width: min(100%, calc((100vh - clamp(36px, 6vw, 112px)) * 16 / 9));
  max-height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  object-fit: contain;
}

.panel-youtube-link img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: brightness(0.86) grayscale(0.08);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.panel-youtube-link:hover img,
.panel-youtube-link:focus-visible img {
  filter: brightness(0.96) grayscale(0);
  transform: scale(1.02);
}

.panel-youtube-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.panel-youtube-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(66px, 7vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
}

.panel-youtube-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8%;
  border-top: clamp(13px, 1.45vw, 22px) solid transparent;
  border-bottom: clamp(13px, 1.45vw, 22px) solid transparent;
  border-left: clamp(20px, 2.15vw, 34px) solid #111;
}

.panel-youtube-label {
  position: absolute;
  right: 10px;
  bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 4px 9px 4px 7px;
  border-radius: 999px;
  background: rgba(72, 86, 91, 0.9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.panel-youtube-label::before {
  content: "\266A";
  font-size: 13px;
  line-height: 1;
}

body.panel-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .history-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .year-block:not(:last-child)::after {
    transform: scaleX(1);
    transition: none;
  }

  .about-word {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .member-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .history-constellation-canvas {
    opacity: 0.42;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero-meta,
  .index-section,
  .works-section,
  .about-section,
  .members-section,
  .history-grid,
  .member-grid,
  .project-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 10px;
  }

  .site-header nav {
    justify-content: space-between;
  }

  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: clamp(42px, 14.5vw, 78px);
  }

  .hero-copy {
    margin-left: 0;
  }

  .section-label {
    position: static;
  }

  .index-section .section-label {
    margin-bottom: 28px;
  }

  .index-section {
    row-gap: 38px;
  }

  .history-grid,
  .member-grid {
    border-left: 0;
  }

  .history-grid {
    margin-top: 10px;
  }

  .history-constellation-canvas {
    opacity: 0.46;
  }

  .year-block {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    border-left: 0;
    padding-left: 0;
  }

  .year-block h3 {
    grid-column: auto;
    position: static;
    text-align: left;
    border-right: 0;
    border-bottom: 0;
  }

  .year-block:first-child {
    padding-top: 18px;
  }

  .history-items {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .work-row {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 24px;
    border-bottom: 0;
  }

  .work-row::before {
    content: none;
  }

  .work-row::after {
    content: "";
    position: absolute;
    inset: auto;
    top: auto;
    left: -18px;
    right: -18px;
    bottom: 0;
    z-index: 0;
    height: 1px;
    pointer-events: none;
    background: var(--line);
  }

  .work-row + .work-row {
    padding-top: 26px;
  }

  .year-block p {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 0;
  }

  .year-block span {
    grid-column: auto;
    flex-basis: auto;
  }

  .year-block strong {
    grid-column: auto;
  }

  .work-row {
    height: auto;
    min-height: 0;
  }

  .work-row span {
    display: none;
  }

  .work-row strong {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(32px, 12vw, 54px);
  }

  .work-row em {
    grid-column: 1;
    grid-row: 3;
    margin-top: 4px;
    padding-top: 0;
  }

  .work-thumb {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    order: -1;
    filter: none;
  }

  .work-row:hover .work-thumb,
  .work-row:focus-visible .work-thumb {
    filter: none;
    transform: none;
  }

  .member-grid {
    display: grid;
    gap: 0;
  }

  .member-grid article {
    min-height: 0;
    padding: 16px 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .member-grid article:last-child {
    border-bottom: 0;
  }

  .member-grid h3 {
    font-size: clamp(34px, 13vw, 60px);
    line-height: 0.92;
  }

  .member-grid p {
    margin: 10px 0 0 7px;
    font-size: 14px;
    line-height: 1.35;
  }

  .project-panel {
    height: 100dvh;
    max-height: 100dvh;
    grid-template-rows: minmax(0, clamp(228px, 34svh, 292px)) minmax(0, 1fr) auto;
  }

  .panel-copy {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    overflow: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .panel-kicker {
    margin-bottom: 8px;
  }

  .panel-copy h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .panel-copy p {
    flex: 1 1 auto;
    min-height: 0;
    max-width: none;
    margin-top: 14px;
    padding-right: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    font-size: 14px;
    line-height: 1.42;
    scrollbar-color: color-mix(in srgb, var(--ink) 42%, transparent) transparent;
    scrollbar-width: thin;
  }

  .panel-copy p::-webkit-scrollbar {
    width: 3px;
  }

  .panel-copy p::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--ink) 42%, transparent);
  }

  .panel-thumbs {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(54px, 18vw, 72px);
    gap: 10px;
    margin: 0;
    padding: 10px 18px 8px;
    background: var(--panel);
    border-top: 1px solid color-mix(in srgb, var(--line) 34%, transparent);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .panel-thumb {
    scroll-snap-align: start;
  }

  .panel-thumb-index {
    display: none;
  }

  .panel-thumb-text {
    min-height: clamp(54px, 18vw, 72px);
  }

  .panel-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
  }
}
