/* 클래스 메인 스타일 import - 최우선 적용 */
@import url('./class-main.css');

/* 메인 홈페이지 스타일 - Figma 디자인 정확히 일치 */

.default-only {
  display: block !important;
}

.mobile-only {
  display: none !important;
}

/* ===== 홈 조인어스 섹션 스타일 ===== */
.student-new .home-joinus {
  width: 100%;
  padding: 0 1px;
  /* 양옆 1픽셀 패딩 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.student-new .joinus-container {
  max-width: 1180px;
  /* 최대 1180px로 고정 */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.student-new .joinus-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* ===== 배너 슬라이더 스타일 ===== */
.student-new .hero-slider {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin-top: 16px;
}

.student-new .hero-slider.swiper {
  position: relative;
  width: 100%;
  height: 500px;
}

.student-new .banner-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.student-new .banner-wrap.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.student-new .banner-content-wrap {
  position: absolute;
  bottom: 36px;
  left: 86px;
  width: calc(100% - 86px);
  height: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* active 슬라이드의 content-wrap만 표시 */
.student-new .banner-slide.active .banner-content-wrap {
  opacity: 1;
  visibility: visible;
}

.student-new .banner-content-wrap .banner-tag {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  margin: 0px;
}

.student-new .banner-content-wrap .banner-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  color: #ffffff;
  margin: 0px;
}

.student-new .banner-content-wrap .banner-button {
  width: 100px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 400px;
  border: none;
  white-space: nowrap;
  color: #ffffff;
  margin-top: 12px;
}

.student-new .banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.student-new .banner-slide.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.student-new .banner-content-wrap .banner-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 32px;
  gap: 10px;
  width: 118px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 400px;
  border: none;
  white-space: nowrap;
  color: #ffffff;
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  flex: none;
  order: 0;
  flex-grow: 0;
  cursor: pointer;
}

/* 배너 페이지네이션 */
.student-new .banner-pagination {
  position: initial;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
  margin-top: 24px;
}

/* 페이지네이션 버튼 */
.student-new .banner-pagination .banner-nav {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.student-new .banner-pagination .banner-nav img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.student-new .banner-pagination .banner-nav:hover {
  opacity: 0.7;
}

/* 페이지네이션 */
.student-new .banner-pagination {
  position: initial;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
  margin-top: 24px;
}

.student-new .current-slide {
  color: #ffffff;
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  min-width: 20px;
  text-align: center;
}

.student-new .total-slides {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

/* 페이지네이션 버튼 스타일 개선 */
.student-new .banner-nav {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.student-new .banner-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.student-new .banner-nav:active {
  transform: scale(0.95);
}

.student-new .banner-nav img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.student-new .banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.student-new .banner-slide.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Swiper 페이드 효과 사용 */

/* 마스터과정 카드 링크 스타일 */
.student-new .master-process-link {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.student-new .master-process-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  text-align: center;
}

.student-new .master-process-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.student-new .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: 100%;
  max-height: 100%;
  z-index: 2;
  transform: translateY(0px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* active 슬라이드의 이미지만 표시 */
.student-new .banner-slide.active .banner-image {
  opacity: 1;
  visibility: visible;
}

.student-new .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.student-new .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
  z-index: 2;
}

.student-new .banner-text {
  text-align: center;
  max-width: 600px;
  z-index: 3;
}

.student-new .banner-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  color: #802fff;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.student-new .banner-subtitle {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.student-new .banner-cta {
  /* Frame 150 - 바로가기 버튼 */
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 32px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 400px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: none;
}

.student-new .banner-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* 네비게이션 버튼 */
.student-new .banner-nav {
  position: initial;
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.student-new .banner-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.student-new .banner-nav-prev {
  left: 20px;
}

.student-new .banner-nav-next {
  right: 20px;
}

/* 페이지네이션 */
.student-new .current-slide {
  color: #ffffff;
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  min-width: 7px;
  text-align: center;
}

.student-new .total-slides {
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
}

/* 페이지네이션 버튼 스타일 개선 */
.student-new .banner-nav {
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.4;
}

.student-new .banner-nav:hover {
  opacity: 1;
  transform: scale(1.1);
}

.student-new .banner-nav:active {
  transform: scale(0.95);
}

.student-new .banner-nav img {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}

/* 인디케이터 - 하단 중앙에 배치 */
.student-new .banner-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.student-new .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.student-new .indicator.active {
  background: #ffffff;
  transform: scale(1.2);
}

.student-new .indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* 마스터과정 진행과정 스타일 */
.student-new .process-flow-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.student-new .process-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.student-new .process-flow-item .image-wrap {
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-flow-item .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.student-new .process-flow-item .description-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-flow-item .description-wrap .process-count {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #802fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}

.process-flow-item .description-wrap .process-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
}

/* 애니메이션 제거 - 슬라이드 효과만 사용 */

/* 반응형 디자인 */
@media (max-width: 768px) {
  .default-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .student-new .hero-slider {
    height: 300px;
  }

  .student-new .banner-content {
    padding: 20px;
  }

  .student-new .banner-title {
    font-size: 20px;
  }

  .student-new .banner-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .student-new .banner-cta {
    padding: 8px 24px;
    font-size: 14px;
    width: 100px;
    height: 36px;
  }

  .student-new .banner-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .student-new .banner-nav-prev {
    left: 10px;
  }

  .student-new .banner-nav-next {
    right: 10px;
  }

  .student-new .banner-pagination {
    bottom: 20px;
    padding: 6px 12px;
    width: 80px;
    height: 20px;
    gap: 8px;
  }

  .student-new .current-slide,
  .student-new .total-slides {
    font-size: 12px;
  }

  .student-new .banner-indicators {
    bottom: 20px;
    right: 20px;
  }

  .student-new .indicator {
    width: 6px;
    height: 6px;
  }

  .student-new .process-flow-container {
    grid-template-columns: repeat(1, 1fr) !important;

    width: 100%;
    height: 100%;

    gap: 30px;

    min-height: max-content;
    overflow: hidden;
  }

  .student-new .process-flow-item {
    gap: 16px;
  }

  .student-new .process-flow-item .image-wrap {
    width: 80px;
    height: 80px;
  }

  .student-new .process-flow-item .description-wrap {
    gap: 12px;
  }

  .student-new .process-flow-item .description-wrap .process-count {
    font-size: 16px;
    width: 20px;
    height: 20px;
  }
}

.student-new .text-center {
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: -0.48px;
}

/* ===== 홈 버튼 섹션 스타일 ===== */
.student-new .home-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding-top: 42px;
  min-height: 126px;
}

.student-new .home-button-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  width: 110px;
}

.student-new .home-button-item:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

.student-new .home-button-item img {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.student-new .home-button-item span {
  color: #fff;
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.48px;
  width: max-content;
}

/* ===== 클래스 섹션 스타일 ===== */
.student-new .home-class {
  padding: 0px;
  margin-top: 102px;
  margin-bottom: 124px;
  position: relative;
}

.student-new .home-class .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px;
  position: relative;
}

.student-new .home-benefits .inner {
  padding: 0px;
}

/* 클래스 타이틀 */
.student-new .class-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  /* 타이틀과 탭 사이 간격 줄이기 */
}

.student-new .class-subtitle {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #802fff;
}

.student-new .class-main-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #ffffff;
}

