@charset "utf-8";
/* GFX Challenge Grant Program 2024 SEOUL — 전시 페이지
   wrapper class = CSS 파일명 = S3 자산 폴더명 = exhibition-gfx2024
   playwith 와이드 페이지 규약 준수 (docs/content-maintenance/playwith-wide-page.md) */

/* post-body 는 <head> 접근 불가 → 폰트는 CSS @import 로 */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* ---------- wrapper (base + 와이드 breakout) ---------- */
.exhibition-gfx2024{
  --bg: #ffffff;
  --bg-2: #f3f3f3;
  --beige: #f3f3f3;
  --ink: #171717;
  --ink-2: #4a4a4a;
  --muted: #909090;
  --line: #d8d8d8;
  --line-soft: #ececec;
  --rust: #9a9a9a;
  --paper: #f7f7f7;
  --max: 1130px;

  position: relative !important;
  width: 100% !important;
  margin: 0 !important;

  background: var(--bg);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (min-width: 60em){
  .exhibition-gfx2024{
    width: 100vw !important;
    max-width: 1360px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

.exhibition-gfx2024 *{ box-sizing: border-box; }
.exhibition-gfx2024 img{ display: block; max-width: 100%; }
.exhibition-gfx2024 a{ color: inherit; }
.exhibition-gfx2024 em{ color: inherit; font-style: italic; } /* site em{color:#029570} 방어 */

/* ---------- hero ---------- */
.exhibition-gfx2024 .hero{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
}
.exhibition-gfx2024 .hero-img{
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- section frame ---------- */
.exhibition-gfx2024 .wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.exhibition-gfx2024 .eyebrow{
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.exhibition-gfx2024 .eyebrow::before{
  content: ""; width: 28px; height: 1px; background: var(--rust);
  display: inline-block;
}

.exhibition-gfx2024 .section-head{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.exhibition-gfx2024 .section-head h2{
  margin: 14px 0 0;
  font-family: inherit;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.exhibition-gfx2024 .section-head .en-h{
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- intro ---------- */
.exhibition-gfx2024 .intro{ padding: 96px 0 72px; }
.exhibition-gfx2024 .intro-grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.exhibition-gfx2024 .intro h1{
  margin: 18px 0 0;
  font-family: inherit;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
  word-break: keep-all;
}
.exhibition-gfx2024 .intro h1 .en{
  display: block;
  margin-top: 14px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink-2);
}
.exhibition-gfx2024 .intro .lead{
  margin: 0 0 28px;
  font-family: inherit;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.exhibition-gfx2024 .intro p{
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.85;
  text-wrap: pretty;
}
.exhibition-gfx2024 .intro p:last-child{ margin-bottom: 0; }

/* ---------- works row ---------- */
.exhibition-gfx2024 .works{ padding: 0 0 96px; background: var(--bg); }
.exhibition-gfx2024 .works-row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.exhibition-gfx2024 .works-row figure{
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.25);
}
.exhibition-gfx2024 .works-row figure img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* ---------- at a glance ---------- */
.exhibition-gfx2024 .at-glance{ padding: 88px 0; background: var(--beige); }
.exhibition-gfx2024 .info-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exhibition-gfx2024 .info-cell{
  background: var(--beige);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 132px;
}
.exhibition-gfx2024 .info-cell .label{
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--rust);
}
.exhibition-gfx2024 .info-cell .value{
  font-family: inherit;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.exhibition-gfx2024 .info-cell .sub{
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.exhibition-gfx2024 .info-cell.span-3{ grid-column: span 3; }
.exhibition-gfx2024 .info-cell.span-4{ grid-column: span 4; }
.exhibition-gfx2024 .info-cell.span-6{ grid-column: span 6; }
.exhibition-gfx2024 .info-cell.span-12{ grid-column: span 12; }
.exhibition-gfx2024 .info-cell.feature{ background: #e6e6e6; }
.exhibition-gfx2024 .info-cell.feature .value{ font-size: 24px; }

/* ---------- artists section ---------- */
.exhibition-gfx2024 .artists{ padding: 96px 0; background: var(--bg); }
.exhibition-gfx2024 .artists .head-guide{
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

/* select fallback (mobile) */
.exhibition-gfx2024 .artist-select{
  position: relative;
  display: none;
  margin-bottom: 24px;
}
.exhibition-gfx2024 .artist-select::after{
  content: "▾";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  font-size: 12px;
}
.exhibition-gfx2024 .artist-select select{
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 44px 14px 16px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  border-radius: 0;
}

/* shell — desktop 2-col (nav 260 + stage) */
.exhibition-gfx2024 .artist-shell{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

/* left nav — sticky */
.exhibition-gfx2024 .artist-nav{
  position: sticky;
  top: 24px;
  align-self: start;
  max-height: calc(60vh - 29px); /* 이전 (100vh - 48px) 대비 40% 축소 */
  overflow-y: auto;
  padding-right: 4px;
}
.exhibition-gfx2024 .nav-group + .nav-group{ margin-top: 24px; }
.exhibition-gfx2024 .nav-group-title{
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 0 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}
.exhibition-gfx2024 .ng-num{
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--rust);
}
.exhibition-gfx2024 .ng-label{
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.exhibition-gfx2024 .ng-count{
  margin-left: auto;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.exhibition-gfx2024 .artist-list{
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.exhibition-gfx2024 .nav-btn{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
  padding: 12px 12px;
  text-align: left;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: baseline;
  font-family: inherit;
  border-bottom: 1px solid var(--line-soft);
  transition: background .18s ease, color .18s ease;
}
.exhibition-gfx2024 .nav-btn:hover{ background: var(--paper); }
.exhibition-gfx2024 .nav-btn.is-active{ background: var(--ink); }
.exhibition-gfx2024 .nav-num{
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--rust);
}
.exhibition-gfx2024 .nav-btn.is-active .nav-num{ color: rgba(255,255,255,0.7); }
.exhibition-gfx2024 .nav-text{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.exhibition-gfx2024 .nav-name{
  font-family: inherit;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
  word-break: keep-all;
}
.exhibition-gfx2024 .nav-btn.is-active .nav-name{ color: #fff; }
.exhibition-gfx2024 .nav-country{
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.exhibition-gfx2024 .nav-btn.is-active .nav-country{ color: rgba(255,255,255,0.55); }

/* right stage — vertical stack (no inner grid) */
.exhibition-gfx2024 .artist-stage{ min-width: 0; }
.exhibition-gfx2024 .artist-panel{ display: none; }
.exhibition-gfx2024 .artist-panel.is-active{ display: block; }

.exhibition-gfx2024 .artist-header{
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.exhibition-gfx2024 .artist-header-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.exhibition-gfx2024 .artist-header .artist-num{
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--rust);
}
.exhibition-gfx2024 .artist-header .grant-tag{
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--line);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper);
}
.exhibition-gfx2024 .artist-header h4{
  margin: 0 0 8px;
  font-family: inherit;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  word-break: keep-all;
}
.exhibition-gfx2024 .artist-header .country{
  margin: 0;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.exhibition-gfx2024 .artist-header .project-title{
  margin: 20px 0 0;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}

.exhibition-gfx2024 .artist-body p{
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.9;
  text-wrap: pretty;
}
.exhibition-gfx2024 .artist-body p:last-child{ margin-bottom: 0; }
.exhibition-gfx2024 .artist-body .note{
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--paper);
  border-left: 2px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---------- visit / notice ---------- */
.exhibition-gfx2024 .visit-sec{ padding: 88px 0 96px; background: var(--beige); }
.exhibition-gfx2024 .visit-body{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.exhibition-gfx2024 .visit-sec ul{
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exhibition-gfx2024 .visit-sec li{
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  text-wrap: pretty;
}
.exhibition-gfx2024 .visit-sec li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rust);
}
.exhibition-gfx2024 .visit-sec strong{
  color: var(--ink);
  font-weight: 600;
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .exhibition-gfx2024 .artist-shell{ grid-template-columns: 220px 1fr; gap: 40px; }
  .exhibition-gfx2024 .info-cell.span-3,
  .exhibition-gfx2024 .info-cell.span-4,
  .exhibition-gfx2024 .info-cell.span-6{ grid-column: span 6; }
}

@media (max-width: 880px){
  .exhibition-gfx2024 .intro-grid,
  .exhibition-gfx2024 .visit-body{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .exhibition-gfx2024 .section-head{ flex-direction: column; align-items: flex-start; gap: 8px; }

  /* switch nav → select */
  .exhibition-gfx2024 .artist-nav{ display: none; }
  .exhibition-gfx2024 .artist-select{ display: block; }
  .exhibition-gfx2024 .artist-shell{ grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px){
  .exhibition-gfx2024 .works-row{ grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px){
  .exhibition-gfx2024{ font-size: 15px; }
  .exhibition-gfx2024 .wrap{ padding: 0 18px; }

  .exhibition-gfx2024 .intro{ padding: 56px 0 40px; }
  .exhibition-gfx2024 .intro h1{ font-size: 26px; }
  .exhibition-gfx2024 .intro h1 .en{ font-size: 12px; }
  .exhibition-gfx2024 .intro .lead{ font-size: 18px; }
  .exhibition-gfx2024 .intro p{ font-size: 14.5px; }

  .exhibition-gfx2024 .works{ padding: 0 0 56px; }

  .exhibition-gfx2024 .at-glance,
  .exhibition-gfx2024 .artists{ padding: 56px 0; }
  .exhibition-gfx2024 .visit-sec{ padding: 56px 0 72px; }
  .exhibition-gfx2024 .section-head h2{ font-size: 24px; }

  .exhibition-gfx2024 .info-grid{ grid-template-columns: 1fr; }
  .exhibition-gfx2024 .info-cell.span-3,
  .exhibition-gfx2024 .info-cell.span-4,
  .exhibition-gfx2024 .info-cell.span-6,
  .exhibition-gfx2024 .info-cell.span-12{ grid-column: span 1; }
  .exhibition-gfx2024 .info-cell{ padding: 22px 20px 24px; min-height: 0; }
  .exhibition-gfx2024 .info-cell .value{ font-size: 17px; }
  .exhibition-gfx2024 .info-cell.feature .value{ font-size: 20px; }

  .exhibition-gfx2024 .artist-header h4{ font-size: 22px; }
  .exhibition-gfx2024 .artist-header .project-title{ font-size: 16px; }
}
