.main {
    min-height: 100vh;
    padding: 0 var(--basic-padding);
    overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
    user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* 스무스 스크롤 전역 적용 */
html {
  scroll-behavior: smooth;
}

/* 헤더 높이만큼 오프셋 (섹션이 헤더에 가리지 않게) */
#section-project,
#section-activity,
#section-member {
  scroll-margin-top: var(--header-height);
}

.body {
  overflow-x: hidden;
}

.content-banner {
    height: var(--page-height);
    margin: 0 calc(-1 * var(--basic-padding));
    position: relative;
    overflow: hidden;
}

/* 배경이 하얀 화면으로 자연스럽게 이어지도록 그라데이션 오버레이 */
.content-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.4) 40%, #fff 100%);
    z-index: 1;
    pointer-events: none;
}
  
  .banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}  

/* .floating {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.9;
    background-color: #a3c2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    transition: background-color 0.2s;
}

.floating:hover {
    opacity: 1;
    background-color: #608DFF;
}

.floating p {
    margin: 0;
    color: white;
    font-size: 21px;
} */

.content-banner .banner-04,
.content-banner .banner-02,
.content-banner .banner-03 {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    top: 9%;
    left: 14%;
    width: 33%;
    will-change: transform;
}

.content-banner .banner-04 {
  top: 47%;
  left: 27%;
  width: 70%;
}

.content-banner .banner-02 {
  top: 54%;
  left: 24%;
  width: 65%;
}

.content-banner .banner-03 {
  top: 15%;
  left: 14%;
  width: 80%;
}

.content-banner .banner-01,
.content-banner .banner-06,
.content-banner .banner-12,
.content-banner .banner-13{
    position: absolute;
    pointer-events: none;
    top: 67%;
    left: 60%;
    width: 8%;
    z-index: 0;
}

.content-banner .banner-01 {
  top: 14.5%;
  left: 15.35%;
  width: 28%;
}

.content-banner .banner-06 {
  top: 1%;
  left: 60%;
  width: 30%;
}

.content-banner .banner-12 {
  top: 3%;
  left: 1%;
  width: 16%;
}

.content-banner .banner-13 {
  top: 3%;
  left: 83%;
  width: 16%;
}