/* 클래스 탭 네비게이션 - 스티키 포지셔닝 추가 */
.student-new .class-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 56px;
  position: sticky;
  top: 132px;
  /* 헤더 바로 아래 붙이기 */
  background: #000;
  padding: 20px 0;
  /* 고정 패딩 */
  z-index: 100;
  width: 100%;
  margin-left: 0;
  left: 0;
  right: 0;
  margin-bottom: 40px;
}

.student-new .class-tab-item {
  font-family: 'Pretendard' !important;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #666666;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0px;
  white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

.student-new .class-tab-item.active {
  color: #ffffff;
}

.student-new .class-tab-item:hover {
  color: #ffffff;
}

/* 클래스 카드 섹션 */
.student-new .class-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

/* 강의 없을 때 빈 상태 메시지 */
.class-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 243px;
  min-height: 243px;
}

.class-empty-content {
  text-align: center;
}

.class-empty-category {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.class-empty-message {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.student-new .class-card {
  position: relative;
  width: 377px;
  height: 243px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.student-new .class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.student-new .class-card:hover .class-card-image img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.student-new .class-card:hover .class-card-text {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.student-new .class-card:hover .class-card-overlay {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* 클래스 카드 배경 그라데이션 */
.student-new .class-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.student-new .purple-gradient {
  background: #c195f0;
}

.student-new .pink-gradient {
  background: #ffa8f6;
}

.student-new .blue-gradient {
  background: #69a3ff;
}

/* 클래스 카드 내용 */
.student-new .class-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  height: 100%;
}

.student-new .class-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
  position: relative;
  transition: transform 0.3s ease;
}

.student-new .class-card-category {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
}

.student-new .class-card-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.student-new .class-card-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.student-new .class-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 클래스 카드 오버레이 */
.student-new .class-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 53px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.03em;
  transition: opacity 0.3s ease;
}

/* ===== 크리에이터 섹션 스타일 ===== */
.student-new .home-creator {
  background: #000;
  padding: 0px;
  padding-bottom: 0px;
  margin-bottom: 48px;
}

.student-new .creator-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.student-new .creator-content {
  text-align: center;
}

.student-new .creator-subtitle {
  color: #802fff;
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.72px;
  margin-bottom: 4px;
}

.student-new .creator-description {
  color: #ffffff;
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 160%;
  letter-spacing: -0.54px;
  margin: 0;
}

/* ===== 마스터 섹션 스타일 ===== */
.student-new .home-master {
  padding: 0 40px;
  margin-bottom: 80px;
}

.student-new .master-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 170px;
  margin: 0 auto;
  background: #121212;
  border-radius: 20px;
  overflow: hidden;
}

.student-new .master-gradient-bg {
  position: absolute;
  width: 528px;
  height: 216px;
  left: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.student-new .master-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 63px;
  gap: 90px;
  height: 100%;
}

.student-new .master-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.student-new .stat-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.student-new .master-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.student-new .master-stats .stat-number {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 140%;
  color: #ffffff;
}

.student-new .master-stats .stat-number span {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 140%;
  color: #ffffff;
}

.student-new .master-stats .stat-label {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.6);
}

.student-new .master-divider {
  width: 1px;
  height: 86px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.student-new .master-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: auto;
  min-width: fit-content;
}

.student-new .cta-text {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #ffffff;
  width: 100%;
}

.student-new .cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  width: auto;
  min-width: fit-content;
  height: 48px;
  background: #802fff;
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.student-new .cta-button:hover {
  background: #6b2cd9;
  transform: translateY(-2px);
}

.student-new .cta-button svg {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}

/* ===== 모집 배너 스타일 ===== */
.student-new .home-mozip {
  padding: 40px 0;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}

.student-new .mozip-banner-container {
  position: relative;
  display: inline-block;
  margin: 40px 0;
}

.student-new .mozip-banner {
  display: block;
  max-width: 100%;
  height: auto;
}

.student-new .apply-button-overlay {
  position: absolute;
  bottom: 32px;
  left: 56px;
  width: 145px;
  height: 40px;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.student-new .apply-button-overlay:hover {
  background: rgba(255, 255, 255, 0.2);
}

.student-new .apply-button-overlay:focus {
  outline: 2px solid #802fff;
  outline-offset: 2px;
}

/* ===== 히어로 배너 섹션 ===== */
.student-new .home-hero-banner {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.student-new .banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.student-new .banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.student-new .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.student-new .banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.student-new .banner-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.student-new .banner-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.student-new .banner-text {
  flex: 1;
  max-width: 600px;
}

.student-new .banner-tag {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.student-new .banner-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1.44px;
  margin-bottom: 24px;
}

.student-new .banner-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.54px;
  margin-bottom: 32px;
}

.student-new .banner-button {
  display: inline-flex;
  padding: 16px 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.48px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.student-new .banner-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.student-new .banner-buttons {
  display: flex;
  gap: 16px;
}

.student-new .banner-button.primary {
  background: #802fff;
  border-color: #802fff;
}

.student-new .banner-button.primary:hover {
  background: #6b26d9;
  border-color: #6b26d9;
}

.student-new .banner-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.student-new .banner-image {
  flex: 1;
  position: relative;
}

.student-new .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.student-new .divider-vertical {
  display: flex;
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

/* 기본 히어로 그래픽 (배너 이미지가 없을 때) */
.student-new .default-hero-graphic {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-new .hero-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(128, 47, 255, 0.3) 0%,
    rgba(173, 115, 236, 0.2) 100%
  );
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.student-new .hero-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px
  );
  background-size: 40px 40px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* 배너 네비게이션 */
.student-new .banner-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 3;
}

.student-new .banner-nav-prev,
.student-new .banner-nav-next {
  width: 20px;
  height: 20px;
  border-radius: 50%;

  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  pointer-events: auto !important; /* 버튼은 항상 클릭 가능하도록 */
}

.student-new .banner-nav-prev:hover,
.student-new .banner-nav-next:hover {
  background: transparent;
  border-color: none;
}

.student-new .banner-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
}

