/* ============================================================
   BASE RESET
   ============================================================ */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
}

a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

menu, ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

::selection {
  background: #FF511C;
  color: #000000;
}

::-moz-selection {
  background: #FF511C;
  color: #000000;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1920px;
  min-width: 1025px;
  margin: 0 auto;
  background: linear-gradient(to left, #ffffff, #ffffff);
  position: relative;
  /*overflow-x: hidden;*/
  /*overflow-y: auto;*/
  overflow-x: clip;
  overflow-y: visible;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  width: 100%;
  position: relative;
  left: 50%;
  translate: -50%;
  top: 0;
  overflow: hidden;
  display: grid;
  /*grid-template-columns: 23% 49% 28%;*/
  grid-template-columns: 23% 46% 31%;
  grid-template-rows: 80px auto;
  align-items: start;
  height: var(--site-header-height);
}

.site-header-logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.anothersunday-logo {
  width: 100%;
  min-width: 200px;
  position: relative;
  top: 13px;
}

.site-header-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--ansdorange, #ff511c);
  border-top: 0;
  padding: 21px 46px 21px 40px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  justify-content: flex-start;
  width: 53.5vw;
  height: 80px;
  position: static;
  margin-left: 4vw;
}

.navigation-link {
  color: var(--ansdblack, #000000);
  text-align: left;
  font-family: var(--eng-pchead-large-font-family, "GtAmerica-Md", sans-serif);
  font-size: var(--eng-pchead-large-font-size, 32px);
  line-height: var(--eng-pchead-large-line-height, 150%);
  font-weight: var(--eng-pchead-large-font-weight, 400);
  position: relative;
}
.navigation-link--active {
  color: var(--ansdorange, #FF511C);
}

.navigation-extend {
  display: none;
  cursor: pointer;
  flex-shrink: 0;
}
.navigation-extend--mo {
  display: none;
  cursor: pointer;
}

/* navigation-extend + / - 아이콘 토글 */
.nav-extend-icon--minus {
  display: none;
}
.header--expanded .nav-extend-icon--plus {
  display: none;
}
.header--expanded .nav-extend-icon--minus {
  display: block;
}

/* 모바일 탭 메뉴 (기본 숨김, expanded 일 때 표시) */
.site-header-mo-nav-tab {
  display: none;
}

/* ── 모바일 탭 하단 곡선 라인 ──────────────────────────────────── */
/*    SVG viewBox=32×49 비율 유지, 높이만 브레이크포인트별 조정     */
/*    --mo-tab-svg-h  : SVG 높이 (비율 기준 너비도 함께 변경)        */
/*    --mo-tab-svg-w  : 32 × h/49  (비율 고정)                       */
.mo-tab-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--mo-tab-svg-h, 49px);
  overflow: visible;
  pointer-events: none;
}

.mo-tab-line-underline {
  position: absolute;
  left: 0;
  top: var(--mo-tab-svg-h, 49px); /* SVG 높이 = underline 시작점 */
  width: var(--mo-tab-line-left, 0px);
  height: 0;
  border-top: var(--header-line-stroke) solid var(--header-line-color);
}

.mo-tab-line-svg {
  position: absolute;
  left: var(--mo-tab-line-left, 0px);
  top: 0;
  width: var(--mo-tab-svg-w, 32px);   /* 비율 고정 너비 */
  height: var(--mo-tab-svg-h, 49px);  /* 브레이크포인트별 높이 */
  overflow: visible;
}