.content-about {
    position: relative;
    width: 100%;
    padding: 120px 0 140px;
    overflow: hidden;
    background: #fff;
    margin-top: -1px; /* 그라데이션과 선 없이 맞닿도록 */
}

  .about-inner {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

  .about-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 320px;
}

  /* M — 좌측 */
  .about-item--make {
    justify-content: flex-start;
    padding-left: 6%;
}

  /* S — 우측 */
  .about-item--share {
    justify-content: flex-end;
    padding-right: 6%;
    margin-top: -60px;
}

  /* G — 좌측 */
  .about-item--gather {
    justify-content: flex-start;
    padding-left: 6%;
    margin-top: -60px;
}

  /* ---- 빛번짐 원형 데코 ---- */
  .about-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

  /* M 뒤 — deco-circle-01 (보라) */
  .about-item--make .about-circle {
    width: 500px;
    height: 500px;
    background: url('/image/index/deco-circle-01.png') center / cover no-repeat;
    top: 40%;
    left: 18%;
    transform: translate(-50%, -50%);
}

  /* S 뒤 — deco-circle-02 (노랑) */
  .about-item--share .about-circle {
    width: 750px;
    height: 750px;
    background: url('/image/index/deco-circle-02.png') center / cover no-repeat;
    top: 50%;
    right: 14%;
    left: auto;
    transform: translate(50%, -50%);
}

  /* G 뒤 — deco-circle-03 (파랑) */
  .about-item--gather .about-circle {
    width: 500px;
    height: 500px;
    background: url('/image/index/deco-circle-03.png') center / cover no-repeat;
    top: 50%;
    left: 14%;
    transform: translate(-50%, -50%);
}

  /* ---- 3D 글자 이미지 ---- */
  .about-logo {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

  .about-logo img {
    display: block;
    width: 350px;
    height: auto;
    will-change: transform;
}

/* S — 우측 */
.about-item--share {
    justify-content: flex-end;
    margin-top: 100px;  /* 여기 조정 */
}

/* G — 좌측 */
.about-item--gather {
    justify-content: flex-start;
    margin-top: 100px;  /* 여기 조정 */
}

.about-item--share .about-logo img {
    width: 377px;
}

  /* ---- 텍스트 그룹 ---- */
  .about-text {
    font-family: 'GMarketSans';
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 28px;
    font-size: 350px;
}

.about-item--make .about-text {
    margin-left: -140px;
    margin-top: 150px;
    margin-right: -160px;
    text-align: left;
}

  /* SHARE 아이템은 텍스트가 글자 왼쪽 */
  .about-item--share .about-text {
    margin-left: 0;
    margin-top: 120px;
    margin-right: -160px;
    text-align: right;
}

  .about-item--gather .about-text {
    margin-left: -100px;
    margin-top: 150px;
    margin-right: 0px;
    text-align: left;
}

  .about-text .word-en {
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #747474;
    line-height: 1;
}

  .about-text .word-ko {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #747474;
    margin-left: 5px;;
}

.content-desc {
  text-align: center;
  margin-top: 120px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-desc.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.content-desc.animate-in .content-desc-line {
  opacity: 1;
  transform: translateY(0);
}

.content-desc h2 {
  font-family: 'GMarketSans';
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  color: #424242;
  margin-bottom: 40px;
}

.content-desc .content-desc-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-desc h2 .content-desc-line + .content-desc-line {
  margin-top: 0.25em;
}

.content-desc p .content-desc-line {
  margin-bottom: 0.35em;
}

.content-desc p .content-desc-line:last-child {
  margin-bottom: 0;
}

.content-desc h2 .content-desc-line:nth-child(1) { transition-delay: 0.1s; }
.content-desc h2 .content-desc-line:nth-child(2) { transition-delay: 0.25s; }
.content-desc p .content-desc-line:nth-child(1) { transition-delay: 0.4s; }
.content-desc p .content-desc-line:nth-child(2) { transition-delay: 0.55s; }
.content-desc p .content-desc-line:nth-child(3) { transition-delay: 0.7s; }

.content-desc p {
  font-family: 'Pretendard';
  font-size: 20px;
  line-height: 1.9;
  color: #9e9e9e;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-weight: inherit; 

}

.highlight::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 6px;
  height: 0.55em;
  background: #93C2FF;
  z-index: -1;
  border-radius: 2px;

  width: 0;
  transition: width 1.2s ease;
}

.highlight.active::after {
  width: calc(100% + 4px); /* ✅ 왼쪽 -2px + 오른쪽 -2px 보정 */
}

.project-title {
  margin-top: 300px;
  font-family: 'GMarketSans';
  font-weight: 500;
  font-size: 40px;
  color: #608DFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-section {
  overflow: hidden;
  background-image: url('/image/activity/Group\ 483.png'); /* ✅ 실제 경로로 변경 */
  background-position: center 75%;
  background-repeat: no-repeat;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 9.5vh;
  margin-bottom: 25vh;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: center;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none !important;
}

.img-main {
  width: 2100px;
  height: 520px;
  object-fit: contain;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.img-side {
  position: absolute;
  width: 560px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;

  top: 50%;
  transform: translateY(-50%);
  opacity: 0;

  transition: opacity 0.35s ease;
  pointer-events: none;
}


.swiper-slide-active {
  z-index: 3;
}

.swiper-slide-active .img-main {
  opacity: 1;
}

.swiper-slide-active .img-side {
  opacity: 0;
}

.swiper-slide-prev,
.swiper-slide-next {
  z-index: 1;
}

.swiper-slide-prev .img-main,
.swiper-slide-next .img-main {
  opacity: 0;
}

.swiper-slide-prev .img-side,
.swiper-slide-next .img-side {
  opacity: 0.55;
}

.swiper-slide-prev .img-side {
  left: -520px;   /* 왼쪽 슬라이드 → 왼쪽에 표시 */
}

.swiper-slide-next .img-side {
  left: 520px;    /* 오른쪽 슬라이드 → 오른쪽에 표시 (right 대신 left 사용) */
}

.swiper-content {
  font-family: 'GMarketSans';
  margin-top: 26px;
  text-align: center;
  position: static;
}

.swiper-slide .slide-grade,
.swiper-slide .slide-title {
  display: none;
}

.swiper-slide-active .slide-grade,
.swiper-slide-active .slide-title {
  display: block;
}

.swiper-slide:not(.swiper-slide-active) .slide-content {
  display: none;
}


/* 텍스트 스타일 */
.slide-grade {
  color: #b0b0b0;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 14px;
}

.slide-title {
  color: #424242;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 16px;
}

.slide-content {
  color: #b0b0b0;
  font-weight: 300;
  font-size: 18px;
  white-space: nowrap;      /* 한 줄 유지 */
  line-height: 1.6;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto !important;
  bottom: 44px !important;
  width: 19px;
  height: 45px;
  color: #608DFF;
  z-index: 5;
}

.swiper-button-prev {
  left: calc(50% - 330px) !important;
}

.swiper-button-next {
  right: calc(50% - 330px) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 22px !important;
  font-weight: 1;
}

.activity {
  width: 100%;
  padding: 60px 0 80px;
  background: #fff;
  transform: scale(0.85);
  transform-origin: top center;
  opacity: 0;
  transform: scale(0.85) translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.activity.animate-in {
  opacity: 1;
  transform: scale(0.85) translateY(0);
}

.activity_wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 30px;
}

.activity_left{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.activity_label{
  font-family: 'GMarketSans';
  font-size: 48px;
  font-weight: 500;
  color: #608DFF;
  margin-bottom: 26px;
}

.activity_year{
  font-family: 'GMarketSans';
  font-size: 24px;
  font-weight: 400;
  color: #424242;
  margin-bottom: 10px;
}

.activity_titleRow{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 14px;
}

.activity_title{
  font-family: 'GMarketSans';
  font-size: 64px;
  font-weight: 400;
  color: #424242;
  letter-spacing: 0.02em;
  margin: 0;
}

.activity_line{
  flex: 1;
  height: 3px;
  background: #000000;
  opacity: 0.55;
  transform: translateY(6px);
}

.activity_sub {
  font-family: 'Pretendard';
  font-size: 21px;
  font-weight: 300;
  color: #9e9e9e;
  margin-bottom: 30px;
  margin-top: 30px;
}

.activity_desc {
  font-family: 'Pretendard';
  font-size: 21px;
  font-weight: 300;
  color: #9e9e9e;
}

/* 활동 화살표 클릭 시 전환 애니메이션 */
.activity_title,
.activity_sub,
.activity_desc,
.activity_top img,
.activity_bottom img {
  transition: opacity 0.35s ease;
}

.activity_wrap.activity-changing .activity_title,
.activity_wrap.activity-changing .activity_sub,
.activity_wrap.activity-changing .activity_desc,
.activity_wrap.activity-changing .activity_top img,
.activity_wrap.activity-changing .activity_bottom img {
  opacity: 0;
}

.activity_top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* ✅ 위에 붙게 */
}

.activity_top img {
  width: 100%;
  height: 339px;
  object-fit: cover;
  margin-right: 0;
  margin-top: 50px;
}

.activity_bottom {
  grid-column: 1 / 3;      /* ✅ 전체 너비 */
  grid-row: 2 / 3;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 80px;
  gap: 16px;
  align-items: stretch;
}

.activity_bottom img {
  width: 100%;
  height: 339px;
  object-fit: cover;
  margin-left: 0;
  margin-top: 50px;
}

.activity_next {
  border: none;
  background: #608DFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 339px;
  margin-top: 50px;
}

.activity_arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/* ===== SECTION ===== */
.award-section{
  width: 100%;
  background: #fff;
  padding: 60px 0 80px;
  transform: scale(0.85);
  transform-origin: top center;
}

.award-wrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* ===== LEFT ===== */
.award-left{
  padding-top: 30px;
  margin-left: -30px;
}

.reward-title{
  font-family: 'GMarketSans';
  font-weight: 400;
  font-size: 48px;
  color: #608DFF;
  margin-top: 20px;
  margin-bottom: 80px;
  left: -100px;
}

.reward-sub{
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 300;
  color: #c6c6c6;
  margin-top: 50px;
  margin-bottom: 100px;
}

/* ✅ 진짜 스크롤 박스 */
.reward-scrollArea{
  transform: scale(1.35);
  height: 500px;     
  width: 100%;
  overflow-y: auto;
  padding-right: 12px;   
  overscroll-behavior: contain;
  margin-left: 130px;
}

/* ===== TABLE ===== */
.reward-list{
  width: 100%;
  border-collapse: collapse;
  font-family: "Pretendard";
}

.reward-list th,
.reward-list td{
  padding: 26px 0;
  text-align: left;
  border-bottom: 1px solid #efefef;
}

.reward-list th{
  font-size: 14px;
  font-weight: 600;
  color: #bdbdbd;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.reward-list td{
  font-size: 15px;
  color: #424242;
}

.reward-list td a{
  color: #608DFF;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}

/* ===== RIGHT ===== */
.award-right{
  position: relative;
  min-height: 540px;
}

.award-trophy{
  transform: scale(1);
  position: absolute;
  right: -265px;
  width: 650px;
  height: 850px;
  top: 100px;
  pointer-events: none;
  user-select: none;
}

/* ===== 스크롤바 스타일 (크롬/엣지) ===== */
.reward-scrollArea::-webkit-scrollbar{
  width: 1px;
}

.reward-scrollArea::-webkit-scrollbar-track{
  background: transparent;
}

.reward-scrollArea::-webkit-scrollbar-thumb{
  background: #d6d6d6;
  border-radius: 999px;
}

/* 파이어폭스 */
.reward-scrollArea{
  scrollbar-width: thin;
  scrollbar-color: #d6d6d6 transparent;
}

:root{
  --blue:#608DFF;
}

.global-title{
  margin-top: 170px;
  font-family:'GMarketSans';
  font-size:40px;
  color:#608DFF;
  text-align:center;
  margin-bottom:120px;
}

.global-row{
  position:relative;
  z-index:5;
  max-width: 1200px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:90px;
}

.global-row {
  max-width: 1200px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:90px;
  z-index: 3;
}

/* 카드 */
.global-card{
  width:320px;
  height:320px;
  perspective:1000px;
}

/* 원 */
.global-circle{
  width:100%;
  height:100%;
  border-radius:50%;
  border:2px solid var(--blue);
  background:#fff;
  position:relative;
  overflow:hidden;
  transition:.35s;
}

/* 앞면 (기본 흰 원) */
.circle-front{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'GMarketSans';
  font-size:24px;
  color:var(--blue);
  transition:.3s;
}

/* 뒷면 (파란 내용) */
.circle-back{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  color:#fff;
  text-align:center;

  opacity:0;
  transform:scale(.9);
  transition:.3s;
}

/* hover 시 원 색 변경 */
.global-circle:hover{
  background:var(--blue);
  border-color:var(--blue);
}

/* hover 시 앞면 숨김 */
.global-circle:hover .circle-front{
  opacity:0;
}

/* hover 시 내용 등장 */
.global-circle:hover .circle-back{
  opacity:1;
  transform:scale(1);
}

/* 텍스트 */
.back-small{
  font-size:14px;
  margin-bottom:10px;
}

.back-country{
  font-size:26px;
  font-weight:500;
  margin-bottom:16px;
}

.back-names{
  margin-top: 25px;
  font-size:14px;
  line-height:1.8;
}

:root{
  --cardBorder: rgba(96,141,255,.75);
}

.member{
  width: 100%;
  background: #fff;
  padding: 110px 0 120px;
  overflow: hidden;
  transform-origin: top center;
  margin-bottom: -100px;
}

.member-title{
  font-family: 'GMarketSans';
  font-size: 40px;
  font-weight: 500;
  color: #608DFF;
  margin-bottom: 26px;
  margin-left: 225px;
  margin-top: 150px;
}

/* 마퀴(가로 슬라이드) 컨테이너 */
.member-marquee{
  width: 100%;
  overflow: hidden;
}

/* 1줄/2줄 간격 */
.member-marquee--row1{ margin-bottom: 28px; }
.member-marquee--row2{ margin-bottom: 0; }

/* 실제로 움직이는 트랙 */
.member-track{
  display: flex;
  gap: 13px;
  width: max-content;
  will-change: transform;
  animation: memberScroll 28s linear infinite;
}

/* 2번째 줄은 반대 방향 + 약간 느리게 (스크린샷처럼 자연스러움) */
.member-marquee--row2 .member-track{
  animation: memberScrollReverse 34s linear infinite;
}

/* hover하면 멈춤(원하면 삭제 가능) */
.member-marquee:hover .member-track{
  animation-play-state: paused;
}

.member-15th{
  width: 400px;                 /* 약 70% */
  min-height: 184px;            /* 약 70% */
  height: auto; 
  border: 1.6px solid var(--cardBorder);
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: 142px 1fr; /* 사진도 70%로 축소 */
  column-gap: 22px;             /* 32px * 0.7 ≃ 22px */
  align-items: center;
  padding: 17px 20px;           /* 24x28 → 약 17x20 */
  box-shadow: 0 8px 16px rgba(0,0,0,.06); 
}

.member-16th{
  width: 400px;
  min-height: 184px;   /* 약 70% */
  height: auto; 
  border: 1.6px solid var(--cardBorder);
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: 142px 1fr; /* 사진도 축소 */
  column-gap: 22px;
  align-items: center;
  padding: 17px 20px;           /* 카드 안 여백 */
  margin-bottom: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,.06); 
}

.member-photo{
  width: 142px;   /* 204px × 0.7 */
  height: 142px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info{
  padding-left: 16px;
  padding-bottom: 16px;
}

.member-role{
  font-family: 'Pretendard';
  font-size: 13px; /* 약 70% */
  color: #9e9e9e;
  margin-bottom: 4px;
}

.member-name{
  font-family: 'Pretendard';
  font-size: 17px;    /* 약 70% */
  font-weight: 500;
  color: #424242;
  margin-bottom: 25px;
}

.member-desc{
  font-family: 'Pretendard';
  font-size: 16px; /* 약 70% */
  color: #424242;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* 너무 길면 2줄까지만 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-grade {
  font-family: 'Pretendard';
  font-size: 20px;
  color: #424242;
  margin-top: 50px;
  margin-bottom: 30px;
  margin-left: 225px;
}

@keyframes memberScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--loopWidth))); }
}

@keyframes memberScrollReverse{
  from { transform: translateX(calc(-1 * var(--loopWidth))); }
  to   { transform: translateX(0); }
}

.member-15th:hover,
.member-16th:hover {
  background: #608DFF;
  box-shadow: 0 10px 22px rgba(96,141,255,.18);
}

.member-15th:hover .member-name,
.member-16th:hover .member-name{
  color:#fff;
}

.member-15th:hover .member-role,
.member-16th:hover .member-role{
  color:#fff;
}

.member-15th:hover .member-desc,
.member-16th:hover .member-desc{
  color:#fff;
}