/* ═══════════════════════════════════════════════════════════════
   components.css — nav · footer · 버튼 · 카드 · 섹션 골격
   base.css 다음에 링크할 것. 토큰은 전부 base.css에 있다.

   여기 있는 것은 index 시안에 실제로 등장한 것뿐이다.
   쓰지 않는 컴포넌트를 미리 만들지 않는다.
   ═══════════════════════════════════════════════════════════════ */

/* ═══ 레이아웃 ═══ */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--sp-gutter); }
.sec  { padding-block: var(--sp-section); }
.sec--alt { background: var(--surface-2); border-top: 1px solid var(--line-2); }
.sec--line { border-top: 1px solid var(--line-2); }

/* 전폭 섹션 — wrap 없이 gutter만 */
.bleed { padding-inline: var(--sp-gutter); }

/* ═══ NAV — 상단 헤어라인 ═══ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; border-bottom: 1px solid var(--line-2);
}
.nav__mark { display: flex; align-items: center; gap: 12px; }
.nav__mark svg { width: 26px; height: 26px; }
.nav__name { font-family: var(--font-en-display); font-size: 17px; letter-spacing: .02em; }
.nav__links { display: flex; gap: 34px; font-size: 13.5px; color: var(--mute); }
.nav__links a { transition: color .5s var(--ease); }
.nav__links a:hover { color: var(--ink); }

.nav__toggle { display: none; width: 38px; height: 38px; position: relative; }
.nav__toggle i {
  position: absolute; left: 11px; width: 16px; height: 1.4px;
  background: var(--ink); border-radius: 2px;
  transition: transform .6s var(--ease), opacity .35s var(--ease);
}
.nav__toggle i:nth-child(1) { top: 16px; }
.nav__toggle i:nth-child(2) { top: 21px; }
.nav__toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(2.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] i:nth-child(2) { transform: translateY(-2.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* 모바일 오버레이 */
.sheet {
  position: fixed; inset: 0; z-index: var(--z-sheet);
  background: rgba(6, 7, 10, .94);
  display: flex; flex-direction: column; justify-content: center;
  padding-inline: var(--sp-gutter);
  opacity: 0; visibility: hidden;
  transition: opacity .6s var(--ease), visibility .6s;
}
.sheet[data-open="true"] { opacity: 1; visibility: visible; }
.sheet a {
  font-family: var(--font-kr-display);
  font-size: clamp(28px, 8vw, 40px); line-height: 1.5; padding-block: 10px;
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.sheet[data-open="true"] a { opacity: 1; transform: none; }
.sheet a:nth-child(1) { transition-delay: .10s; }
.sheet a:nth-child(2) { transition-delay: .16s; }
.sheet a:nth-child(3) { transition-delay: .22s; }
.sheet a:nth-child(4) { transition-delay: .28s; }

/* ═══ 버튼 — 버튼-인-버튼 ═══ */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 9px 9px 22px; border-radius: 999px;
  background: var(--ink); color: var(--ground);
  font-size: 14px; font-weight: 500;
  transition: transform .5s var(--ease);
}
.pill__knob {
  width: 30px; height: 30px; border-radius: 999px; flex-shrink: 0;
  background: rgba(6, 7, 10, .08);
  display: flex; align-items: center; justify-content: center;
  transition: transform .55s var(--ease), background .55s var(--ease);
}
.pill__knob svg { width: 12px; height: 12px; }
.pill:hover .pill__knob { transform: translate(3px, -1px) scale(1.06); background: rgba(6, 7, 10, .14); }
.pill:active { transform: scale(.975); }