.student-new .banner-pagination .separator {
  opacity: 0.5;
}

/* 기본 히어로 배너 스타일 */
.student-new .default-hero {
  background: linear-gradient(135deg, #802fff 0%, #5b1faa 100%);
}

.student-new .default-hero .banner-inner {
  min-height: 640px;
  align-items: center;
}

/* ===== 히어로 섹션 ===== */
.student-new .home-hero {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 0 80px;
  /* 헤더 높이 고려 */
}

.student-new .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.student-new .hero-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(128, 47, 255, 0.9) 0%,
    rgba(91, 31, 170, 0.8) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  position: relative;
}

.student-new .hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(128, 47, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(173, 115, 236, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(91, 31, 170, 0.2) 0%,
      transparent 50%
    );
  mix-blend-mode: screen;
}

.student-new .home-hero .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.student-new .hero-content {
  flex: 1;
  max-width: 600px;
}

.student-new .hero-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.student-new .hero-subtitle {
  color: #a166ff;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.72px;
}

.student-new .hero-main-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.92px;
}

.student-new .hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.54px;
  margin-bottom: 40px;
}

.student-new .hero-buttons {
  display: flex;
  gap: 16px;
}

.student-new .btn-hero-primary {
  display: inline-flex;
  padding: 16px 32px;
  align-items: center;
  justify-content: center;
  border-radius: 400px;
  background: #802fff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.54px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.student-new .btn-hero-primary:hover {
  background: #6b26d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128, 47, 255, 0.4);
}

.student-new .btn-hero-secondary {
  display: inline-flex;
  padding: 16px 32px;
  align-items: center;
  justify-content: center;
  border-radius: 400px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.54px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.student-new .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.student-new .hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.student-new .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== 통계 섹션 ===== */
.student-new .home-stats {
  background: #121212;
  padding: 80px 0;
}

.student-new .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.student-new .stat-item {
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.student-new .stat-number {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.44px;
  margin-bottom: 12px;
}

.student-new .stat-plus,
.student-new .stat-percent {
  color: #802fff;
  font-size: 36px;
  font-weight: 700;
  margin-left: 4px;
}

.student-new .stat-label {
  color: #999;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.54px;
}

/* ===== 수료 혜택 섹션 ===== */
.student-new .home-benefits {
  background: #000;
  padding: 0px;
}

/* 마스터과정 타이틀 */
.student-new .master-title {
  text-align: center;
  margin-bottom: 40px;
}

.student-new .master-subtitle {
  display: block;
  color: #802fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.42px;
  margin-bottom: 4px;
}

.student-new .master-main-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.84px;
}

/* 탭 내비게이션 */
.student-new .master-tabs {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 40px;
}

.student-new .tab-item {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.48px;
  cursor: pointer;
  transition: color 0.4s ease;
  padding: 8px 0;
  position: relative;
}

.student-new .master-tabs .tab-item {
  padding: 0px;
}

.student-new .tab-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.student-new .tab-item.active {
  color: #fff;
}

.student-new .tab-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  animation: fadeInUnderline 0.4s ease;
}

@keyframes fadeInUnderline {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* 탭 콘텐츠 컨테이너 */
.student-new .tab-content-container {
  position: relative;
  min-height: 400px;
}

/* 탭 콘텐츠 */
.student-new .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.student-new .tab-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

/* 마스터 과정 그리드 */
.student-new .master-process-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 마스터 과정 카드 */
.student-new .master-process-card {
  position: relative;
  width: 277px;
  height: 404px;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 마스터 과정 스크롤 컨테이너 부드러운 스크롤 */
.master-process-grid-slider {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.master-process-grid-slider .master-process-card {
  scroll-snap-align: start;
}

.student-new .master-process-card:hover .master-process-bg img {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(128, 47, 255, 0.3);
}

.student-new .master-process-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    132.87deg,
    rgba(255, 255, 255, 0.1) 5.74%,
    rgba(255, 255, 255, 0) 72.98%
  );
  z-index: 1;
}

.student-new .master-process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.student-new .master-process-card:hover .master-process-image {
  transform: scale(1.05);
}

.student-new .master-process-content {
  position: absolute;
  bottom: 32px;
  left: 29px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.student-new .master-process-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  max-width: 226px;
}

.student-new .master-process-subtitle {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #4c4c4c;
  margin: 0;
}

/* 전문 강사진 그리드 */
.student-new .instructors-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 진행 과정 스타일 */
.student-new .process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.student-new .process-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 200px;
}

.student-new .process-number {
  width: 48px;
  height: 48px;
  background: #802fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.student-new .process-content {
  flex: 1;
}

.student-new .process-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.54px;
  margin-bottom: 4px;
}

.student-new .process-description {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.42px;
}

.student-new .process-arrow {
  flex-shrink: 0;
  opacity: 0.5;
  color: #802fff;
  font-size: 24px;
}

/* ===== CTA 섹션 ===== */
.student-new .home-cta {
  position: relative;
  padding: 60px 0;
  background: url('/assets/images/joinus.png') center/cover no-repeat;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.student-new .cta-content {
  position: relative;
  width: 100%;
}

.student-new .cta-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.44px;
  margin-bottom: 16px;
}

.student-new .cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.6px;
  margin-bottom: 40px;
}

.student-new .cta-buttons {
  display: flex;
  justify-content: flex-start;
  padding-left: 120px;
}

