@charset "utf-8";
/* ********************************************************************
 * name : CodeBee CG LAB
 * filename : content.css
 * author : JBieN 제이비엔
 * update : 2026-06-04
********************************************************************* */



/* ==========================
   PORTFOLIO LIST / QUICK VIEW
========================== */
/* Page */
.portPage {
  position: relative;
  z-index: 10;
  padding-bottom: var(--foot-h);
  background: transparent;
}

/* Hero */
.portHero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 60vh;
  padding: 150px 4.5vw 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000;
}

.portEye {
  margin: 0 0 26px;
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.portTit {
  margin: 0;
  overflow: hidden;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.portTit > span {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.portTit em {
  display: inline-block;
  font-style: normal;
  transform: translateY(115%);
  opacity: 0;
  will-change: transform, opacity;
}

.portTabs {
  display: flex;
  gap: clamp(28px, 4vw, 72px);
  margin: clamp(50px, 6vw, 95px) 0 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  list-style: none;
}

.portTabs button {
  border: 0;
  padding: 0;
  background: none;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

.portTabs button[aria-selected="true"] {
  color: var(--point);
}

.portHero .portEye,
.portHero .portTabs {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.portHero.is-on .portEye {
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.portHero.is-on .portTabs {
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.portHero.is-on .portTit em {
  animation: letterUp 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 0.08s + 0.18s);
}

@keyframes letterUp {
  0% {
    opacity: 0;
    transform: translateY(115%) scaleY(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Portfolio List */
.portList {
padding: 3em 0;
}

.portGrid {
  columns: 3;
  column-gap: 8px;
}

/*
  개발 연동 기준
  - article.portCard를 게시물 수만큼 반복 출력
  - data-cate: 필터링용 카테고리
  - data-id: 게시물 고유값
  - data-media: image | youtube
  - data-yt: 유튜브 ID. 영상 게시물일 때만 사용
  - data-total: 상세페이지 전체 결과물 수
*/
.portCard {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 8px;
  overflow: hidden;
  background: #111;
  color: #fff;
  isolation: isolate;
  break-inside: avoid;
  vertical-align: top;
  aspect-ratio: 1 / 0.78;
}

.portCard:nth-child(6n + 2),
.portCard:nth-child(6n + 6) {
  aspect-ratio: 1 / 1.48;
}

.portCard:nth-child(6n + 3) {
  aspect-ratio: 1 / 0.72;
}

.portCard.is-hide {
  display: none;
}

.portLk {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  overflow: hidden;
}

.portLk::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.16) 0%,
    rgba(0, 0, 0, 0.18) 34%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
}

.portCard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 0;
}

.portCard:hover img {
  transform: scale(1.055);
}

.portInfo {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 25px;
  z-index: 2;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.portCat {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.portNm {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.portDesc {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.portBadge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.ytPlay {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ytPlay::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 22px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.portCard:hover .ytPlay {
  background: var(--point);
  transform: translate(-50%, -50%) scale(1.06);
}

/* Quick View Button */
.qvBtn {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.02em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.qvBtn::before {
  content: "＋";
  margin-right: 8px;
  color: var(--point);
}

.portCard:hover .qvBtn,
.qvBtn:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.qvBtn:hover {
  background: rgba(255, 88, 65, 0.9);
}

/* Quick View Modal */
html.is-qv-open,
body.is-qv-open {
  overflow: hidden !important;
}

body.is-qv-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.qv {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.qv.is-open {
  display: flex;
}


.qvBg {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.qvPanel {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  height: min(760px, calc(100dvh - 80px));
  max-height: calc(100dvh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.qvMedia {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  background: #050505;
}

.qvMedia img,
.qvMedia iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: cover;
  pointer-events: auto !important;
}

.qvInfo {
  display: flex;
  flex-direction: column;
  padding: 5em 3em;
  background: #111;
  overflow: hidden;
}


.qvCat {
  margin: 0 0 18px;
  color: var(--point);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qvTit {
  margin: 0;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.qvDesc {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.qvCount {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.qvMore {
  margin-top: 20px;
}

.qvThumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.qvThumb {
  flex: 0 0 auto;
  width: 58px;
  height: 42px;
  overflow: hidden;
  border-radius: 9px;
  background: #222;
  opacity: 0.86;
}

.qvThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qvPlus {
  flex: 0 0 auto;
  min-width: 54px;
  height: 42px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.qvMoreTxt {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.55;
}

.qvAct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 34px;
}

.qvLk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--point);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.qvClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.qvX {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.qvNav {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.qvNavBtn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.qvNavBtn:hover {
  background: var(--point);
  transform: scale(1.06);
}

.qvNavBtn:disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --foot-h: 640px;
  }

  .hd {
    padding: 0 24px;
  }

  .nav {
    gap: 28px;
  }

  .portGrid {
    columns: 2;
  }

  .footTop {
    flex-direction: column;
    gap: 34px;
  }

  .qvPanel {
    height: calc(100vh - 80px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 56vh) auto;
    overflow: hidden;
  }

  .qvMedia,
  .qvMedia img,
  .qvMedia iframe {
    height: 56vh;
    min-height: 0;
  }

  .qvInfo {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 24px;
    --foot-h: 660px;
  }

  .hd {
    height: 68px;
    padding: 0 22px;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .nav .btn {
    padding: 10px 20px;
  }

  .portHero {
    min-height: 60vh;
    padding: 110px 24px 34px;
  }

  .portEye {
    font-size: 17px;
  }

  .portTabs {
    margin-top: 52px;
    gap: 24px;
  }

  .portTabs button {
    font-size: 14px;
  }

  .portList {
    padding: 42px 20px 90px;
    border-radius: 38px 0 0 0;
  }

  .portGrid {
    columns: 1;
  }

  .portCard,
  .portCard:nth-child(6n + 2),
  .portCard:nth-child(6n + 6),
  .portCard:nth-child(6n + 3) {
    margin-bottom: 8px;
    aspect-ratio: 1 / 0.9;
  }

  .qvBtn {
    opacity: 1;
    transform: none;
    right: 14px;
    top: 14px;
    min-height: 36px;
    padding: 0 12px;
  }

  .qv {
    padding: 18px;
  }

  .qvPanel {
    height: min(720px, calc(100dvh - 36px));
    max-height: calc(100dvh - 36px);
    grid-template-rows: minmax(0, 42vh) auto;
    overflow: hidden;
    border-radius: 20px;
  }

  .qvMedia,
  .qvMedia img,
  .qvMedia iframe {
    height: 42vh;
    min-height: 0;
  }

  .qvInfo {
    padding: 26px 22px;
  }

  .qvThumb {
    width: 50px;
    height: 38px;
  }

  .qvPlus {
    min-width: 48px;
    height: 38px;
  }

  .footMeta span {
    font-size: 14px;
  }

  .footBot {
    align-items: flex-start;
    flex-direction: column;
  }
}



/* View Hero */
.viewHero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 70px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 88, 65, 0.16), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.viewHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65)),
    var(--hero-img) center / cover no-repeat;
  opacity: 0.46;
  transform: scale(1.04);
}

.viewHeroIn {
  position: relative;
  z-index: 2;
  width: var(--con);
  margin: 0 auto;
}

.backLk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.viewLabel {
  margin: 0 0 22px;
  color: var(--point);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.viewTit {
  margin: 0;
  max-width: 1240px;
  font-size: clamp(64px, 10vw, 178px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.viewSum {
  max-width: 780px;
  margin: 34px 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

/* Overview */
.viewOv {
  position: relative;
  z-index: 3;
  padding: clamp(72px, 8vw, 150px) 0;
  border-radius: 64px 0 0 0;
  background: #fff;
  color: #111;
}

.viewOvIn {
  width: var(--con);
  margin: 0 auto;
}

.metaGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.metaItem {
  min-height: 160px;
  padding: 34px 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.metaItem:last-child {
  border-right: 0;
}

.metaItem dt {
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metaItem dd {
  margin: 0;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.contSplit {
  display: grid;
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 140px);
  margin-top: clamp(90px, 9vw, 170px);
}

.secKick {
  margin: 0;
  color: var(--point);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.objTit {
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.4vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 850;
}

.objDesc {
  margin: 36px 0 0;
  max-width: 880px;
  color: rgba(0, 0, 0, 0.62);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.8;
  letter-spacing: -0.025em;
}

/* Visual */
.viewVisual {
  position: relative;
  z-index: 4;
  padding: 0 0 clamp(90px, 10vw, 180px);
  background: #fff;
  color: #111;
}

.viewVisualIn {
  width: var(--con);
  margin: 0 auto;
}

.mainMedia {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  line-height: 0;
}

.mainMedia video,
.mainMedia img,
.mainMedia iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 540px;
  border: 0;
  object-fit: cover;
  vertical-align: top;
}

.mainMedia iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  border: 0;
  position: relative;
  z-index: 3;
  pointer-events: auto !important;
}

.mediaCap {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.imgGrid {
  margin-top: clamp(18px, 2vw, 34px);
  columns: 3;
  column-gap: clamp(18px, 2vw, 34px);
}

/*
  개발자 연동 기준
  - 첨부 이미지 배열을 figure.imgCard 단위로 반복 출력
  - 이미지 원본 비율 유지
  - 별도 비율 강제 없이 masonry columns로 자동 배치
  - 워터마크 적용본 이미지 경로를 img src에 출력
*/
.imgCard {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(18px, 2vw, 34px);
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  break-inside: avoid;
  vertical-align: top;
}

.imgCard a {
  display: block;
}

.imgCard img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  transition: transform 0.9s ease;
}

.imgCard:hover img {
  transform: scale(1.04);
}

.imgCap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(14px);
  color: #fff;
}

.imgCap strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.imgCap span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

/* Result */
.resSec {
  padding: clamp(80px, 9vw, 150px) 0;
  background: #0d0d0d;
}

.resIn {
  width: var(--con);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 28%) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 140px);
}

.resTit {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 930;
}

.resTxt {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.8;
  letter-spacing: -0.025em;
}

.specLs {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.specLs li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.specLs strong {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specLs span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.5;
}

/* Prev / Next */
.viewNav {
  padding: clamp(60px, 7vw, 120px) 0;
  background: #fff;
  color: #111;
}

.viewNavIn {
  width: var(--con);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.viewNavItem {
  position: relative;
  display: flex;
  min-height: clamp(260px, 25vw, 430px);
  padding: clamp(34px, 4vw, 70px);
  overflow: hidden;
  background: #111;
  color: #fff;
  isolation: isolate;
}

.viewNavItem + .viewNavItem {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.viewNavItem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--nav-thumb) center / cover no-repeat;
  opacity: 0.55;
  transform: scale(1.04);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.viewNavItem::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.76));
}

.viewNavItem:hover::before {
  transform: scale(1.09);
  opacity: 0.72;
}

.viewNavItem.is-disabled {
  pointer-events: none;
  opacity: 0.35;
}

.viewNavCon {
  width: 100%;
  margin-top: auto;
}

.viewNavLabel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--point);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.viewNavTit {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(32px, 4.6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 930;
}

.viewNavCat {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 700;
}

.imgZoom {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.imgZoom.is-open {
  display: flex;
}

.imgZoomBg {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.imgZoom img {
  position: relative;
  z-index: 2;
  max-width: min(100%, 1500px);
  max-height: calc(100dvh - 80px);
  object-fit: contain;
  border-radius: 18px;
}

.imgZoomClose {
  position: fixed;
  right: 28px;
  top: 28px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.imgCard a {
  cursor: zoom-in;
}

html.is-img-zoom-open,
body.is-img-zoom-open {
  overflow: hidden !important;
}

body.is-img-zoom-open {
  position: fixed;
  top: var(--scroll-y, 0px);
  left: 0;
  right: 0;
  width: 100%;
}

/* Motion */
.rv {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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



/* Responsive */
@media (max-width: 1024px) {
  :root {
    --con: calc(100% - 48px);
  }

  .hd {
    padding: 0 24px;
  }

  .nav {
    gap: 26px;
  }

  .metaGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metaItem:nth-child(2) {
    border-right: 0;
  }

  .metaItem:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .contSplit,
  .resIn {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mainMedia video,
  .mainMedia img,
  .mainMedia iframe {
    min-height: 420px;
  }

  .imgGrid {
    columns: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --con: calc(100% - 36px);
  }

  .hd {
    height: 68px;
    padding: 0 20px;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .nav .btn {
    padding: 10px 20px;
  }

  .viewHero {
    min-height: 86vh;
    padding: 110px 0 48px;
  }

  .backLk {
    margin-bottom: 34px;
  }

  .viewSum {
    margin-left: 0;
  }

  .viewOv {
    border-radius: 38px 0 0 0;
  }

  .metaGrid {
    grid-template-columns: 1fr;
  }

  .metaItem {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .metaItem:last-child {
    border-bottom: 0;
  }

  .imgGrid {
    columns: 1;
  }

  .mainMedia {
    border-radius: 18px;
  }

  .mainMedia video,
  .mainMedia img,
  .mainMedia iframe {
    min-height: 320px;
  }

  .imgCard {
    border-radius: 18px;
  }

  .imgCap {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .specLs li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .viewNavIn {
    grid-template-columns: 1fr;
  }

  .viewNavItem + .viewNavItem {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .viewNavItem {
    min-height: 280px;
    padding: 32px 24px;
  }

  .footIn {
    flex-direction: column;
  }
}