.mo-tab-line-svg path {
  stroke: var(--header-line-color);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.mo-tab-line-overline {
  position: absolute;
  left: calc(var(--mo-tab-line-left, 0px) + var(--mo-tab-svg-w, 32px));
  right: 0;
  top: 0; /* SVG 상단 = top-curve 시작 */
  height: 0;
  border-top: var(--header-line-stroke) solid var(--header-line-color);
}

.site-header-nav-tab {
  grid-column: 2 / 3;
  grid-row: 2;
  padding: 8px 46px 8px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 8px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-width: 0;
  margin-left: 4vw;
  z-index: 1;
}

.tab {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  border-width: 1px;
  padding: 4px 8px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 39px;
  position: relative;
}
.tab-label {
  background: var(
          --ansdg50,
          linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
          linear-gradient(to left, #ffffff, #ffffff)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  font-family: var(--eng-body-large-font-family, "GtAmerica-Rg", sans-serif);
  font-size: var(--eng-body-large-font-size, 19px);
  line-height: var(--eng-body-large-line-height, 150%);
  font-weight: var(--eng-body-large-font-weight, 400);
  position: relative;
  display: inline-block;
}
.tab:hover,
.tab--active {
  background: var(--ansdorange, #ff511c);
}
.tab:hover .tab-label,
.tab--active .tab-label {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--ansdwhite, #ffffff);
  color: var(--ansdwhite, #ffffff);
  font-family: var(--eng-body-large-font-family, "GtAmerica-Rg", sans-serif );
  font-size: var(--eng-body-large-b-font-size, 19px);
  line-height: var(--eng-body-large-b-line-height, 150%);
  font-weight: var(--eng-body-large-b-font-weight, 400);
}







.social-media {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  margin-right: 80px;
  margin-top: 28px;
  color: #000000;
  text-align: left;
  font-family: var(--eng-body-small-font-family, "GtAmerica-Rg", sans-serif);
  font-size: var(--eng-body-small-font-size, 15px);
  line-height: var(--eng-body-small-line-height, 150%);
  font-weight: var(--eng-body-small-font-weight, 400);
  position: static;
}

.social-media-link {
  color: #000;
  text-decoration: none;
}

/* ── 헤더 데코 요소: JS 포지셔닝 전 깜빡임 방지 ────────────────────
   updateHeaderLayout() 완료 시 .header--layout-ready 클래스 추가 →
   opacity 0 → 1 + transition 으로 자연스럽게 등장                    */
.site-header .rectangle-1,
.site-header .rectangle-2 {
  opacity: 0.1
}
.header--layout-ready .rectangle-1,
.header--layout-ready .rectangle-2 {
  opacity: 1;
  transition: opacity 0.1s ease;
}

/* Header decoration */
.tab-line {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: calc(var(--header-left-dot-top) - 47px);
  width: 100%;
  height: var(--header-tab-line-height);
}

.site-header.container{
  position: relative;
}

.site-header-nav-tab-underline {
  position: absolute;
  left: 0;
  top: 49px;
  width: var(--header-line-left);
  height: 0;
  border-top: var(--header-line-stroke) solid var(--header-line-color);
}

.site-header-line {
  position: absolute;
  left: var(--header-line-left);
  top: 0;
  width: var(--header-line-width);
  height: 49px;
  overflow: visible;
  display: block;
}

.site-header-nav-tab-overline {
  position: absolute;
  left: calc(var(--header-line-left) + var(--header-line-width));
  right: 0;
  top: 0;
  height: 0;
  border-top: var(--header-line-stroke) solid var(--header-line-color);
}

.site-header-line path {
  stroke: var(--header-line-color);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.rectangle-1,
.rectangle-2 {
  background: var(--ansdorange, #ff511c);
  border-style: solid;
  border-color: var(--ansdorange, #ff511c);
  border-width: 1px;
  width: 9px;
  height: 9px;
  position: absolute;
}

.rectangle-1 {
  left: calc(69px - 5px);
  top: calc(var(--header-left-dot-top) - 2px);
}

.rectangle-2 {
  left: calc(100% - 70px - 4.5px);
  top: calc(var(--header-right-dot-top) - 2px);
}

.line-1,
.line-2 {
  background: var(--ansdorange, #ff511c);
  margin-top: -1px;
  border-style: solid;
  border-color: var(--ansdorange, #ff511c);
  border-width: 1px 0 0 0;
  height: 0px;
  position: absolute;
  top: 0;
  transform-origin: 0 0;
  transform: rotate(90deg) scale(1, 1);
}

.line-1 {
  width: var(--header-left-line-height);
  left: 69px;
}

.line-2 {
  width: var(--header-right-line-height);
  left: calc(100% - 70px);
}

/* --------------- */
.page-content {
  padding: 40px 80px 0px 80px
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-list {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 16px;
}

.gallery-item,
.gallery-item--hero,
.gallery-card__thumb,
.gallery-card__body,
.gallery-card__title,
.gallery-card__tags {
  min-width: 0;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.gallery-item.is-pointer-overlay,
.gallery-item.is-pointer-overlay * {
  cursor: none !important;
}

.gallery-item--hero {
  grid-column: span 2;
}

.gallery-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.gallery-card__title {
  color: #000000;
  text-align: left;
  font-family: var(--kor-body-large-b-font-family, "Pretendard-SemiBold", sans-serif);
  font-size: var(--kor-body-large-b-font-size, 19px);
  line-height: var(--kor-body-large-b-line-height, 1.5);
  letter-spacing: var(--kor-body-large-b-letter-spacing, -0.005em);
  font-weight: var(--kor-body-large-b-font-weight, 600);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.gallery-card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  cursor: default;
}

/* Hero assets */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.hero-asset--pc {
  display: block;
}

.hero-asset--mo {
  display: none;
}

/* Tags */
.tag-work,
.tag-tech {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.tag-work {
  background: var(--ansdorange, #ff511c);
  border-radius: 4px;
  padding: 2px 8px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 28px;
  position: relative;
}

.tag-work-label {
  color: #ffffff;
  font-family: var(--eng-body-small-font-family,  "GtAmerica-Rg", sans-serif);
  font-size: var(--eng-body-small-font-size, 15px);
  line-height: var(--eng-body-small-line-height, 150%);
  font-weight: var(--eng-body-small-font-weight, 400);
  font-style: normal;
  position: relative;
}

.tag-tech {
  background: #ffffff;
  border-radius: 4px;
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  padding: 2px 8px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 28px;
  position: relative;
}

.tag-tech-label {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000000;
  text-align: left;
  font-family: var(--eng-body-small-font-family,"GtAmerica-Rg", sans-serif);
  font-size: var(--eng-body-small-font-size, 15px);
  line-height: var(--eng-body-small-line-height, 150%);
  font-weight: var(--eng-body-small-font-weight, 400);

  position: relative;
}

/* Images */
.thumb-image{
  width: 100%;
  background: #adb2ea;
  border-radius: 16px;
}

.image {
  background: #adb2ea;
  border-radius: 16px;
  align-self: stretch;
  position: relative;
  aspect-ratio: 9/5;
}

.tmp-image__3-4 {
  background: #adb2ea;
  border-radius: 16px;
  align-self: stretch;
  position: relative;
  aspect-ratio: 3/4;
}

.tmp-image__1-1 {
  background: #adb2ea;
  border-radius: 16px;
  align-self: stretch;
  position: relative;
  aspect-ratio: 1/1;
}

.tmp-image__4-3 {
  background: #adb2ea;
  border-radius: 16px;
  align-self: stretch;
  position: relative;
  aspect-ratio: 4/3;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  width: 100%;
  height: 275px;
  position: relative;
  left: 0px;
  bottom: 0px;
}

.site-footer__inner {
  border-style: solid;
  border-color: var(--ansdorange, #ff511c);
  border-width: 1px 0 0 0;
  padding: 16px 80px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 155px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.footer-info-block {
  display: contents;
}

.footer-insta {
  display: none;
}

.footer-insta img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-info {
  color: #000000;
  text-align: left;
  font-family: var(--kor-body-large-font-family, "Pretendard-Regular", sans-serif);
  font-size: var(--kor-body-large-font-size, 19px);
  line-height: var(--kor-body-large-line-height, 150%);
  letter-spacing: var(--kor-body-large-letter-spacing, -0.005em);
  font-weight: var(--kor-body-large-font-weight, 400);
  position: relative;
}

.official-anothersun-day {
  color: #000000;
  text-align: left;
  font-family: var(--eng-body-medium-font-family, "GtAmerica-Rg", sans-serif);
  font-size: var(--eng-body-medium-font-size, 17px);
  line-height: var(--eng-body-medium-line-height, 150%);
  font-weight: var(--eng-body-medium-font-weight, 400);
  position: relative;
}

.footer-copyright {
  color: #000000;
  text-align: left;
  font-family: var(--eng-body-medium-font-family, "GtAmerica-Rg", sans-serif);
  font-size: var(--eng-body-medium-font-size, 17px);
  line-height: var(--eng-body-medium-line-height, 150%);
  font-weight: var(--eng-body-medium-font-weight, 400);
  position: relative;
  white-space: pre-line;
}

.rectangle-3 {
  background: var(--ansdorange, #ff511c);
  width: 9px;
  height: 9px;
  position: absolute;
  left: 65px;
  top: 116px;
}

.rectangle-4 {
  background: var(--ansdorange, #ff511c);
  width: 9px;
  height: 9px;
  position: absolute;
  left: calc(100% - 70px - 4.5px);
  top: calc(100% - 150px - 9px);
}

.line-3 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--ansdorange, #ff511c);
  border-width: 1px 0 0 0;
  width: 235px;
  height: 0px;
  position: absolute;
  left: 69px;
  top: 40px;
  transform-origin: 0 0;
  transform: rotate(90deg) scale(1, 1);
}

.line-4 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--ansdorange, #ff511c);
  border-width: 1px 0 0 0;
  width: 235px;
  height: 0px;
  position: absolute;
  left: calc(100% - 70px);
  top: 40px;
  transform-origin: 0 0;
  transform: rotate(90deg) scale(1, 1);
}

.site-footer__inner .footer-divider,
.rectangle-tablet-1,
.rectangle-tablet-2 {
  display: none;
}

/* ============================================================
   TABLET + MOBILE (<= 1024px)
   ============================================================ */
@media screen and (max-width: 1024px) {
  /* mo-tab-line SVG 크기: viewBox 32×49 비율 유지, 태블릿 높이 38px */
  /* 너비 = 32 × 38/49 ≈ 24.82px */
  .site-header-mo-nav-tab {
    --mo-tab-svg-h: 42px;
    --mo-tab-svg-w: 24.82px;
  }

  .wrap {
    max-width: 1024px;
    min-width: 768px;
    position: relative;
    overflow: visible;
  }

  .site-header {
    width: 100%;
    height: 60px;
    position: sticky;
    top: 0;
    left: 0;
    translate: none;
    background: #ffffff;
    overflow: hidden;
    z-index: 100;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 2px solid var(--ansdorange, #ff511c);
  }

  .site-header-logo {
    padding-left: 0;
  }

  .rectangle-1, .rectangle-2,
  .line-1, .line-2,
  .social-media,
  .tab-line,
  .site-header-line,
  .site-header-nav-tab,
  #header-tab-gap-lines {
    display: none;
  }

  .anothersunday-logo {
    width: 133px;
    height: 40px;
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    aspect-ratio: 133/40;
    object-fit: contain;
    min-width: auto;
  }

  .site-header-nav {
    position: relative;
    width: auto;
    height: auto;
    padding: 8px 0;
    border-width: 0;
    border-radius: 0;
    gap: 48px;
  }

  .navigation-link {
    color: var(--ansdblack, #000);
    font-family: var(--eng-mobilehead-medium-font-family, "GtAmerica-Md", sans-serif);
    font-size: var(--eng-mobilehead-medium-font-size, 24px);
    line-height: var(--eng-mobilehead-medium-line-height, 150%);
    font-weight: var(--eng-mobilehead-medium-font-weight, 500);
    font-style: var(--eng-mobilehead-medium-font-style, normal);
  }
  .navigation-link--active {
    color: var(--ansdorange, #FF511C);
  }

  .navigation-extend {
    display: block;
  }
  .navigation-extend--mo {
    display: none;
  }


  /* ── 모바일/태블릿 nav-tab 확장 패널 ──────────────────────────── */
  .header--expanded .site-header {
    /*height: auto;*/
    overflow: visible;
    border-bottom: none;
  }

  .header--expanded .site-header-mo-nav-tab {
    position: relative;       /* mo-tab-line의 absolute 기준점 */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*gap: 10px 8px;*/
    gap: 8px 8px;
    padding: 4px 32px 4px;
    /*padding: 12px 32px 62px;  !* 하단 = 탭 여백 + mo-tab-line(49px) + 여유 *!*/
    /*border-top: 2px solid var(--ansdorange, #ff511c);*/
    /* border-bottom 은 mo-tab-line underline/overline 으로 대체 */
    background: #fff;
    align-items: center;
    justify-content: flex-start;
  }

  .header.header--expanded .site-header{
    border-bottom: 2px solid var(--ansdorange, #ff511c);
  }

  .tab-label{
    font-family: var(--eng-body-medium-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--eng-body-medium-font-size, 17px);
    line-height: var(--eng-body-medium-line-height, 150%);
    font-weight: var(--eng-body-medium-font-weight, 400);
  }
  .tab:hover .tab-label,
  .tab--active .tab-label {
    font-family: var(--eng-body-medium-font-family, "GtAmerica-Rg", sans-serif );
    font-size: var(--eng-body-medium-font-size, 17px);
    line-height: var(--eng-body-medium-line-height, 150%);
    font-weight: var(--eng-body-medium-font-weight, 400);
  }

  .page-content {
    padding: 40px 32px 0px 32px;
  }

  .gallery-list {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }

  .gallery-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .gallery-item--hero {
    flex: 100%;
  }

  .image {
    align-self: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 960/541;
    flex-shrink: 1;
  }

  .tmp-image__3-4 {
    align-self: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    flex-shrink: 1;
  }

  .tmp-image__1-1 {
    flex: 1 1 calc(50% - 8px);
    height: auto;
    aspect-ratio: 1;
  }

  .tmp-image__4-3 {
    flex: 1 1 calc(50% - 8px);
    height: auto;
    aspect-ratio: 4/3;
  }

  .gallery-card__link {
    gap: 8px;
  }

  .gallery-card__body {
    opacity: 1;
    width: 100%;
  }

  .gallery-card__title {
    font-family: var(--kor-body-large-b-font-family, "Pretendard-SemiBold", sans-serif);
    font-size: var(--kor-body-large-b-font-size, 19px);
    font-weight: var(--kor-body-large-b-font-weight, 600);
    line-height: var(--kor-body-large-b-line-height, 150%);
    letter-spacing: var(--kor-body-large-b-letter-spacing, -0.005em);
  }

  .site-footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin-top: 40px;
  }

  .site-footer__inner {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 64% 36%;
    padding: 36px 27px 14px 28px;
    border: none;
  }

  .site-footer__inner::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 36px;
    height: 1px;
    background: var(--ansdorange, #ff511c);
  }

  .site-footer__inner::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 27px;
    top: 0;
    bottom: 0;
    border-left: 1px solid var(--ansdorange, #ff511c);
    border-right: 1px solid var(--ansdorange, #ff511c);
    pointer-events: none;
  }

  .site-footer__inner .footer-divider {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 143px;
    height: 1px;
    background: var(--ansdorange, #ff511c);
    pointer-events: none;
    display: block;
  }

  .site-footer__inner .rectangle-tablet-1,
  .rectangle-tablet-2 {
    background: var(--ansdorange, #ff511c);
    width: 9px;
    height: 9px;
    position: absolute;
    display: block;
  }

  .site-footer__inner .rectangle-tablet-1 {
    top: 31.5px;
    left: 22.5px;
  }

  .site-footer__inner .rectangle-tablet-2 {
    top: 31.5px;
    right: 23.5px;
  }

  .footer-info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    grid-column: 1;
    grid-row: 1;
    padding: 8px 13px;
  }

  .footer-insta {
    display: flex;
    align-items: flex-start;
    grid-column: 2;
    grid-row: 1;
    margin: 10px;
  }

  .footer-insta img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    padding: 8px 13px;
  }

  .footer-info {
    font-family: var(--kor-body-small-font-family, "Pretendard-Regular", sans-serif);
    font-size: var(--kor-body-small-font-size, 15px);
    line-height: var(--kor-body-small-line-height, 150%);
    letter-spacing: var(--kor-body-small-letter-spacing, -0.005em);
    font-weight: var(--kor-body-small-font-weight, 400);
  }
  .official-anothersun-day {
    font-family: var(--eng-body-small-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--eng-body-small-font-size, 15px);
    line-height: var(--eng-body-small-line-height, 150%);
    font-weight: var(--eng-body-small-font-weight, 400);
  }
  .footer-copyright {
    font-family: var(--eng-body-small-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--eng-body-small-font-size, 15px);
    line-height: var(--eng-body-small-line-height, 150%);
    font-weight: var(--eng-body-small-font-weight, 400);
  }

  .rectangle-3, .rectangle-4, .line-3, .line-4 {
    display: none;
  }
}

/* ============================================================
   테블릿 세로 MOBILE (<= 767px)
   ============================================================ */
@media screen and (max-width: 767px) {
  /* mo-tab-line SVG 크기: viewBox 32×49 비율 유지, 모바일 높이 37px */
  /* 너비 = 32 × 37/49 ≈ 24.16px */
  .site-header-mo-nav-tab {
    --mo-tab-svg-h: 42px;
    --mo-tab-svg-w: 24.16px;
  }

  .wrap {
    max-width: 767px;
    min-width: 320px;
  }

  .site-header {
    height: 52px;
    padding: 0 16px;
  }

  .site-header-nav {
    padding: 8px 16px 8px 0;
    gap: 24px;
  }

  .header--expanded .site-header-mo-nav-tab {
    /*padding: 12px 16px 62px;*/
    padding: 4px 16px 4px;
  }

  .page-content {
    padding: 40px 16px 0px 16px;
  }

  .gallery-list {
    gap: 24px 16px;
  }

  .hero-asset--pc {
    display: none;
  }

  .hero-asset--mo {
    display: block;
  }

  .gallery-card__title {
    font-family: var(--kor-body-small-b-font-family, "Pretendard-SemiBold", sans-serif);
    font-size: var(--kor-body-small-b-font-size, 15px);
    line-height: var(--kor-body-small-b-line-height, 150%);
    letter-spacing: var(--kor-body-small-b-letter-spacing, -0.005em);
    font-weight: var(--kor-body-small-b-font-weight, 600);
  }

  .tag-work-label {
    font-family: var(--eng-body-xsmall-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--eng-body-xsmall-font-size, 13px);
    line-height: var(--eng-body-xsmall-line-height, 150%);
    font-weight: var(--eng-body-xsmall-font-weight, 400);
  }
  .tag-tech-label {
    font-family: var(--eng-body-xsmall-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--eng-body-xsmall-font-size, 13px);
    line-height: var(--eng-body-xsmall-line-height, 150%);
    font-weight: var(--eng-body-xsmall-font-weight, 400);
  }

  .site-footer__inner {
    padding: 36px 12px 0px 13px;
  }

  .site-footer__inner::after {
    left: 12px;
    right: 13px;
  }

  .site-footer__inner .footer-divider {
    top: auto;
    bottom: 56px;
  }

  .site-footer__inner .rectangle-tablet-1 {
    left: 7.5px;
  }

  .site-footer__inner .rectangle-tablet-2 {
    right: 9px;
  }

  .footer-info {
    font-family: var(--kor-body-xsmall-font-family, "Pretendard-Regular", sans-serif);
    font-size: var(--kor-body-xsmall-font-size, 13px);
    line-height: var(--kor-body-xsmall-line-height, 150%);
    letter-spacing: var(--kor-body-xsmall-letter-spacing, -0.005em);
    font-weight: var(--kor-body-xsmall-font-weight, 400);
  }
  .official-anothersun-day {
    font-family: var(--eng-body-xsmall-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--kor-body-xsmall-font-size, 13px);
    line-height: var(--kor-body-xsmall-line-height, 150%);
    letter-spacing: var(--kor-body-xsmall-letter-spacing, -0.005em);
    font-weight: var(--kor-body-xsmall-font-weight, 400);
  }
  .footer-copyright {
    font-family: var(--eng-body-xsmall-font-family, "GtAmerica-Rg", sans-serif);
    font-size: var(--kor-body-xsmall-font-size, 13px);
    line-height: var(--kor-body-xsmall-line-height, 150%);
    letter-spacing: var(--kor-body-xsmall-letter-spacing, -0.005em);
    font-weight: var(--kor-body-xsmall-font-weight, 400);
  }


  /* ============================================================
   MOBILE (<= 480px)
   ============================================================ */
  @media screen and (max-width: 480px) {

    .navigation-extend {
      display: none;
    }
    .navigation-extend--mo {
      display: block;
    }

  }
  /* ============================================================
   MOBILE z-fold (<= 344px)
   ============================================================ */
  @media screen and (max-width: 344px) {
    .site-header-nav{
      gap: 14px;
    }
  }

}