.student-new .btn-cta-primary {
  display: inline-flex;
  padding: 12px 40px;
  align-items: center;
  justify-content: center;
  border-radius: 400px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.48px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.student-new .btn-cta-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.student-new .btn-cta-secondary {
  display: inline-flex;
  padding: 16px 40px;
  align-items: center;
  justify-content: center;
  border-radius: 400px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.54px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.student-new .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* 강사 */

.student-new .creator-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.student-new .creator-card {
  /* background: #1A1A1A; */
  position: relative;
  width: 378px;
  height: 564px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.student-new .creator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(128, 47, 255, 0.2);
}

/* 홈 페이지 크리에이터 카드 배경 - 데스크톱 */
.home-creator-card-bg {
  position: absolute;
  bottom: 0;
  width: 378px;
  height: 496px;
  background: #121212;
  border-radius: 20px;
}

.creator-card:hover .home-creator-card-bg,
.creator-card.active .home-creator-card-bg {
  background: #802fff;
  box-shadow: 0 20px 40px rgba(128, 47, 255, 0.3);
}

.student-new .creator-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.student-new .creator-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.student-new .creator-card:hover .creator-card-image img {
  transform: scale(1.05);
}

.student-new .creator-card-info {
  padding: 24px;
}

.student-new .creator-card-name {
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 4px;
}

.student-new .creator-card-title {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 14px;
  color: #802fff;
  margin-bottom: 12px;
}

.student-new .creator-card-desc {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.student-new .creator-card-stats {
  display: flex;
  gap: 16px;
}

.student-new .creator-card-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Pretendard';
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.student-new .creator-load-more {
  text-align: center;
  margin-top: 48px;
}

.student-new .creator-load-more-btn {
  padding: 16px 48px;
  background: transparent;
  border: 1px solid #802fff;
  border-radius: 100px;
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 16px;
  color: #802fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.student-new .creator-load-more-btn:hover {
  background: #802fff;
  color: #ffffff;
}

#creatorContent .creator-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: -164px;
  left: 0;
  right: 0;
  text-align: center;
}

.creator-card-follower {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
}

.creator-card:hover .creator-card-follower {
  color: rgba(255, 255, 255, 0.4);
}

/* 인스타그램 버튼 스타일 */
.creator-instagram-link {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.instagram-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 8px;
  background: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.instagram-btn:hover {
  background: #1a1a1a;
  border-color: #444444;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.instagram-btn span {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #ffffff;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* 기존 소셜 버튼 스타일 (삭제됨) */
.creator-social-buttons {
  display: none;
}

.creator-social-buttons button {
  display: none;
}

.creator-social-buttons button span {
  display: none;
}

.creator-card:hover .creator-social-buttons button {
  display: none;
}

.creator-card-name {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== 반응형 ===== */
@media (max-width: 1200px) {
  .student-new .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .student-new .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .student-new .instructors-slider {
    flex-wrap: wrap;
  }

  .student-new .master-process-grid {
    flex-direction: row !important;
    justify-content: center;
    gap: 20px;
  }

  .student-new .master-process-card {
    width: calc(50% - 12px);
    min-width: 280px;
  }

  .student-new .instructors-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .student-new .instructor-card {
    width: calc(50% - 16px);
    min-width: 300px;
  }

  .student-new .banner-content-wrap {
    left: 40px;
    bottom: auto;
  }

  .student-new .banner-content-wrap .banner-tag {
    font-size: 20px;
  }

  .student-new .banner-content-wrap .banner-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .student-new .home-benefits .inner {
    padding: 0px 20px;
  }

  .student-new .creator-list-container {
    padding: 0px;
  }

  .student-new .home-mozip {
    padding: 20px 0;
    margin: 0 20px;
  }

  .student-new .mozip-banner {
    max-width: 100%;
    height: auto;
  }

  .student-new .home-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  /* ===== 홈 버튼 섹션 스타일 ===== */
  .student-new .home-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 50px;
    margin-top: 20px;
  }

  .student-new .home-button-item {
    width: 100%;
    min-width: 84px;
    height: 94px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .student-new .banner-image {
    width: calc(100% - 40px);
    margin: 0px 20px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 320 / 214;
    /* 320:214 비율 고정 */
    border-radius: 24px;
  }

  .student-new .banner-content-wrap {
    left: 40px;
    padding-top: 0px;
    top: 80px;
    gap: 6px;
  }

  .student-new .banner-content-wrap .banner-button {
    padding: 4px 16px;
    width: 76px;
    height: 26px;
    margin-top: 0px;
    font-size: 13px !important;
  }

  .student-new .banner-content-wrap .banner-pagination {
    margin-top: 14px;
    padding: 0px;
  }

  .student-new .banner-content-wrap .banner-nav {
    transform: translateX(0px);
  }

  .student-new .banner-content-wrap .banner-tag {
    font-size: 16px;
  }

  .student-new .banner-content-wrap .banner-title {
    font-size: 32px;
  }

  .student-new .banner-pagination {
    width: 100%;
  }

  .student-new .home-hero .inner {
    flex-direction: column;
    text-align: center;
  }

  .student-new .hero-main-title {
    font-size: 48px;
  }

  .student-new .hero-subtitle {
    font-size: 20px;
  }

  .student-new .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .student-new .btn-hero-primary,
  .student-new .btn-hero-secondary {
    width: 100%;
  }

  .student-new .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .student-new .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .student-new .benefit-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .student-new .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
  }

  .student-new .benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .student-new .benefit-title {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .student-new .benefit-description {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.8;
  }

  .student-new .instructor-card {
    width: 100%;
    max-width: 380px;
  }

  .student-new .instructor-card.featured {
    transform: scale(1);
  }

  .student-new .process-flow {
    flex-direction: column;
    align-items: flex-start;
  }

  .student-new .process-arrow {
    transform: rotate(90deg);
    margin: 16px 0;
  }

  .student-new .cta-title {
    font-size: 36px;
  }

  .student-new .cta-buttons {
    justify-content: center;
    padding-left: 0;
  }

  .student-new .btn-cta-primary,
  .student-new .btn-cta-secondary {
    width: auto;
  }

  /* 탭 네비게이션 모바일 */
  .student-new .master-tabs {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .student-new .tab-item {
    font-size: 14px;
    padding: 6px 0;
  }

  .student-new .tab-item:hover {
    transform: translateY(-1px);
  }

  .student-new .tab-item.active {
    transform: translateY(-1px);
  }

  /* 마스터 과정 카드 모바일 */
  .student-new .master-process-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
  }

  .student-new .master-process-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 555 / 808;
    height: auto;
  }

  .student-new .master-process-title {
    font-size: 24px;
  }

  /* 강사 카드 모바일 */
  .student-new .instructors-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .student-new .instructor-card {
    width: 100%;
    max-width: 350px;
    height: 420px;
  }

  .student-new .instructor-card.featured {
    transform: scale(1);
  }

  /* 통계 배너 모바일 */
  .student-new .stats-content {
    max-width: 1180px;
    height: 170px;
    flex-direction: column;
    gap: 30px;
    padding: 0px;
    text-align: center;
  }

  .student-new .stats-items {
    flex-direction: column;
    gap: 20px;
  }

  .student-new .stat-banner-item {
    text-align: center;
  }

  .student-new .stat-banner-number {
    font-size: 36px;
  }

  .student-new .stat-banner-label {
    font-size: 12px;
  }

  .student-new .creator-description {
    font-size: 18px;
    letter-spacing: -0.6px;
  }

  .student-new .creator-card-name {
    margin-bottom: 0px;
  }

  .creator-card-follower {
    font-size: 14px;
  }

  .student-new .home-creator {
    margin-bottom: 12px;
  }

  .creator-social-buttons {
    margin-top: 6px;
  }

  #creatorContent .creator-content {
    gap: 4px;
  }

  .student-new .creator-card:nth-child(1) .creator-image img {
    left: 50% !important;
    top: 6px !important;
  }
  /* 
  .student-new .creator-card:nth-child(2) .creator-image img {
    width: 155px !important;
    height: 232px !important;
  }

  .student-new .creator-card:nth-child(3) .creator-image img {
    width: 165px !important;
    height: 250px !important;
    top: -33px !important;
  } */

  .student-new .home-joinus-inquiry {
    margin-top: 8px;
  }

  .student-new .joinus-inquiry-container {
    bottom: 22px;
  }

  .student-new .joinus-inquiry-container button.joinus-inquiry-button {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .student-new .home-mozip {
    padding: 15px 0;
    margin: 0 15px;
  }

  .student-new .mozip-banner {
    width: 100%;
    height: auto;
  }

  .student-new .apply-button-overlay {
    bottom: 20px;
    left: 30px;
    width: 120px;
    height: 35px;
  }

  /* 탭 네비게이션 모바일 */
  .student-new .master-tabs {
    gap: 16px;
    margin-bottom: 20px;
  }

  .student-new .tab-item {
    font-size: 13px;
    padding: 4px 0;
  }

  .student-new .tab-item:hover {
    transform: translateY(-1px);
  }

  .student-new .tab-item.active {
    transform: translateY(-1px);
  }

  .master-process-grid-slider {
    gap: 12px !important;
  }

  /* 마스터 과정 카드 모바일 */
  .student-new .master-process-card {
    aspect-ratio: 555 / 808;
    height: 300px;
    width: auto !important;
    object-fit: contain;
    min-width: initial !important;
    max-width: initial !important;
    min-height: initial !important;
    max-height: initial !important;
    flex: auto !important;
  }

  .student-new .master-process-title {
    font-size: 20px;
    max-width: 200px;
  }

  .student-new .master-process-content {
    bottom: 20px;
    left: 20px;
  }

  .master-process-pagination {
    margin-top: 16px !important;
    gap: 4px !important;
  }

  .master-process-pagination span:first-child {
    width: 40px !important;
    height: 6px !important;
    /* 모바일 > 마스터 과정 페이지네이션 오류 수정 */
    border-radius: 100px !important;
  }

  .master-process-pagination span:not(:first-child) {
    width: 6px !important;
    height: 6px !important;
  }

  .student-new .tab-content-container {
    height: auto !important;
    min-height: initial !important;
    margin-bottom: 40px;
  }

  /* 강사 카드 모바일 */
  .student-new .instructor-card {
    height: 380px;
  }

  .student-new .instructor-name {
    font-size: 24px;
  }

  .student-new .instructor-info {
    padding: 20px;
  }

  /* 통계 배너 모바일 */
  .student-new .stats-content {
    padding: 20px 15px;
  }

  .student-new .stat-banner-number {
    font-size: 28px;
  }

  .student-new .stat-banner-label {
    font-size: 11px;
  }

  .student-new .btn-master-inquiry {
    padding: 10px 24px;
    font-size: 12px;
  }

  .student-new .banner-content-wrap {
    top: 44px;
    left: 40px;
  }

  .student-new .banner-content-wrap .banner-tag {
    font-size: 14px;
  }

  .student-new .divider-vertical {
    display: none;
  }

  .student-new .banner-content-wrap .banner-title {
    font-size: 18px !important;
  }

  .student-new .home-button-item img {
    width: 64px;
    height: 64px;
  }

  .student-new .home-button-item span {
    white-space: nowrap;
    font-size: 13px;
  }

  .student-new .home-buttons {
    gap: 12px;
  }

  .student-new .home-class {
    padding: 30px 0px;
    margin-bottom: 0px;
    margin-top: 30px;
    padding: 0px;
  }

  .student-new .class-subtitle,
  .student-new .master-subtitle,
  .student-new .creator-subtitle {
    font-size: 12px;
  }

  .student-new .master-title {
    margin-bottom: 30px;
  }

  .student-new .class-tab-item {
    font-family: 'Pretendard' !important;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.03em;
  }

  .student-new .home-class .inner {
    padding: 0px;
  }

  .student-new .class-title {
    margin-bottom: 20px;
  }

  .student-new .class-card {
    width: 280px;
    min-width: 280px;
    height: 180px;
  }

  .student-new .class-cards {
    width: calc(100% - 20px);
    justify-content: flex-start;
    overflow-x: auto;
    margin-left: 20px;
    gap: 12px;
  }

  .student-new .class-cards,
  .student-new .class-tabs {
    -ms-overflow-style: none;
  }

  .student-new .class-cards::-webkit-scrollbar,
  .student-new .class-tabs::-webkit-scrollbar {
    display: none;
  }

  /* 모바일에서 스티키 헤더 조정 */
  .student-new .class-tabs {
    top: 60px;
    /* 모바일 헤더 높이 */
    padding: 0px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin-bottom: 20px;
    margin-left: 20px;
    justify-content: flex-start;
    padding-right: 24px;
  }

  .student-new .class-tabs .class-tab-item {
    white-space: nowrap;
  }

  /* 모바일에서 빈 상태 메시지 높이 조정 - 카드와 동일한 비율 유지 */
  .class-empty-state {
    height: auto;
    min-height: auto;
    aspect-ratio: 377 / 243;
    /* 데스크톱 카드 비율과 동일 */
  }

  .class-empty-category {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .class-empty-message {
    font-size: 14px;
  }

  .student-new .home-benefits {
    padding: 0px;
    margin-top: 40px;
  }

  .student-new .class-main-title,
  .student-new .master-main-title {
    font-size: 18px;
  }

  #creatorContent {
    display: flex !important;
    flex-direction: row !important;
    overflow: auto !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0px 20px !important;
  }

  .creator-card {
    min-width: 220px;
    width: 220px !important;
    height: 318px !important;
  }

  .student-new .creator-image {
    min-width: 220px;
    width: 220px !important;
    height: 318px !important;
  }

  .student-new .creator-image img {
    width: 120px !important;
    height: 200px !important;
  }

  .student-new .creator-content {
    bottom: -100px !important;
    width: 220px !important;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 12px;
  }

  .student-new .creator-social-buttons button {
    font-size: 12px;
  }

  .student-new .creator-card-name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  /* 모바일 인스타그램 버튼 */
  #creatorContent .instagram-btn {
    padding: 8px 12px;
    gap: 6px;
    width: 100%;
    max-width: 180px;
  }

  #creatorContent .instagram-btn span {
    font-size: 12px;
  }

  #creatorContent .instagram-icon {
    width: 16px;
    height: 16px;
  }

  /* 홈 페이지 크리에이터 카드 배경 - 모바일 전용 */
  .home-creator-card-bg {
    position: absolute;
    bottom: 0;
    width: 220px !important;
    height: 213px !important;
    background: #121212;
    border-radius: 20px;
  }

  .creator-card:hover .home-creator-card-bg,
  .creator-card.active .home-creator-card-bg {
    background: #802fff;
    box-shadow: 0 20px 40px rgba(128, 47, 255, 0.3);
  }
}

/* 상단 통계 배너 */
.student-new .stats-banner {
  position: relative;
  background: #121212;
  border-radius: 20px;
  margin-bottom: 52px;
  overflow: hidden;
  min-height: 170px;
}

.student-new .stats-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 528px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none; /* 배경이 클릭을 가로채지 않도록 */
}