.pill--ghost { background: none; color: var(--ink); border: 1px solid #232B33; }
.pill--ghost .pill__knob { background: rgba(232, 234, 237, .07); }
.pill--ghost:hover .pill__knob { background: rgba(232, 234, 237, .13); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* 인라인 화살표 링크 */
.arw {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; transition: gap .5s var(--ease);
}
.arw svg { width: 12px; height: 12px; color: var(--accent); }
.arw:hover { gap: 15px; }

/* ═══ 카드 ═══ */
.card {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(26px, 2.4vw, 36px) clamp(22px, 2.2vw, 32px);
}
.card--plain { background: var(--ground); }
.card__foot {
  margin-top: 26px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--mute-2);
}

/* ═══ 3단계 — 계단식 오프셋 ═══ */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.steps > :nth-child(2) { margin-top: 72px; }
.steps > :nth-child(3) { margin-top: 144px; }
.step { display: flex; flex-direction: column; min-height: 400px; }
.step__no { font-size: var(--fs-l1); letter-spacing: .22em; color: var(--accent); }
.step__kr { font-family: var(--font-kr-display); font-size: clamp(24px, 2.4vw, 34px); line-height: 1.35; margin-top: auto; }
.step__en { font-size: 12.5px; letter-spacing: .2em; color: var(--mute-2); margin-top: 10px; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps > * { margin-top: 0 !important; }
  .step { min-height: 0; }
  .step__kr { margin-top: 24px; }
}

/* ═══ 비대칭 그리드 — 후기 · 네 가지 길 ═══ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; align-items: start; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .col-4, .col-5, .col-7, .col-8, .col-12 { grid-column: span 1; }
}

/* ═══ 좌우 분할 — 두 개의 문 ═══ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split > :first-child { border-right: 1px solid var(--line-2); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split > :first-child { border-right: none; border-bottom: 1px solid var(--line-2); }
}

/* ═══ 인용 ═══ */
.quote-band {
  border-block: 1px solid var(--line-2); background: var(--surface-2);
  padding-block: clamp(44px, 4.4vw, 64px);
  display: flex; gap: clamp(28px, 4.8vw, 70px); align-items: center;
}
.quote-band__en { font-family: var(--font-en-display); font-style: italic; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.45; flex-grow: 1; }
.quote-band__rule { width: 1px; align-self: stretch; background: var(--line); flex-shrink: 0; }
.quote-band__kr { width: min(420px, 42%); flex-shrink: 0; }
@media (max-width: 900px) {
  .quote-band { flex-direction: column; align-items: flex-start; gap: 26px; }
  .quote-band__rule { width: 100%; height: 1px; align-self: auto; }
  .quote-band__kr { width: 100%; }
}

.quote-pair { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-2); }
.quote-pair > * { padding-block: 50px; }
.quote-pair > :first-child { padding-right: 60px; border-right: 1px solid var(--line-2); }
.quote-pair > :last-child { padding-left: 60px; }
@media (max-width: 900px) {
  .quote-pair { grid-template-columns: 1fr; }
  .quote-pair > :first-child { padding-right: 0; border-right: none; border-bottom: 1px solid var(--line-2); }
  .quote-pair > :last-child { padding-left: 0; }
}
.quote__cite { font-size: 11.5px; letter-spacing: .16em; color: var(--mute-2); margin-top: 16px; }

/* ═══ 이미지 자리 — 실제 사진 들어오면 이 클래스를 <img>로 교체 ═══ */
.img-slot {
  border: 1px dashed #1E262E;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  font-size: 12px; letter-spacing: .1em; color: var(--faint);
  min-height: 200px;
}

/* ═══ 호흡 원 — AXIS · 명상 ═══ */
.breath-orb {
  width: min(250px, 62vw); aspect-ratio: 1; margin-inline: auto;
  border-radius: 50%; border: 1px solid rgba(143, 179, 170, .24);
  background: radial-gradient(circle at 50% 44%, rgba(143, 179, 170, .16), rgba(143, 179, 170, .01) 70%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-kr-display); font-size: 20px; color: #C9D4DC;
}

/* ═══ 도장 — APERTURE 모드 전용 ═══ */
.seal { width: 52px; height: 52px; flex-shrink: 0; }
.seal--lg { width: 120px; height: 120px; }
:where([data-mode="field"], [data-mode="axis"]) .seal { display: none; }

