@charset "utf-8";
.main {
  position: relative;
  width: 100%;
}
/* page 공통 */
.page-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 17vh 200px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  /* background-color: #4f4f4f; */
}
.page-left {
  position: relative;
  flex: 1;
  height: 73vh;
  overflow: hidden;
  /* background-color: aqua; */
}
.page-left-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-left-txt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.page-left-txt p {
  color: var(--gray1, #121212);
  font-family: Pretendard;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.69px;
  text-align: center;
  overflow: hidden;
}
.page-left-txt span {
  display: inline-block;
  color: var(--gray2, #bdbdbd);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.46px;
  text-align: center;
  overflow: hidden;
}
.page-left-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.link-list {
  position: relative;
  display: flex;
  gap: 8px;
}
.link-list a {
  font-size: 16px;
  white-space: nowrap;
}
.tool-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.page-left-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.page-left-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-right {
  flex: 3;
  height: 100%;
  display: flex;
  gap: 48px;
  justify-content: center;
  /* background-color: red; */
  overflow: hidden;
  position: relative;
}
.page-right div {
  border-radius: 30px 30px 0 0;
}
.page-right img {
  width: 22vw;
}

@keyframes autoScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
/* text 인터랙션 초기 상태  */
.section-animate .page-left-txt p,
.section-animate .page-left-txt span,
.section-animate .link-list,
.section-animate .tool-list {
  opacity: 0;
  transform: translateY(40px);
}

@media screen and (max-width: 768px) {
  .page-inner {
    display: flex;
    flex-direction: column;
  }
  .page-right {
    display: none;
  }
}
/* page 공통 end*/

/* intro 
=================================================================================*/
.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  /* background: linear-gradient(
    113deg,
    #e0e4f9 25.89%,
    #f0e2ec 82.34%,
    #faf3f0 105.77%
  ); */
  position: relative;
  box-sizing: border-box;
}

.main-title {
  position: absolute;
  top: 21%;
  z-index: 1;
  font-size: clamp(28px, 7vw, 96px);
  text-align: center;
  color: var(--gray2, #4f4f4f);
  text-shadow: 8px 8px 10px rgba(18, 18, 18, 0.2);
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  perspective: 800px;
  perspective-origin: center center;
}

.visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 200px 0;
}

.bg-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 20vw;
  height: 30vw;
  /* aspect-ratio: 500 / 756; */
  min-width: 300px;
  min-height: 500px;

  border-radius: 200px;
  border-radius: 500px;
  overflow: hidden;
  z-index: 1;
}

.bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 300%;
  height: 300%;
  transform-origin: center;

  background: radial-gradient(
      circle at center,
      rgba(232, 214, 240, 0.6),
      rgba(216, 222, 248, 0) 60%
    ),
    linear-gradient(130deg, #d8def8, #ecd6e2, #faf2e4, #ecd6e2, #d8def8);
  background-size: 300% 300%;
  background-blend-mode: screen;

  filter: blur(5px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.visual .about-me {
  /* position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(28px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600; */
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.visual .about-me.on {
  opacity: 1;
  transform: translateY(0);
}

.main .main-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: all 0.6s ease;
  transform-origin: center bottom;
}

.main .main-title span.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.main .main-title span.hide {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px) scale(0.7);
}

/* scroll indi ============*/
.scroll-indicator {
  position: absolute;
  top: calc(100vh - 118px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
.scroll-text {
  font-size: 12px;
  color: var(--gray2);
  letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fadeInOut 2s ease-in-out infinite;
  animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
/* 위아래 이동 */
@keyframes bounceDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* scroll indi end ========*/
/* deco line=============== */
/* 선 라인 */
.line-deco {
  position: fixed; /* 또는 absolute, 필요에 따라 조절 */
  top: 50%;
  transform: translateY(-50%);
  height: 60vh;
  width: 1px;
  background: linear-gradient(180deg, #d8def8 0%, #ecd6e2 70.67%, #faf2e4 100%);
  z-index: 1;
  /* overflow: hidden;  */
}

/* 왼쪽/오른쪽 위치 조정 */
.line-deco-left {
  left: 100px;
}
.line-deco-right {
  right: 100px;
}

/* 별 아이콘 */
.star {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: url("../img/icon/generated-image.png") no-repeat center / contain;
  animation: moveStar 5s ease-in-out infinite alternate;
  /* blinkStar 1.5s ease-in-out infinite alternate; */
  /* opacity: 0.9; */
  z-index: 2;
}

/* 위아래 반복 움직임 */
@keyframes moveStar {
  0% {
    top: 0;
  }
  100% {
    top: calc(100% - 40px); /* 별 높이만큼 빼줘야 넘치지 않음 */
  }
}

/* 반짝임 효과 */
@keyframes blinkStar {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.9;
  }
}

/* deco line end=========== */
/* intro end
================================================================================= */

/* aboutme 
=================================================================================*/
#about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* padding: 184px 200px 200px; */
  padding: 9.58vw 200px 10.42vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  /* background-color: red; */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 60%,
    #f0e2ec 95%,
    #e0e4f9 100%
  );
}
.about-me-inner {
  position: relative;
  width: 100%;
  /* height: 100%; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 24px; */
  overflow: hidden;
  z-index: 120;
  /* background-color: #fff; */
}
.about-me p {
  color: var(--gray1, #121212);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.69px;
}
.about-me ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-me li {
  width: 100%;
  color: var(--gray2, #4f4f4f);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.552px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-intro ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-first {
  flex: 1.5;
}
.about-first span {
  font-size: 32px;
}
.about-txt-left {
  position: relative;
  /* flex: 1.5; */
  width: 20vw;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  /* justify-content: space-between; */
  justify-content: center;
  gap: 16px;
}

.about-pro li {
  /* color: var(--gray2, #4f4f4f); */
  color: #888;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.69px;
}
.about-img {
  position: relative;
  /* width: 250px; */
  width: 10.02vw;
  /* height: 350px; */
  height: 15.23vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-txt-right {
  position: relative;
  width: 40vw;
  /* flex: 3; */
  display: flex;
  padding: 0px 36px;
  flex-direction: column;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.about-txt-right::before {
}

.about-txt-right div {
  width: 100%;
  display: flex;
  /* flex-direction: column; */
  gap: 60px;
}
.about-txt-right div p {
  width: 84px;
  flex-shrink: 0;
}
.about-txt-right div ul li span {
  color: #888888;
}
.about-txt-right ul {
  position: relative;
  padding-left: 24px;
}
.about-txt-right ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5px;
  height: 100%;
  background-color: var(--gray3);
  z-index: 3;
}
.about-con a {
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.about-con a:hover {
  color: var(--gray2);
}
.about-con a img {
  width: 24px;
  height: 24px;
}

/* aboutme end 
=================================================================================*/

/* web
=================================================================================*/
.web {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  height: auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #e0e4f9 7.59%, #f0e2ec 69.6%, #faf3f0 95.32%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 17vh 200px 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  .web {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .web {
    padding: 0 10.24vw;
  }
}
@media (max-width: 768px) {
  .web {
    padding: 0 10.24vw;
  }
}

.web-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 250px;
}
@media (max-width: 768px) {
  .web-content {
    padding: 0 0; /* 중복 제거 */
  }
}
@media (max-width: 1200px) {
  .web-content {
    grid-template-columns: repeat(2, minmax(340px, 1fr));
  }
}
@media (max-width: 800px) {
  .web-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .web-content-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
.web-content-item {
  position: relative;
  flex: 1 1 300px;
  min-height: 480px; /* ✅ 최소 높이 설정 */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 30px;
  border: 1px solid var(--gray4, #f2f2f2);
  background: var(--gray5, #fdfdfd);
  box-shadow: 0 1px 4px rgba(79, 79, 79, 0.25);
  box-sizing: border-box;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center center;
  overflow: hidden;
}
.web-content-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: -4px 0 40px rgba(79, 79, 79, 0.1), 8px 8px 30px rgba(79, 79, 79, 0.1);
}
@media (hover: none) {
  .web-content-item:hover {
    transform: none;
    box-shadow: none;
  }
  .web-content-item:hover .eye-icon,
  .web-content-item:hover p.eye-icon {
    opacity: 0;
  }
}

.web-content-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.web-content-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.web-content-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 4px 4px 20px rgba(189, 189, 189, 0.2);
  transition: filter 0.3s ease;
  z-index: 1;
}
.web-content-item:hover .web-content-img .web-img {
  filter: blur(2px);
  transition: filter 0.4s ease;
}
.web-content-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(216, 222, 248, 0.6), rgba(200, 180, 255, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(1.5px);
}
.web-content-item:hover .web-content-img::after {
  opacity: 1;
}

.web-content .eye-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  z-index: 3;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}
.web-content-item:hover .eye-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.web-content p.eye-icon {
  position: absolute;
  top: 45%;
  left: 53%;
  transform: translate(-50%, -50%);
  color: var(--gray2, #4f4f4f);
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.368px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.web-content-item:hover p.eye-icon {
  animation: upDown 1.4s ease-in-out 0.1s infinite alternate;
}
@keyframes upDown {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -53%);
  }
}

.web-content-desc {
  display: flex;
  padding: 0px 24px 24px 30px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .desc {
    height: auto;
  }
}
.desc p,
.desc span {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray1, #121212);
  letter-spacing: -0.5px;
}
.desc span {
  font-size: 16px;
  color: var(--gray2, #4f4f4f);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  white-space: normal;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 16px;
  box-sizing: border-box;
  width: 100%;
}
.tag-list li {
  padding: 6px 14px;
  background: var(--gray5, #fdfdfd);
  border-radius: 10px;
  border: 0.5px solid var(--gra1, #d8def8);
  font-size: 15px;
  color: var(--gray1, #121212);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
}

.link {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0px;
  align-items: center;
  gap: 12px;
}
.link a {
  white-space: normal;
  font-size: 16px;
}
@media (max-width: 480px) {
  .link {
    flex-direction: column;
    align-items: flex-start;
  }
}

.web .tool-list {
  width: 100%;
}

/* web end 
=================================================================================*/

/* app 
=================================================================================*/
.app {
  background: linear-gradient(180deg, #faf3f0 0%, #fff 100%);
}
.app-tag-list {
  display: flex;
  gap: 8px;
}
.app-tag-list li {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 20px;
  background: var(--gray4, #f2f2f2);
  box-shadow: 4px 4px 20px 0px rgba(189, 189, 189, 0.2);
}
.app-left-desc-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-left-desc-txt span {
  color: var(--gray2);
}
.app-left-img {
  position: relative;
  width: 100%;
  height: 65%;
}
.app-left-img span {
  color: var(--gray2);
}
.app-left-img img {
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
}
.app-right,
.scroll-container {
  position: relative;
  height: 100%;
  /* overflow-y: scroll; */
}
.app-main-img,
.app-sub-img,
.scroll-1,
.scroll-2 {
  width: 22vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  /* scrollbar-width: none; */
  /* -ms-overflow-style: none; */
}
.scroll-1::-webkit-scrollbar .scroll-2::-webkit-scrollbar {
  /* display: none; */
}
.app-main-img img,
.app-sub-img img,
.scroll-1 img,
.scroll-2 img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  /* animation: autoScrollUp 40s linear infinite; */
  animation-play-state: running;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.app-main-img:hover img,
.app-sub-img:hover img,
.scroll-1:hover img,
.scroll-2:hover img {
  animation-play-state: paused;
}

/* app end
=================================================================================*/

/* poster 
=================================================================================*/
.poster-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 17vh 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: linear-gradient(180deg, #fff 0%, #d8def8 49.04%, #ecd6e2 100%), #fff;
  box-sizing: border-box;
}
.swiperPoster {
  position: relative;
  height: 100%;
  max-width: 1800px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.swiperPoster .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
  cursor: pointer;
}
.swiperPoster .swiper-slide img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}
.swiperPoster .swiper-slide p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
}
.swiperPoster .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.8);
  opacity: 0.4;
  filter: blur(2px);
}
.swiperPoster .swiper-slide.swiper-slide-active {
  transform: scale(0.9);
  opacity: 1;
  filter: none;
  z-index: 1;
}

/* 커스텀 버튼 */
.swiper-btn {
  position: relative;
  display: flex;
  gap: 80px;
  z-index: 20;
}
.custom-prev img,
.custom-next img {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-prev img:hover {
  transform: scale(1.1);
}
.custom-next img:hover {
  transform: scale(1.1);
}

/* poster end 
=================================================================================*/

/* detail 
=================================================================================*/
/* work
====================== */
/* 전체 섹션 */
/* 전체 섹션 */
.detail-page {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(180deg, #ecd6e2 0%, #faf3f0 100%), #fff;
  padding: 17vh 10.42vw 17vh;
}

/* 박스 전체 wrap */
.detail-page-work-wrap {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  /* padding: 0px 20px; */
  padding-top: 3vh;
}

/* 개별 박스 공통 스타일 */
.detail-page-work-1,
.detail-page-work-2 {
  position: relative;
  width: clamp(280px, 35vw, 520px);
  height: clamp(280px, 35vw, 520px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.detail-page-work-1:hover,
.detail-page-work-2:hover {
  transform: scale(1.015);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.detail-page-work-1 img,
.detail-page-work-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 30px;
  filter: blur(2px);
}
.detail-page-work-1:hover img,
.detail-page-work-2:hover img {
  transform: scale(1.05);
  filter: blur(0px);
}
.detail-page-work-1 p,
.detail-page-work-2 p {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-family: Pretendard;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.4px;

  font-size: clamp(16px, 1.2vw, 20px);
  color: #1c1c1c; /* 더 진한 그레이로 강조 */

  z-index: 3;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8); /* 대비 증가 */
}

.detail-page-work-1 p span,
.detail-page-work-2 p span {
  margin-top: 2px;
  font-size: clamp(13px, 1vw, 16px);
  color: #5c5c5c; /* gray2 대체 */
  opacity: 0.8;
}

/* 그라데이션 - 하단만 덮음 */
.gra {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%; /* 높이 증가하여 텍스트 충분히 덮도록 */
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 30px 30px;

  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* 상세페이지 기본 숨김 */
.detail-page-inner.page-inner {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* 클릭 후 나타나도록 하는 클래스 */
.detail-page-inner.active {
  display: flex;
  opacity: 1;
}
/* work end================== */

.detail-page-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.detail-page-left-desc {
}
.detail-page-right {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  display: flex;
}
/* 좌측 이미지: 박스 내부 상단에 위치 */
.detail-page-left-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.detail-page-left-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

/* 우측 스크롤 이미지 영역 */
.detail-page-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;

  /* 스크롤바 숨기기 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.detail-page-right::-webkit-scrollbar {
  display: none;
}

/* 이미지 스크롤 영역 박스 스타일 */
.detail-page-img-1,
.detail-page-img-2 {
  position: relative;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-radius: 30px 30px 0 0;
}

/* 이미지 자체 스타일 */
.detail-page-img-1 img,
.detail-page-img-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* .detail-page-img-1,
.detail-page-img-2 {
  width: 22vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.detail-page-img-1 img,
.detail-page-img-2 img {
  width: 100%;
  display: block;
  height: auto;
}
.detail-page-img-2 img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  animation: autoScrollUp 30s linear infinite;
}
.detail-page-img-1 img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  animation: autoScrollUp 30s linear infinite;
} */
/* detail end 
=================================================================================*/

/* branding 
=================================================================================*/
.branding {
  background: linear-gradient(180deg, #faf3f0 0%, #fff 100%);
}
.branding-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.branding-name p {
  color: var(--gray1, #4f4f4f);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.46px;
}
.branding-name span {
  text-align: center;
}
.branding-left-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.branding-left-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.branding-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.branding-img {
  position: relative;
  width: 75%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 30px 30px 0 0;

  /* 스크롤바 숨기기 */
  -ms-overflow-style: none;
  /* scrollbar-width: none; */
}
.branding-img::-webkit-scrollbar {
  /* display: none; */
}

.branding-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .branding-right {
    display: none;
  }
}
/* branding end 
=================================================================================*/