@media screen and (max-width: 768px) {
  .student-new .stats-banner-bg {
    width: 100%;
    height: 80%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .student-new .stats-banner .stats-content .divider-vertical {
    width: 100%;
    height: 1px;
  }

  .student-new .stats-banner {
    min-height: 210px;
    margin-bottom: 22px;
  }

  .student-new .stats-banner .btn-master-inquiry {
    height: 40px;
    /* width: 247px; */
    font-size: 14px;
  }

  .student-new .stat-banner-item:nth-child(1) {
    max-width: 109px;
    width: 109px;
    margin-right: 6px;
  }

  .student-new .stat-banner-item:nth-child(1) {
    max-width: 76px;
    width: 76px;
    margin-right: 6px;
  }

  .student-new .stat-banner-item:nth-child(1) {
    max-width: 109px;
    width: 109px;
    margin-right: 0px;
  }
}

.student-new .stats-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 170px;

  padding-top: 30px;
  padding-left: 60px;
  padding-right: 105px;
  padding-bottom: 40px;
}

.student-new .stats-items {
  display: flex;
  gap: 0px;
}

.student-new .stat-banner-item {
  text-align: left;
}

.student-new .stat-banner-item:nth-child(1) {
  max-width: 220px;
  width: 220px;
  margin-right: 24px;
}