/* ═══ FOOTER ═══ */
.foot {
  border-top: 1px solid var(--line-2);
  padding-top: 60px; padding-bottom: 46px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.foot__links { display: flex; gap: 34px; font-size: 13.5px; color: var(--mute); flex-wrap: wrap; }
.foot__links a:hover { color: var(--ink); }
.foot__base { font-size: 11px; letter-spacing: .14em; color: var(--faint); padding-bottom: 44px; }

/* ═══ 스크롤 진입 ═══ */
.rv {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s var(--ease-soft), transform 1s var(--ease-soft);
}
.rv[data-in="true"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ═══ NAV 드롭다운 — 기존 라벨 체계 유지 (STEP 1·2 / 준비중 배지) ═══ */
.nav__item { position: relative; }
.nav__top { display: flex; align-items: center; gap: 5px; cursor: default; }
.nav__caret { width: 8px; height: 8px; color: var(--mute-2); transition: transform .4s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px; padding: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 22px 50px -26px rgba(0, 0, 0, .9);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s, transform .3s var(--ease);
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
.dropdown a {
  padding: 10px 14px; border-radius: 8px; font-size: 13.5px;
  color: var(--mute); white-space: nowrap; transition: background .2s, color .2s;
}
.dropdown a:hover { background: rgba(232, 234, 237, .05); color: var(--ink); }
.dropdown__soon {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: 13.5px; color: var(--mute-2);
  cursor: default; white-space: nowrap;
}
.dropdown__soon em {
  font-style: normal; font-size: 10px; letter-spacing: .04em;
  border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px;
}

/* 모바일 시트 — 그룹 */
.sheet__group { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); padding-block: 4px 8px; }
.sheet__label { font-size: 12px; letter-spacing: .08em; color: var(--accent); padding: 14px 4px 4px; }
.sheet__group a, .sheet__group span {
  font-family: var(--font-text); font-size: 16px; line-height: 1.8;
  padding: 9px 4px 9px 16px; opacity: 1; transform: none; transition: none;
}
.sheet__group span { color: var(--mute-2); }
.sheet { overflow-y: auto; padding-block: 90px 40px; justify-content: flex-start; }

/* ═══ 유튜브 카드 — 썸네일은 우리 화면 안의 "인용"이다 ═══ */
.yt { display: block; position: relative; background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.yt__thumb { position: relative; overflow: hidden; }
.yt__thumb img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  filter: brightness(.78) saturate(.85) contrast(1.02);
  transition: filter .7s var(--ease), transform .9s var(--ease);
}
.yt:hover .yt__thumb img { filter: none; transform: scale(1.025); }
.yt__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(6, 7, 10, .62); border: 1px solid rgba(232, 234, 237, .28);
  display: flex; align-items: center; justify-content: center;
  transition: background .6s var(--ease), transform .6s var(--ease);
}
.yt:hover .yt__play { background: rgba(6, 7, 10, .8); transform: translate(-50%, -50%) scale(1.06); }
.yt__play svg { width: 15px; height: 15px; margin-left: 2px; fill: var(--ink); }
.yt__dur {
  position: absolute; right: 10px; bottom: 10px;
  padding: 3px 7px; border-radius: 4px; background: rgba(6, 7, 10, .78);
  font-family: var(--font-en-display); font-size: 12px; letter-spacing: .04em; color: var(--ink-2);
}
.yt__meta { padding: 20px 22px; }
.yt__k { font-size: var(--fs-l1); letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.yt__t { font-size: 14.5px; line-height: 1.75; margin-top: 12px; }
.yt__go { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mute-2); margin-top: 14px; transition: gap .5s var(--ease); }
.yt:hover .yt__go { gap: 13px; color: var(--mute); }
.yt__go svg { width: 11px; height: 11px; }

/* 법칙 옆에 붙는 좁은 형태 */
.yt--slim .yt__meta { padding: 16px 18px; }
.yt--slim .yt__t { font-size: 13.5px; }

/* ═══ 신청 폼 — Web3Forms. 동작 로직은 건드리지 않는다 ═══ */
.form-card { background: var(--surface); border: 1px solid var(--line); padding: clamp(30px, 4vw, 52px); max-width: 640px; }
.form-card h2 { font-family: var(--font-kr-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; line-height: 1.45; }
.form-card .ac-sub { font-size: var(--fs-t2); color: var(--mute); margin-top: 12px; }
.apply-field { margin-top: 24px; }
.apply-field label { display: block; font-size: var(--fs-l1); letter-spacing: .2em; text-transform: uppercase; color: var(--mute-2); margin-bottom: 10px; }
.apply-field input, .apply-field textarea {
  width: 100%; background: var(--ground); border: 1px solid var(--line);
  color: var(--ink); font-family: var(--font-text); font-size: 14.5px; font-weight: 300;
  padding: 14px 16px; line-height: 1.7;
  transition: border-color .5s var(--ease);
}
.apply-field textarea { min-height: 120px; resize: vertical; }
.apply-field input::placeholder, .apply-field textarea::placeholder { color: var(--faint); }
.apply-field input:focus, .apply-field textarea:focus { outline: none; border-color: var(--accent); }
.apply-submit {
  width: 100%; margin-top: 30px; padding: 16px;
  background: var(--ink); color: var(--ground);
  font-size: 14.5px; font-weight: 500;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.apply-submit:hover { opacity: .9; }
.apply-submit:active { transform: scale(.99); }
.apply-submit:disabled { opacity: .5; cursor: default; }
.apply-done { display: none; text-align: center; padding-block: 20px; }
.apply-done .ok { font-family: var(--font-en-display); font-size: 34px; color: var(--accent); }
.apply-done h3 { font-family: var(--font-kr-display); font-size: 22px; font-weight: 400; margin-top: 14px; }
.apply-done p { font-size: var(--fs-t2); color: var(--mute); margin-top: 12px; }

/* 전폭 이미지 히어로 */
.hero-shot { position: relative; min-height: clamp(420px, 56vh, 620px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-shot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.7) contrast(1.05); }
.hero-shot::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,.55) 0%, rgba(6,7,10,.2) 42%, rgba(6,7,10,.95) 100%); }
.hero-shot > .wrap { position: relative; z-index: 1; padding-bottom: clamp(40px, 5vw, 70px); width: 100%; }