.student-new .stat-banner-item:nth-child(2) {
  max-width: 168px;
  width: 168px;
  margin-right: 8px;
}

.student-new .stat-banner-item:nth-child(1) {
  max-width: 220px;
  width: 220px;
  margin-right: 40px;
}

.student-new .stat-banner-number {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 140%;
  margin-bottom: 2px;
}

.student-new .stat-banner-number span {
  color: #fff;
  font-weight: 700;
}

.student-new .stat-banner-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.42px;
}

/* 통계 CTA */
.student-new .stats-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.student-new .cta-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.42px;
}

.student-new .btn-master-inquiry {
  display: inline-flex;
  padding: 12px 40px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #802fff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.42px;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
  border: none;
}

.student-new .btn-master-inquiry:hover {
  background: #6b26d9;
  transform: translateY(-2px);
}

.student-new .btn-master-inquiry svg {
  width: 24px;
  height: 24px;
}

.student-new .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.student-new .section-subtitle {
  display: block;
  color: #802fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.student-new .section-main-title {
  display: block;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.44px;
}

.student-new .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.student-new .benefit-card {
  background: #121212;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

/* .student-new .benefit-card.animate-in - 애니메이션 제거됨 */

.student-new .benefit-card:hover {
  background: #191919;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(128, 47, 255, 0.2);
}

.student-new .benefit-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
}

.student-new .benefit-icon i {
  font-size: 48px;
  color: #802fff;
}

.student-new .benefit-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.student-new .benefit-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.student-new .benefit-description {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.48px;
}

/* 강사 카드 스타일 */
.student-new .instructor-card {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: #121212;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

/* .student-new .instructor-card.animate-in - 애니메이션 제거됨 */

.student-new .instructor-card.featured {
  background: #802fff;
  transform: scale(1.05);
}

.student-new .instructor-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.student-new .instructor-card.featured:hover {
  transform: translateY(-8px) scale(1.07);
}

.student-new .instructor-image {
  position: relative;
  width: 100%;
  height: 75%;
  overflow: hidden;
}

.student-new .instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-new .instructor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.student-new .instructor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
}

.student-new .instructor-name {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.84px;
  margin-bottom: 16px;
}

.student-new .instructor-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.student-new .instructor-followers {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.42px;
}

.student-new .instructor-followers i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  width: 20px;
  text-align: center;
}

/* ===== 마스터과정 문의 모달 스타일 ===== */
/* inquiry-modal 스타일은 이제 teacher-inquiry-modal.css로 통합되었습니다 */
/* 모든 .inquiry-modal 관련 스타일 주석처리 - teacher-inquiry-modal.css 사용 */
/*
.inquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.inquiry-modal-content {
  background: #1a1a1a;
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.inquiry-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.inquiry-modal-header h3 {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.inquiry-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-modal-close:hover {
  color: #999;
}

.inquiry-modal-body {
  padding: 32px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.form-group label::after {
  content: attr(data-required);
  color: #802fff;
  font-weight: 600;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #802fff;
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
  font-weight: 400;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23802FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn-cancel,
.btn-submit {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cancel {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-submit {
  background: #802fff;
  color: #fff;
  border: 1px solid #802fff;
}

.btn-submit:hover {
  background: #6b26d9;
  border-color: #6b26d9;
}

.btn-submit:active {
  background: #5920c6;
}

@media (max-width: 768px) {
  .inquiry-modal-content {
    width: 95%;
    margin: 16px;
    border-radius: 20px;
  }

  .inquiry-modal-header {
    padding: 24px 24px 20px;
  }

  .inquiry-modal-header h3 {
    font-size: 22px;
  }

  .inquiry-modal-body {
    padding: 24px;
  }

  .inquiry-form {
    gap: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-cancel,
  .btn-submit {
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .inquiry-modal-content {
    width: 98%;
    margin: 8px;
    border-radius: 16px;
  }

  .inquiry-modal-header {
    padding: 20px 20px 16px;
  }

  .inquiry-modal-header h3 {
    font-size: 20px;
  }

  .inquiry-modal-body {
    padding: 20px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
}
*/