/* ═══ AXIS 시그니처 — 7관문 축 ═══ */
.gates { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 26px; }
.gates::before { content: ""; position: absolute; left: 5px; top: 12px; bottom: 12px; width: 1px; background: var(--line); }
.gate { display: flex; align-items: center; gap: 16px; padding-block: 13px; position: relative; }
.gate::before { content: ""; position: absolute; left: -26px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--g, var(--mute-2)); transform: translateX(0); }
.gate--on::before { box-shadow: 0 0 0 5px color-mix(in oklab, var(--g) 18%, transparent); }
.gate__n { font-family: var(--font-en-display); font-size: 13px; color: var(--mute-2); width: 22px; flex-shrink: 0; }
.gate__k { font-family: var(--font-kr-display); font-size: 17px; line-height: 1.4; }
.gate__d { font-size: 12.5px; color: var(--mute); }
.gates--compact .gate { padding-block: 9px; }

/* 호흡 — 실제로 늘고 준다 */
.breathe { display: flex; flex-direction: column; align-items: center; }
.breathe__orb {
  width: min(260px, 62vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(143,179,170,.26);
  background: radial-gradient(circle at 50% 44%, rgba(143,179,170,.18), rgba(143,179,170,.01) 70%);
  display: flex; align-items: center; justify-content: center;
  animation: breathe 16s cubic-bezier(.42,0,.58,1) infinite;
  will-change: transform;
}
@keyframes breathe {
  0%   { transform: scale(.62); }
  25%  { transform: scale(1); }
  50%  { transform: scale(1); }
  75%  { transform: scale(.62); }
  100% { transform: scale(.62); }
}
.breathe__word { position: relative; font-family: var(--font-kr-display); font-size: 19px; color: #C9D4DC; height: 1.6em; width: 100%; }
.breathe__word span { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); white-space: nowrap; }
.breathe__word span:nth-child(1) { animation: bw1 16s steps(1,end) infinite; }
.breathe__word span:nth-child(2) { animation: bw2 16s steps(1,end) infinite; }
.breathe__word span:nth-child(3) { animation: bw3 16s steps(1,end) infinite; }
.breathe__word span:nth-child(4) { animation: bw4 16s steps(1,end) infinite; }
@keyframes bw1 { 0%,24.9%{opacity:1} 25%,100%{opacity:0} }
@keyframes bw2 { 0%,24.9%{opacity:0} 25%,49.9%{opacity:1} 50%,100%{opacity:0} }
@keyframes bw3 { 0%,49.9%{opacity:0} 50%,74.9%{opacity:1} 75%,100%{opacity:0} }
@keyframes bw4 { 0%,74.9%{opacity:0} 75%,100%{opacity:1} }
.breathe__meta { font-family: var(--font-en-display); font-size: 12px; letter-spacing: .24em; color: var(--mute-2); margin-top: 34px; }
@media (prefers-reduced-motion: reduce) { .breathe__orb { animation: none; transform: scale(.85); } }

/* 세도나 3문 — 점점 커진다 */
.sedona > div { border-top: 1px solid var(--line-2); padding-block: clamp(24px, 3vw, 40px); display: flex; gap: clamp(20px, 3vw, 44px); align-items: baseline; flex-wrap: wrap; }
.sedona > div:last-child { border-bottom: 1px solid var(--line-2); }
.sedona__en { font-family: var(--font-en-display); font-style: italic; color: var(--accent); flex-shrink: 0; }
.sedona > div:nth-child(1) .sedona__en { font-size: clamp(20px, 2.2vw, 28px); }
.sedona > div:nth-child(2) .sedona__en { font-size: clamp(24px, 3vw, 38px); }
.sedona > div:nth-child(3) .sedona__en { font-size: clamp(30px, 4.2vw, 54px); }
.sedona__kr { font-family: var(--font-kr-display); font-size: clamp(17px, 1.8vw, 22px); color: var(--ink-2); }

/* 강의 회차 행 */
.series > div { display: grid; grid-template-columns: 92px 1fr 1.15fr; gap: clamp(18px, 3vw, 46px);
  padding-block: clamp(28px, 3.4vw, 46px); border-top: 1px solid var(--line-2); align-items: start; }
.series > div:last-child { border-bottom: 1px solid var(--line-2); }
.series__n { font-family: var(--font-en-display); font-size: clamp(30px, 3vw, 42px); color: var(--accent); line-height: 1; }
.series__kr { font-family: var(--font-kr-display); font-size: clamp(20px, 2.1vw, 26px); line-height: 1.45; }
.series__en { font-family: var(--font-en-display); font-size: 14px; color: var(--mute-2); margin-top: 8px; }
@media (max-width: 900px) { .series > div { grid-template-columns: 1fr; gap: 12px; } }

/* ═══ 배경 미디어 — 영상 배너 ═══ */
.bgmedia { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bgmedia video, .bgmedia img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.34) saturate(.6) contrast(1.06);
}
.bgmedia::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,.62) 0%, rgba(6,7,10,.28) 40%, rgba(6,7,10,.92) 100%);
}
/* 영상이 아직 없을 때의 자리 표시 */
.bgmedia--empty {
  border: 1px dashed #232B33;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 0 var(--sp-gutter) clamp(150px, 17vw, 190px);
}
.bgmedia--empty::after { content: none; }
.bgmedia--empty span {
  font-size: 12px; letter-spacing: .1em; color: var(--faint); text-align: center; line-height: 1.9;
}