/* 클래스 메인 스타일은 class-main.css 참조 */
/* .home-class 내부의 class-card-item은 class-main.css 스타일을 따름 */

@media screen and (max-width: 768px) {
  .student-new .stats-content {
    padding: 20px;
  }

  .student-new .stats-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .stat-banner-label {
    word-break: keep-all;
  }

  .stat-banner-item {
    align-items: center;
    text-align: center !important;
  }

  .student-new .stat-banner-number {
    font-size: 20px;
  }

  .student-new .stat-banner-label {
    font-size: 12px;
  }

  /* .student-new .stats-cta - 모바일 스타일 없음 */
}

.default {
  display: block !important;
}

.mobile {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .default {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }
}

/* 전문 강사진 탭 */
.student-new .instructor-tabs {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.student-new .instructor-tab-item {
  display: flex;
}

.student-new .instructor-carousel-container {
  width: 100%;
  padding: 0 0 119px 0;
  background: #000;
  position: relative;
  height: 520px;
  margin-top: 40px;
}

.instructor-carousel-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.instructor-carousel-container .center-card-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.instructor-carousel-container .center-card-container .instructor-center-card {
  position: absolute;
  width: 638.03px;
  height: 517.25px;
  left: calc(50% - 638.03px / 2 + 0.06px);
  top: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.instructor-center-card-background {
  position: absolute;
  width: 638px;
  height: 450px;
  left: 0px;
  top: 67.25px;
  background: #802fff;
  border-radius: 20px;
}

.instructor-center-card-image-container {
  position: absolute;
  width: 637.94px;
  height: 375.67px;
  left: 0px;
  top: 0px;
}

.instructor-carousel-container .gradient-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #000 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.instructor-carousel-container .gradient-overlay:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to left, #000 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.instructor-center-card-gradient-overlay {
  position: absolute;
  width: 637.94px;
  height: 139.5px;
  left: 0px;
  top: 219.5px;
  background: linear-gradient(180deg, rgba(128, 47, 255, 0) 0%, #802fff 100%);
  pointer-events: none;
  z-index: 1;
}

.instructor-center-card-bottom-rectangle {
  position: absolute;
  width: 637.94px;
  height: 60px;
  left: 0px;
  top: 359px;
  background: #802fff;
  pointer-events: none;
  z-index: 1;
}

.center-card-container .instructor-center-card .sms-text {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  color: #ffffff;
  white-space: free;
}

.instructor-carousel-container .carousel-nav-arrows {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.instructor-carousel-container .carousel-nav-arrows:last-child {
  position: absolute;
  left: initial;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

/* 진행과정 탭 */

.master-process-section {
  width: 100%;
  padding: 0 0 119px 0;
  background: #000;
}

/* 마스터과정 진행과정 스타일 */

.student-new .tab-content {
  display: block !important;
}

.student-new .process-flow-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}

.student-new .process-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.student-new .process-flow-item .image-wrap {
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-flow-item .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.student-new .process-flow-item .description-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-flow-item .description-wrap .process-count {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #802fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}

.process-flow-item .description-wrap .process-title {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
}

.instructor-carousel-container .carousel-nav-arrows {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.instructor-carousel-container .carousel-nav-arrows:last-child {
  position: absolute;
  left: initial;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .instructor-carousel-container .gradient-overlay {
    display: none !important;
  }

  .instructor-carousel-container .carousel-nav-arrows {
    display: none !important;
    width: 24px;
    height: 24px;
    background: none;
    top: 250px !important;
  }

  .instructor-center-card-image-container {
    width: 100%;
  }

  .instructor-carousel-container
    .center-card-container
    .instructor-center-card {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .instructor-carousel-container .center-card-container,
  .instructor-center-card-gradient-overlay,
  .instructor-center-card-bottom-rectangle,
  .instructor-center-card-image-container,
  .instructor-center-card-background {
    width: 100%;
  }
}

.creator-list-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.creator-list-container #creatorContent.creator-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

@media screen and (max-width: 768px) {
  #creatorSection {
    overflow: auto;
    -ms-overflow-style: none;
    padding-bottom: 20px;
  }

  #creatorSection::-webkit-scrollbar {
    display: none;
  }

  .creator-list-container #creatorContent.creator-list-grid {
    display: flex;
    gap: 16px;
    transform: none;
    left: 0px;
  }
}

/* 강사모집 배너 색션 */
.student-new .creator-recruit-banner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  height: 278px;
  background: #121212;

  background: url('/assets/images/main/creator-recruit-banner.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin-top: 124px;
  margin-bottom: 124px;
}

.student-new .creator-recruit-banner-container {
  padding: 44px 56px;
}

.student-new .creator-recruit-banner-container span {
  font-size: 14px;
  font-weight: 700;
  color: #802fff;
  margin-bottom: 4px;
}

.student-new .creator-recruit-banner-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.student-new .creator-recruit-banner-container p {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 24px;
}

.student-new .creator-recruit-banner-button {
  width: 145px;
  height: 40px;
  background: #ffffff10;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.student-new .creator-recruit-banner-button:hover,
.student-new .joinus-inquiry-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
  .student-new .creator-recruit-banner {
    width: calc(100% - 40px);
    margin: 0px 20px;
    height: auto;
    border-radius: 16px;
    background: url('/assets/images/main/creator-recruit-banner_m.png')
      no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 320 / 445;

    margin-bottom: 40px;
  }

  .student-new .creator-recruit-banner-container {
    padding: 32px 24px;
  }
}

@media screen and (max-width: 480px) {
  .student-new .creator-recruit-banner-container span {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .student-new .creator-recruit-banner-container h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .student-new .creator-recruit-banner-container p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .student-new .creator-recruit-banner-button {
    width: 100px;
    height: 30px;
    font-size: 13px;
  }
}

/* 팀 합류 문의 배너 색션 */
.student-new .home-joinus-inquiry {
  position: relative;
  width: 100%;
  height: 320px;

  background: url('/assets/images/main/home-joinus-inquiry-banner.png')
    no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.student-new .joinus-inquiry-container {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 100px;
}

.student-new .joinus-inquiry-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.student-new .joinus-inquiry-container p {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 24px;
}

.student-new .joinus-inquiry-container button.joinus-inquiry-button {
  width: 118px;
  height: 40px;
  background: #ffffff10;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.student-new .joinus-inquiry-container button.joinus-inquiry-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
  .student-new .home-joinus-inquiry {
    height: auto;
    background: url('/assets/images/main/home-joinus-inquiry-banner_m.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    aspect-ratio: 360 / 247;

    margin-top: 20px;
  }

  .student-new .joinus-inquiry-container {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translate(-50%, -35px);
    padding-top: 0px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .student-new .joinus-inquiry-container {
    padding-top: 32px;
    margin: 0 auto;
    bottom: 16px;
    transform: translate(-50%, -16px);
  }

  .student-new .joinus-inquiry-container h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .student-new .joinus-inquiry-container p {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .student-new .joinus-inquiry-container button.joinus-inquiry-button {
    width: 100px;
    height: 40px;
    font-size: 13px;
    margin: 0 auto;
  }
}

/* 상단 검색창 */

.student-new .search-section {
  width: 100%;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .student-new .search-section {
    margin-top: 0px;
    padding: 6px 0px;
  }
}

#wrapper.student-new .search-section .mobile-header-search {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .student-new .hero-slider {
    margin-top: 20px;
  }

  #wrapper.student-new
    .search-section
    .mobile-header-search
    .header-search-container {
    width: 100% !important;
    padding: 10px 20px !important;
    height: 40px !important;
  }

  #wrapper.student-new
    .search-section
    .mobile-header-search
    .header-search-input {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
  }

  #wrapper.student-new .header-search-icon {
    width: 24px;
    height: 24px;
    right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .student-new .hero-slider {
    height: 214px;
    margin-top: 4px;
  }
}

@media screen and (max-width: 768px) {
  .student-new .stats-items {
    gap: 6px;
  }

  .student-new .stats-content {
    padding: 22px 6px;
  }

  .student-new .stat-banner-item:nth-child(1) {
    max-width: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 0px;
  }

  .student-new .stat-banner-item:nth-child(2) {
    max-width: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 0px;
  }

  .student-new .stat-banner-item:nth-child(3) {
    max-width: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 0px;
  }

  .student-new .stat-banner-label {
    font-size: 11px;
  }

  .student-new .stats-banner .stats-content .divider-vertical {
    display: flex;
    margin: 0px 20px;
    width: calc(100% - 40px);
  }

  .student-new .stats-content {
    gap: 20px;
  }

  .student-new .stats-cta {
    gap: 16px;
  }
}

/* 모바일 */
@media screen and (max-width: 768px) {
  .student-new .creator-recruit-banner-mt {
    margin-top: 40px;
  }

  .student-new .home-creator-container-mb {
    padding: 0px 20px;
  }

  .student-new .home-creator-container-mb .creator-content {
    width: 100% !important;
    transform: none !important;
  }

  .student-new .home-creator-list-container-mb .creator-card .creator-content {
    transform: none;
  }
  .student-new .home-creator-list-container-mb .creator-card-follower {
    font-size: 14px !important;
  }

  .creator-list-container #creatorContent.creator-list-grid {
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }

  .creator-list-container #creatorContent.creator-list-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}

@media screen and (max-width: 480px) {
  .student-new .home-creator-list-container-mb .creator-card {
    width: 220px;
    max-width: 220px !important;
  }

  .student-new
    .home-creator-list-container-mb
    #creatorContent
    .creator-content {
    gap: 4px;
  }
  .student-new .home-creator-list-container-mb .creator-instagram-link {
    margin: 8px;
  }
  .student-new
    .home-creator-list-container-mb
    #creatorContent
    .creator-instagram-link
    .instagram-btn {
    padding: 0px;
  }

  .student-new .creator-card:nth-child(2) .creator-image img {
    width: 155px !important;
    height: 232px !important;
  }

  .student-new .creator-card:nth-child(3) .creator-image img {
    width: 165px !important;
    height: 250px !important;
    top: -33px !important;
  }
}

.student-new .home-creator-list-container-mb #creatorContent .creator-content {
  gap: 8px;
}

.student-new .home-creator-list-container-mb .creator-card-name {
  margin-bottom: 0px;
}

.student-new .home-creator-list-container-mb .creator-card-follower {
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #666666;
  font-weight: 500;
}

.student-new .home-creator-list-container-mb .creator-instagram-link {
  margin-top: 16px;
  gap: 12px;
  align-items: center;
}

.student-new
  .home-creator-list-container-mb
  .creator-instagram-link
  .instagram-btn {
  background: none;
  border: none;
  gap: 6px;
  padding: 0px;
}

.student-new
  .home-creator-list-container-mb
  .creator-instagram-link
  .divider-vertical {
  width: 1px !important;
  height: 16px !important;
  background: #666;
  margin: 0px !important;
}

.student-new
  .home-creator-list-container-mb
  .creator-instagram-link
  .instagram-btn
  .sns-title {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.student-new
  .home-creator-list-container-mb
  .creator-instagram-link
  .instagram-btn
  .sns-link {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.student-new .home-creator-list-container-mb .creator-card:hover .sns-title,
.student-new .home-creator-list-container-mb .creator-card:hover .sns-link {
  color: #fff !important;
}

.student-new
  .home-creator-list-container-mb
  .creator-card:hover
  .creator-card-follower {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* 10.19 모바일 스타일 조정 */
@media screen and (max-width: 768px) {
  .student-new .benefits-grid {
    gap: 12px;
    padding: 0px;
  }

  .student-new .benefit-card {
    width: 100%;
    padding: 24px 20px;
    border-radius: 12px;
  }

  .student-new .benefit-icon {
    width: 86px;
    height: 85px;
  }

  .student-new .benefit-title {
    font-size: 16px;
    word-break: keep-all;
  }

  .student-new .benefit-description {
    font-size: 13px;
    color: #fff;
    word-break: keep-all;
  }
}