/* 이미지 자리 변형 */
.img-slot--wide { aspect-ratio: 21/9; min-height: 0; }
.img-slot--16 { aspect-ratio: 16/9; min-height: 0; }
.img-slot--43 { aspect-ratio: 4/3; min-height: 0; }
.img-slot--1 { aspect-ratio: 1; min-height: 0; }

/* 카드 상단에 붙는 미디어 */
.card__media { margin: calc(-1 * clamp(26px, 2.4vw, 36px)) calc(-1 * clamp(22px, 2.2vw, 32px)) clamp(22px, 2vw, 28px);
  border-bottom: 1px dashed #1E262E; }
.card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(.8) saturate(.85); }

/* ═══ 사진 갤러리 — 커뮤니티 현장 ═══ */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery > * { aspect-ratio: 1; }
.gallery > :nth-child(6n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82) saturate(.85);
  transition: filter .7s var(--ease), transform .9s var(--ease); }
.gallery a:hover img { filter: none; transform: scale(1.03); }
.gallery a { display: block; overflow: hidden; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery > :nth-child(6n+1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; } }

/* 외부 사이트로 나가는 줄 */
.crosslink { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border: 1px solid var(--line); background: var(--surface); padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 40px); }
.crosslink__k { font-size: var(--fs-l1); letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.crosslink__h { font-family: var(--font-kr-display); font-size: clamp(20px, 2.1vw, 26px); line-height: 1.45; margin-top: 12px; }
.crosslink__d { font-size: var(--fs-t2); color: var(--mute); margin-top: 12px; max-width: 520px; }
.crosslink__stat { display: flex; gap: clamp(20px, 3vw, 44px); flex-wrap: wrap; margin-top: 26px; }
.crosslink__stat div b { display: block; font-family: var(--font-en-display); font-size: clamp(24px, 2.4vw, 32px); line-height: 1; }
.crosslink__stat div span { font-size: 12px; color: var(--mute-2); display: block; margin-top: 8px; }
