@charset "UTF-8";

/* ==========================================================================
   1. 디자인 시스템 가이드 - 주요 색상 정의 (Variables)
   ========================================================================== */
:root {
  --color-accent: #fe2c53; /* Accent color : 강조 색상 */
  --color-primary: #4c22b4; /* Primary color : 중심 색상 */
  --color-secondary: #7b7232; /* Secondary color : 보조 색상 */
  --color-tertiary: #000000; /* Tertiary color : 보조 색상 */

  --color-accent-hover: #b21f3a;
  --color-primary-hover: #35187e;

  --color-accent-pressed: #b21f3a;
  --color-primary-pressed: #35187e;

  /* 시스템 기본 무채색 계열 */
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-400: #ced4da;
  --color-gray-700: #495057;
  --color-text: #212529;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Pretendard", sans-serif;
  background-color: #ffffff;
  /* color: #333333; */
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
input,
button,
select,
textarea {
  font-family: inherit;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset !important;
}

.mobile-toggle-wrapper,
.m-nav-header,
.m-nav-util {
  display: none;
}
/* ==========================================================================
   2. 공통 UI 컴포넌트 스타일 (Buttons)
   ========================================================================== */
/* [공통] 버튼 기본 베이스 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  /* 고정 width 대신 min-width를 사용하여 콘텐츠 양에 대응 */
  min-width: var(--btn-min-width, auto);
  width: var(--btn-width, auto); /* 특정 페이지 고정용 하위 호환 유지 */

  height: var(--btn-height, 44px);
  padding: var(--btn-padding, 9px 22px); /* 사이즈별 패딩 제어 */
  font-size: var(--btn-font-size, 14px);
  font-weight: var(--btn-font-weight, 700);
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;

  gap: 8px; /* 🌟 아이콘과 텍스트 사이의 유동적인 간격 정의 */

  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   ● Accent Button (강조 색상)
   -------------------------------------------------------------------------- */
.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}
/* hover 상태 */
.btn-accent:hover {
  background-color: var(--color-accent-hover);
}
/* pressed 상태 */
.btn-accent:active {
  background-color: var(--color-accent-pressed);
  transform: scale(0.98);
}

/* --------------------------------------------------------------------------
   ● Primary Button (중심 색상)
   -------------------------------------------------------------------------- */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
/* hover 상태 */
.btn-primary:hover {
  background-color: var(--color-primary-hover);
}
/* pressed 상태 */
.btn-primary:active {
  background-color: var(--color-primary-pressed);
  transform: scale(0.98);
}

/* --------------------------------------------------------------------------
   ● Secondary Button (보조 색상)
   -------------------------------------------------------------------------- */
.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
/* hover 상태 */
.btn-secondary:hover {
  background-color: #59562e;
}
/* pressed 상태 */
.btn-secondary:active {
  background-color: #454323;
  transform: scale(0.98);
}

/* --------------------------------------------------------------------------
   ● Tertiary Button (보조 색상)
   -------------------------------------------------------------------------- */
.btn-tertiary {
  background-color: var(--color-tertiary);
  color: var(--color-white);
}
/* hover 상태 */
.btn-tertiary:hover {
  background-color: #262626;
}
/* pressed 상태 */
.btn-tertiary:active {
  background-color: #121212;
  transform: scale(0.98);
}

/* ==========================================================================
   보라색 라인 버튼 컴포넌트 (.btn-line-purple)
   ========================================================================== */
.btn-line-purple {
  gap: 16px;
  --btn-width: 240px;
  --btn-height: 54px;
  --btn-font-size: 16px;
  --btn-font-weight: 700;
  border: 1px solid var(--color-primary);
  background-color: #ffffff;
  color: var(--color-primary);
  transition: all 0.25s ease;
}

.btn-line-purple img {
  height: auto;
  vertical-align: middle;
  margin-top: -1px;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.btn-line-purple:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-line-purple:hover .arrow-icon,
.btn-line-purple:hover .download-icon {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(200%) contrast(100%);
}

.btn-line-purple:active {
  background-color: var(--color-primary-dark, var(--color-primary));
  border-color: var(--color-primary-dark, var(--color-primary));
}
.btn-sm {
  /* --btn-min-width: 69px; */
  --btn-width: auto;
  --btn-height: 38px;
  --btn-padding: 8px 16px;
  --btn-font-size: 14px;
  --btn-font-weight: 900;
}

.btn-md,
.btn-line-md {
  /* --btn-min-width: 113px; */
  --btn-width: auto;
  --btn-height: 54px;
  --btn-padding: 16px 24px;
  --btn-font-size: 14px;
  --btn-font-weight: 900;
}

.btn-lg,
.btn-line-lg {
  /* --btn-min-width: 158px; */
  --btn-width: auto;
  --btn-height: 76px;
  --btn-padding: 20px 32px;
  --btn-font-size: 24px;
  --btn-font-weight: 700;
}

.btn.btn-sm img {
  width: 16px;
  height: auto;
  vertical-align: middle;
}
.btn.btn-md img {
  width: 20px;
  height: auto;
  vertical-align: middle;
}
.btn.btn-lg img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.btn-a-download {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  gap: 8px;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 4px 0 8px;
  height: unset;
  border-radius: 0;
}

.btn-a-download img {
  height: auto;
  vertical-align: middle;
  margin-top: -1px;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

/* ==========================================================================
   화살표 링크 버튼 컴포넌트 (.btn-arrow-link)
   ========================================================================== */
.btn-arrow-link {
  color: #000;
  padding: 8px 0;
  font-weight: 700;
  min-width: auto;
  height: auto;
}

.btn-arrow-link .arrow-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 16px;
  height: 16px;
  overflow: visible;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: width;
}

.btn-arrow-link .arrow-wrap::before {
  content: url("/assets/user/images/common/arrow-right-black.svg");
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.btn-arrow-link:hover .arrow-wrap,
.btn-arrow-link:active .arrow-wrap {
  width: 41px;
  content: url("/assets/user/images/common/arrow-right-black2.svg");
}

/* ==========================================================================
   .btn-outlink
   ========================================================================== */
.btn-outlink {
  color: #000000;
  padding: 8px 0;
  font-weight: 700;
  min-width: auto;
  height: auto;
}

.btn-link {
  color: #3b82f6;
  font-weight: 700;
  min-width: auto;
  height: auto;
  padding: 0;
}

.btn-outlink:hover,
.btn-outlink:active {
  color: var(--color-accent);
}

.btn-outlink:hover .arrow-icon,
.btn-outlink:active .arrow-icon {
  filter: invert(41%) sepia(85%) saturate(4177%) hue-rotate(326deg) brightness(101%) contrast(101%);
}

/* ==========================================================================
   액션 버튼 컴포넌트 (.btn-scrap & .btn-list-view)
   ========================================================================== */
.btn-scrap,
.btn-list-view {
  --btn-min-width: auto;
  --btn-width: auto;
  --btn-padding: 6px 12px;
  --btn-font-size: 14px;
  --btn-font-weight: 900;

  background-color: #ffffff;
  border: 1px solid #999;
  border-radius: 4px;
  gap: 4px;
  color: #999;
  line-height: 160%; /* 22.4px */
}

.btn-scrap::before,
.btn-list-view::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-scrap::before {
  background-image: url("/assets/user/images/common/icon-scrap-gray.png");
}

.btn-list-view::before {
  background-image: url("/assets/user/images/common/icon-list-gray.png");
}

.btn-scrap:hover,
.btn-list-view:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn-scrap:active,
.btn-list-view:active {
}

.btn-scrap:active,
.btn-scrap.active {
  background-color: #ff2d55;
  border-color: #ff2d55;
  color: #ffffff;
}

.btn-scrap:active::before,
.btn-scrap.active::before {
  background-image: url("/assets/user/images/common/icon-scrap-white.png");
}

/* ==========================================================================
   공통 커스텀 체크박스 (Custom Checkbox)
   ========================================================================== */
.checkbox-group {
  display: flex;
  align-items: center;
}

.custom-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  user-select: none;
  font-style: normal;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.checkbox-label .checkbox-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #999;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.custom-checkbox:checked + .checkbox-label {
  color: var(--color-primary);
}

.custom-checkbox:checked + .checkbox-label .checkbox-icon {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.custom-checkbox:checked + .checkbox-label .checkbox-icon::after,
.checkbox-group.is_pressed + .checkbox-label .checkbox-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url("/assets/user/images/common/icon-check-white.svg") no-repeat center center;
  background-size: contain;
}

.checkbox-group.is_pressed .checkbox-label {
  color: var(--color-primary);
}
.checkbox-group.is_pressed .checkbox-label .checkbox-icon {
  border-color: var(--color-primary);
}
/* ==========================================================================
   공통 커스텀 라디오 버튼 (Custom Radio Button)
   ========================================================================== */

.radio-group {
  display: flex;
  align-items: center;
  gap: 40px;
  /* padding: 20px 0; */
}

.radio-item {
  display: flex;
  align-items: center;
}

/* 기본 라디오 버튼 숨기기 (웹 접근성 표준 준수) */
.custom-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #000000;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.radio-label .radio-icon {
  width: 28px;
  height: 28px;
  border: 3px solid #a0a0a0; /* 비활성화 상태의 부드러운 회색 테두리 */
  border-radius: 50%;
  background-color: #ffffff;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  /* transition: border-color 0.2s ease; */
}

.custom-radio:checked + .radio-label .radio-icon {
  border-color: var(--color-primary); /* #5b26be */
}

.custom-radio:checked + .radio-label .radio-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1); /* 정중앙 배치 공식 */

  /* 내부 보라색 알맹이 원 크기 */
  width: 15px;
  height: 15px;
  background-color: var(--color-primary); /* #5b26be */
  border-radius: 50%;
  display: block;
}

/* ==========================================================================
   공통 페이지네이션 시스템 (Pagination - 이전/다음 이미지형)
   ========================================================================== */

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center; /* 게시판 하단 중앙 정렬 */
  gap: 40px; /* 화살표 상자와 숫자 그룹 사이 간격 */
  padding: 0 80px;
  margin-bottom: 80px;
}

/* [이전/다음] 방향 버튼 상자 기본 틀 */
.pagination-container .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  background-color: #ffffff;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.pagination-container .page-btn.disabled {
  opacity: 0.5;
  cursor: default;
}

/* 버튼 내부 화살표 이미지 정렬 */
.pagination-container .page-btn .page-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  display: block;
}

.pagination-container .page-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* 페이지 번호 묶음 그룹 */
.page-number-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 1, 2, 3... [일반 숫자 버튼] 기본 폼 */
.pagination-container .page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: transparent;
  color: #999;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

/* 일반 숫자 호버 피드백 */
.pagination-container .page-num:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.pagination-container .page-num.active {
  background-color: var(--color-accent);
  color: #ffffff;
  cursor: default;
}

.pagination-container .page-num.active:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

/* ==========================================================================
   내비게이션 컴포넌트 (.view-navigation)
   ========================================================================== */
.view-navigation {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 4px;
  padding-top: 160px;
}

.view-navigation .nav-post-box {
  flex: 1;
  background-color: #fff;
}
.view-navigation .nav-post-box > div {
  display: flex;
  align-items: center;
  padding: 24px;
  text-decoration: none;
  transition: background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 718px;
  justify-content: space-between;
}

/* 이전글 박스 (좌측 정렬) */
.view-navigation .prev-post {
  display: flex;
  justify-content: flex-end;
}

/* 다음글 박스 (우측 정렬) */
.view-navigation .next-post {
}

/* 텍스트 정렬 그룹 */
.view-navigation .nav-post-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
}

/* 라벨 (PREVIOUS / NEXT ) */
.view-navigation .prev-post .nav-label::before {
  content: "PREVIOUS POST";
}
.view-navigation .next-post .nav-label::before {
  content: "NEXT POST";
}
.view-navigation .nav-label {
  font-size: 48px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: -1.44px;
  transition: color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: left;
  color: #999;
}
.view-navigation .prev-post .nav-label {
  text-align: right;
}

/* 게시글 제목 */
.view-navigation .nav-post-title {
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  text-align: right;
  max-width: 489px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-navigation .next-post .nav-post-title {
  text-align: left;
}

.view-navigation .nav-arrow {
  display: inline-block;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;

  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.25s ease;
  filter: invert(68%) sepia(0%) saturate(0%) hue-rotate(167deg) brightness(90%) contrast(87%);
}

.view-navigation .nav-arrow.prev {
  background-image: url("/assets/user/images/common/arrow-prev-gray.svg");
}

.view-navigation .nav-arrow.next {
  background-image: url("/assets/user/images/common/arrow-next-gray.svg");
}

.view-navigation .nav-post-box:hover {
  background: rgba(0, 0, 0, 0.04);
}

.view-navigation .nav-post-box:hover .nav-label,
.view-navigation .nav-post-box:hover .nav-post-title {
  color: var(--color-primary);
}

.view-navigation .prev-post:hover .nav-arrow.prev,
.view-navigation .next-post:hover .nav-arrow.next {
  filter: invert(15%) sepia(82%) saturate(4529%) hue-rotate(255deg) brightness(78%) contrast(98%);
}

.input-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.custom-input {
  width: 100%;
  padding: 16px 24px;
  background-color: #f4f4f4;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  box-sizing: border-box;
  outline: none;
  border: 0;
  /* transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; */
}

.custom-input::placeholder {
  color: #999;
  font-weight: 400;
}

.sound-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.accordion-container {
  width: 100%;
  border-top: 1px solid #d1d1d1;
}
.accordion-container .accordion-item {
  border-bottom: 1px solid #d1d1d1;
}
.accordion-container .content-inner {
  padding: 0 104px 72px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 56px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
  gap: 40px;
}
.accordion-trigger > div {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.accordion-trigger:hover {
  background-color: #f4f4f4;
}

.badge-q {
  flex-shrink: 0;
  color: #fe2c53;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
}

.question-text {
  color: #000000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  flex: 1;
}

.accordion-icon {
  width: 48px;
  height: 48px;

  background: url("/assets/user/images/common/icon-plus.png") no-repeat center center;
  background-size: contain;
  transition: background-image 0.2s ease;
}

.accordion-item.open .accordion-icon {
  background-image: url("/assets/user/images/common/icon-minus.png");
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
  padding: 72px 104px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.accordion-item.open {
  background-color: #f9f9f9;
}
.accordion-item.open .accordion-trigger {
  background-color: #f9f9f9;
}
.accordion-item.open .question-text {
  color: var(--color-primary);
}

.accordion-item.open .accordion-icon::after {
  transform: rotate(90deg) scaleY(0);
}

.accordion-item.open .accordion-content {
  max-height: 300px;
}
.section-activity-tabs .accordion-item.open {
  background-color: unset;
}
.section-activity-tabs .tab-content {
  max-width: 1920px;
  margin: 0 auto;
}
.tab-container {
  width: 100%;
  margin: 0 auto;
}

.tab-menu-wrapper {
  padding-top: 40px;
  border-bottom: 1px solid #e1e1e1;
}

.tab-menu-list {
  display: flex;
  gap: 56px;
}

.tab-item {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  color: #999;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.tab-item:hover .tab-btn {
  color: #999999;
}
.tab-item:hover .tab-btn,
.tab-item.active .tab-btn {
  color: var(--color-primary);
  padding: 16px 0;
}

.tab-item:hover::after,
.tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
}

.tab-content {
  display: none;
  padding: 80px 0;
}

.tab-content.active {
  display: block;
}

.submission-guide-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Pretendard", sans-serif;
  box-sizing: border-box;
}

.sub-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-title-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 56px;
  flex-shrink: 0;
}

.title-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.title-icon {
  width: 100%;
  height: auto;
  display: block;
}

.title-text {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.64px;
}
.main-title-text {
  color: var(--color-primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
}

.guide-section {
  margin-bottom: 60px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* 1. 공통 테이블 초기화 및 베이스 */
.table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  table-layout: fixed;
}

.table th,
.table td {
  vertical-align: middle;
  word-break: keep-all;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}

.table th:last-child,
.table td:last-child {
  border-right: 0;
}

.table .sub-text {
  display: block;
  font-size: 15px;
  color: #888;
  margin-top: 4px;
  font-weight: 400;
}

/* =========================================
   CASE 1. table-basic (크고 명확한 기본형)
   ========================================= */
.table-basic {
  border-top: 0;
  border-bottom: 1px solid #eee;
}

.table-basic th {
  background-color: #f1f1f1;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  padding: 32px 0;
}

.table-basic td {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
  padding: 32px 0;
}

/* =========================================
   CASE 2. table-ex (조금 더 작고 차분한 강조형)
   ========================================= */
.table-ex {
  border-top: 0;
}

.table-ex th {
  background-color: #f1f1f1;
  color: #777; /* 회색조 폰트 */
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  padding: 24px 0;
}

.table-ex td {
  color: #777;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
  padding: 24px;
}

.color-primary {
  color: var(--color-primary) !important;
}
.color-accent {
  color: var(--color-accent) !important;
}

/* ==========================================================================
   3. 퍼블리싱 가이드 전용 레이아웃 (guide.html용)
   ========================================================================== */
.guide-container {
  max-width: 1504px;
  padding: 0 2rem;
  margin: 40px auto;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.guide-header {
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 15px;
  margin-bottom: 35px;
}
.guide-header h1 {
  color: var(--color-primary);
  font-size: 28px;
}
.guide-section {
  margin-bottom: 45px;
}
.guide-section h2 {
  font-size: 20px;
  color: var(--color-tertiary);
  border-left: 4px solid var(--color-accent);
  padding-left: 10px;
  margin-bottom: 20px;
}

/* 가이드 카드 컨테이너 배치 (수직으로 유연하게 배치) */
.btn-guide-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
}

/* 개별 카드 스타일 */
.btn-guide-card {
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  background-color: var(--color-white);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* 상단 정보 영역 */
.btn-guide-card .card-header {
  background-color: var(--color-gray-100);
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-guide-card .size-badge {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;
  background-color: #f0ebfa;
  padding: 4px 10px;
  border-radius: 4px;
}

.btn-guide-card .var-info {
  font-family: monospace;
  font-size: 13px;
  color: var(--color-gray-700);
}

/* 내부 버튼 Grid 정렬 기법 (기본 3열 배치, 화면이 좁아지면 알아서 떨어짐) */
.btn-guide-card .card-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* 버튼 아이템 개별 요소 */
.btn-guide-card .btn-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background-color: #fafafa;
  border-radius: 6px;
  border: 1px dashed #e5e7eb;
}

.btn-guide-card .btn-item strong {
  font-size: 13px;
  color: #666;
  font-weight: 700;
}

/* 버튼 2개 묶음용 공통 마진갭 */
.btn-guide-card .flex-gap {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Color Palette Display Grid */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.color-card {
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-white);
}
.color-view {
  height: 100px;
}
.color-info {
  padding: 15px;
}
.color-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.color-info p {
  font-size: 13px;
  color: var(--color-gray-700);
  font-family: monospace;
}

/* ==========================================================================
   GNB 헤더 및 서브메뉴
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05); */
}

.header-wrap-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 80px;
}

.header-logo {
  height: 100px;
  display: flex;
  align-items: center;
}

.header-logo .logo-link {
  display: block;
  line-height: 0;
}

.header-logo .logo-img {
  width: 218px;
  height: 36px;
  aspect-ratio: 109 / 18;
  display: block;
}

.gnb-nav {
  flex-grow: 1;
  height: auto;
}

.gnb-list {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  margin: auto;
}

.gnb-item {
  /* width: 160px; */
  flex: 1;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

/* 대메뉴 영역 우측 가이드 라인 */
.gnb-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100px;
  background-color: transparent;
  transition: background-color 0.2s ease;
  z-index: 10;
}

/* 첫 번째 메뉴 왼쪽 가이드 라인 */
.gnb-item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background-color: transparent;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.site-header:hover .gnb-item::after,
.site-header:hover .gnb-item:first-child::before {
  background-color: #f0f0f0;
}

/* 1depth 대메뉴 링크 스타일 */
.gnb-depth1-link {
  color: #000000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.4px;
}

.gnb-item:hover .gnb-depth1-link {
  color: var(--color-accent);
}

.lnb-box {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: none;
  padding-bottom: 40px;
}

.lnb-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.gnb-item:first-child .lnb-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.site-header:hover .lnb-box::after,
.site-header:hover .gnb-item:first-child .lnb-box::before {
  background-color: #f0f0f0;
}

.lnb-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lnb-link {
  color: #777;
  display: block;
  transition:
    color 0.15s ease,
    font-weight 0.15s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.08px;
}

.lnb-link:hover {
  color: var(--color-accent);
  font-weight: 700;
}

.dropdown-bg-panel {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  min-width: 1440px;
  background-color: #ffffff;
  z-index: 999;
  display: none;
  height: auto;

  min-width: 1920px;
  background-color: #ffffff;
  z-index: 999;
  display: none;
  height: auto;
}

.header-util {
  width: 225px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════ */
.footer {
  width: 100%;
  background-color: #d1d1d1;
}

.footer-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-sitemap {
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}

.sitemap-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  flex: 1;
  text-align: center;
  position: relative;
}

.sitemap-list li:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
}
.sitemap-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
}

.sitemap-list a {
  display: block;
  padding: 16px 0;
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08px;
}

.footer-info {
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-grid {
  display: flex;
}

.info-column {
  flex: 1;
  padding: 0 32px;
  position: relative;
}

.info-column:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.info-column::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.info-column h3 {
  margin: 0 0 12px 0;
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%; /* 19.84px */
  letter-spacing: -0.32px;
}

.info-column .address {
  margin: 0 0 16px 0;
  min-height: 48px;
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
}

.info-column .contact-item {
  color: #999;
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
}

.info-column .contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.info-column .contact-item.tel::before {
  background-image: url("/assets/user/images/common/icon-footer-tel.png");
}

.info-column .contact-item.manager::before {
  background-image: url("/assets/user/images/common/icon-footer-user.png");
}

.footer-bottom {
  padding: 24px 0;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-left {
  display: flex;
  align-items: center;
  gap: 64px;
}

.footer-logo img {
  width: 182px;
  height: 30px;
  display: block;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #999;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.08px;
}

.footer-links a.bold {
  font-weight: 800;
}

.bottom-right .copyright {
  color: #999;
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.07px;
}

/* ════════════════════════════════════════════
   MAIN BANNER (SWIPER)
   ════════════════════════════════════════════ */
.main-banner {
  width: 100%;
  max-width: 1196px;
  height: 720px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.banner-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
  padding: 80px 56px;
}

.banner-info .banner-txt {
  text-align: left;
}
.banner-title {
  color: var(--color-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.6px;
  margin-bottom: 16px;
}
.banner-title i {
  font-style: normal;
  opacity: 0.4;
  animation: 0.6s ease 0s infinite alternate none running txtfade;
}
.banner-title i:nth-child(2) {
  animation-delay: 0.1s;
}
.banner-title i:nth-child(3) {
  animation-delay: 0.2s;
}
.banner-title i:nth-child(4) {
  animation-delay: 0.3s;
}
.banner-title i:nth-child(5) {
  animation-delay: 0.4s;
}
.banner-title i:nth-child(6) {
  animation-delay: 0.5s;
}
.banner-title i:nth-child(7) {
  animation-delay: 0.6s;
}
.banner-title i:nth-child(8) {
  animation-delay: 0.7s;
}

.banner-sub {
  color: #111827;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.8px;
}

/* 버튼 스타일 */
.banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-banner.black {
  background: #000;
  color: #fff;
}

.btn-banner.outline {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
}

/* 인디케이터 커스텀 */
/* .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #333;
} */

.main-banner .swiper-nav-wrapper {
  position: absolute;
  top: 32px;
  right: 56px;
  display: flex;
  gap: 4px;
  z-index: 10;
}

.main-banner .swiper-button-prev,
.main-banner .swiper-button-next {
  position: static;
  width: 32px;
  height: 32px;
  margin-top: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.main-banner .swiper-button-prev {
  background-image: url("/assets/user/images/common/arrow-left-white.png");
}

.main-banner .swiper-button-next {
  background-image: url("/assets/user/images/common/arrow-right-white.png");
}

.main-banner .swiper-button-prev::after,
.main-banner .swiper-button-next::after {
  display: none;
}

/* ════════════════════════════════════════════
   컨텐츠 기본 레이아웃 
   ════════════════════════════════════════════ */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  /* overflow-x: hidden; */
}

.main-container {
  flex: 1;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sub-visual-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 268px;
}

.banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* .sub-visual-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
} */

.visual-flex {
  position: relative;
  z-index: 3;
}
.sub-visual-banner .page-title {
  color: #ffffff;
  font-size: 56px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -1.12px;
}

.breadcrumb-nav {
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 30px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumb-item:not(:first-child) {
  padding-left: 24px;
}

.breadcrumb-item:not(:first-child)::before {
  content: "/";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.breadcrumb-item.home {
  padding-left: 0;
}

.breadcrumb-item.home .home-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.breadcrumb-item a {
  transition: color 0.2s ease;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
/* 
.breadcrumb-item a:hover {
  color: #ffffff;
} */

.breadcrumb-item a.current {
  pointer-events: none;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}

.content-wrapper {
  width: 100%;
  padding: 160px 0 80px 0;
}

/* ==========================================================================
   공통 태그 컴포넌트 (.badge) - 프로젝트 변수 연동형
   ========================================================================== */

.badge.badge-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  border-radius: 1000px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   ● Line Type Stylings (테두리형)
   -------------------------------------------------------------------------- */
/* 공지사항  */
.badge-line-accent {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/* 회원동정 */
.badge-line-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

/* --------------------------------------------------------------------------
   ● Solid Type Stylings (배경채움형)
   -------------------------------------------------------------------------- */
.badge-solid-primary {
  background-color: #a194f8;
  color: #ffffff;
  border: none;
}

/* --------------------------------------------------------------------------
   커스텀 셀렉트박스
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.custom-select-container {
  position: relative;
  width: 133px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.48px;
}

.select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-trigger .arrow-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/assets/user/images/common/arrow-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.custom-select-container.is-open .arrow-icon {
  transform: rotate(-180deg);
}

.select-options {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  list-style: none;
  background-color: #f9f9f9;
  z-index: 100;
  /* max-height: 250px; */
  overflow-y: auto;
}

.custom-select-container.is-open .select-options {
  display: block;
}

.option-item {
  padding: 16px;
  cursor: pointer;
  background-color: #f9f9f9;
  border: 1px solid #d1d1d1;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.option-item:hover {
  background-color: #f9f9f9;
}

.option-item.selected {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   레이어 팝업
   -------------------------------------------------------------------------- */
.layer-popup-wrap {
  position: absolute;
  z-index: 9999;
  background-color: #ffffff;
  border: 1px solid #222222;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.layer-popup-wrap .popup-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.layer-popup-wrap .popup-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.layer-popup-wrap .popup-footer {
  height: 40px;
  background-color: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 13px;
  box-sizing: border-box;
}

.layer-popup-wrap .popup-footer label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.layer-popup-wrap .popup-footer input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
}

.layer-popup-wrap .popup-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  padding: 5px 0;
}

/* ==========================================================================
   Mobile Responsive Styles (Max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  /* 공통 레이아웃 해제 */
  .header-wrap-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    align-items: center !important;
  }

  .header-logo {
    height: 64px !important;
  }
  .header-logo .logo-img {
    width: 194px !important;
    height: 32px !important;
  }

  /* PC 전용 디자인 및 패널 숨김 처리 */
  .header-util,
  .dropdown-bg-panel,
  .gnb-item::after,
  .gnb-item:first-child::before,
  .footer-sitemap {
    display: none !important;
  }

  /* 모바일 햄버거 토글 버튼 스타일링 */
  .mobile-toggle-wrapper {
    display: block;
  }
  .btn-m-toggle {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .btn-m-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #111;
    transition: all 0.3s ease;
  }

  /* 모바일 네비게이션 드롭다운 레이어 (Right to Left 슬라이드) */
  .gnb-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 2000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease-in-out;
  }
  .gnb-nav.open {
    right: 0;
  }

  /* 모바일 사이드메뉴 내 헤더 */
  .m-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  .m-nav-header .m-logo img {
    height: 24px;
    width: auto;
  }
  .btn-m-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #555;
    cursor: pointer;
    line-height: 1;
  }

  /* 모바일 아코디언 메뉴 리스트 재배치 */
  .gnb-list {
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    flex-grow: 1;
    width: 100%;
    gap: 4px;
  }

  .gnb-item {
    width: 100% !important;
    text-align: left !important;
    flex: unset;
  }

  /* 모바일 1depth 대메뉴 바 */
  .gnb-depth1-link {
    height: auto !important;
    padding: 20px 40px !important;
    justify-content: space-between !important;
    color: #111111 !important;
    background-color: #f9f9f9;
    transition:
      background-color 0.2s,
      color 0.2s;
    font-size: 24px !important;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
    min-height: 112px;
  }
  /* 화살표 모양 가이드아이콘 추가 */
  .gnb-depth1-link::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 4px;
  }

  /* 아코디언 클릭 액티브(Open) 상태 스타일링 */
  .gnb-item.active .gnb-depth1-link {
    color: #ff2a6d !important;
  }
  .gnb-item.active .gnb-depth1-link::after {
    /* transform: rotate(-135deg); */
    border-color: #ff2a6d;
  }

  /* 2depth 서브메뉴 박스 노출 변경 */
  .lnb-box {
    position: relative !important;
    top: 0 !important;
    padding-bottom: 0 !important;
    background-color: #fafafa;
    display: none;
  }
  .gnb-item.active .lnb-box {
    display: block;
  }

  .lnb-list {
    padding: 20px 40px !important;
    gap: 24px !important;
    margin-top: 10px;
    background-color: #fff;
  }
  .lnb-link {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
  }
  .lnb-link:hover {
    color: var(--color-accent);
  }

  .m-nav-util {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    box-shadow:
      0 -81px 23px 0 rgba(0, 0, 0, 0),
      0 -52px 21px 0 rgba(0, 0, 0, 0.01),
      0 -15px 20px 0 rgba(0, 0, 0, 0.09),
      0 -3px 7px 0 rgba(0, 0, 0, 0.1);
  }
  .m-nav-util .btn-accent,
  .m-nav-util .btn-primary {
    flex: 1;
    border-radius: 8px;
    justify-content: center;
  }
  .m-nav-util .btn-m-logout {
    border-radius: 8px;
    border: 1px solid #fe2c53;
    color: #fe2c53;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
    flex: 1;
    justify-content: center;
  }

  /* ════════════════════════════════════════════
     Footer 모바일 반응형 처리
     ════════════════════════════════════════════ */
  .footer-inner {
    padding: 0 !important;
  }

  .footer-info {
    display: none;
    padding: 15px 0 !important;
  }

  .footer-bottom {
    padding: 40px 20px;
  }

  /* 푸터 최하단 정렬 레이아웃 */
  .bottom-flex {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }
  .bottom-left .footer-logo {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
  }

  .bottom-left .footer-links {
    width: 100%;
    justify-content: center;
    gap: 40px !important;
  }
  .bottom-right {
    /* margin-top: 16px; */
  }
  .bottom-left {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
  }
  .footer-links a {
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.08px;
  }
  .footer-links a.bold {
    font-weight: 800;
    margin-bottom: 16px;
  }
  .footer-logo img {
    height: 40px;
    width: 242px;
  }
  .sub-visual-banner {
    height: 106px;
    padding: 20px;
  }
  .container {
    max-width: unset;
    padding: 0;
  }
  .sub-visual-banner .container {
    padding: 0;
  }
  .breadcrumb-nav {
    display: none;
  }
  .sub-visual-banner .page-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 60px */
    letter-spacing: -0.8px;
  }
  .banner-bg-img {
    width: unset;
  }
  .content-wrapper {
    padding: 96px 0 48px 0;
  }
  .pagination-container {
    padding: 0 32px;
    margin-bottom: 48px;
  }
  .page-number-group {
    gap: 24px;
  }
  .view-navigation {
    padding-top: 4px;
    height: 100px;
    align-items: flex-end;
  }
  .view-navigation .prev-post > div {
    padding: 24px 36px 24px 20px;
    justify-content: space-between;
    gap: 16px;
  }
  .view-navigation .nav-post-box > div {
    width: unset;
  }
  .view-navigation .prev-post .nav-label::before {
    content: "Previous";
  }
  .view-navigation .next-post .nav-label::before {
    content: "Next";
  }
  .view-navigation .next-post > div {
    padding: 24px 20px 24px 36px;
    justify-content: space-around;
    gap: 0;
  }
  .view-navigation .nav-label {
    font-size: 24px;
    font-weight: 400;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
  }
  .view-navigation .nav-post-title {
    display: none;
  }
  .view-navigation .nav-arrow {
    width: 32px;
    height: 32px;
  }
  .view-navigation .nav-post-info {
    padding: 0;
  }
  .custom-input {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .sub-title {
    padding: 56px 20px;
  }
  .main-title-text {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
  .custom-checkbox:checked + .checkbox-label .checkbox-icon::after,
  .checkbox-group.is_pressed + .checkbox-label .checkbox-icon::after {
    width: 20px;
    height: 20px;
  }
  .checkbox-label {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .checkbox-label .checkbox-icon {
    width: 24px;
    height: 24px;
  }
  .radio-label {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .radio-group.fd {
    display: flex;
    align-items: unset;
    gap: 20px;
    flex-direction: column;
  }
  .tab-menu-wrapper {
    padding-top: 0;
    border-bottom: 0;
  }
  .tab-item:hover::after,
  .tab-item.active::after {
    display: none;
  }
  .tab-item:hover .tab-btn,
  .tab-item.active .tab-btn {
    transform: unset;
  }
  .tab-menu-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 32px 20px 16px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-menu-list::-webkit-scrollbar {
    display: none;
  }

  .tab-menu-list .tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background-color: #ffffff;
    border: 4px solid #f1f1f1;
    border-radius: 8px;
    color: #999;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .bottom-sheet-overlay.active {
    display: block;
    opacity: 1;
  }

  .bottom-sheet-container {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: #ffffff;
    border-radius: 40px 40px 0 0;
    display: flex;
    flex-direction: column;
    transition: bottom 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .bottom-sheet-overlay.active .bottom-sheet-container {
    bottom: 0;
  }

  .bottom-sheet-header {
    position: relative;
    padding: 80px 0 0;
    text-align: center;
  }

  .bottom-sheet-header .handle-bar {
    width: 40px;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    margin: 0 auto;
  }

  .bottom-sheet-header .btn-sheet-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url("/assets/user/images/common/icon-close.png"); /* 🎯 이미지 경로 확인 */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }

  .bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .banner-info {
    padding: 32px 20px;
  }
  .banner-title {
    margin-bottom: 8px;
    color: #4c22b4;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.2px;
  }
  .banner-sub {
    color: #111827;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -2px;
  }

  .section-activity-tabs .tab-menu-list {
    display: flex;
    gap: 24px !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: unset !important;
    padding: 32px 20px 20px;
  }

  .section-activity-tabs .tab-item {
    position: relative;
    display: flex;
    align-items: flex-end;
  }

  .section-activity-tabs .tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    color: #999;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
    padding: 0;
  }
  .section-activity-tabs .tab-content {
    padding: 0;
  }
  .main-wrapper .section-activity-tabs .accordion-body {
    padding: 30px;
  }

  .section-activity-tabs .tab-item:hover .tab-btn,
  .section-activity-tabs .tab-item.active .tab-btn {
    color: var(--color-primary);
    transform: translateY(-4px);
    padding: 16px 0 12px;
  }
  .section-activity-tabs .tab-item:hover::after,
  .section-activity-tabs .tab-item.active::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
  }
  .conference .tab-item.active .tab-btn,
  .gallery .tab-item.active .tab-btn,
  .submission .tab-item.active .tab-btn {
    border: 4px solid var(--color-primary);
  }

  .content-wrapper.conference .tab-item:hover .tab-btn,
  .content-wrapper.conference .tab-item.active .tab-btn,
  .content-wrapper.submission .tab-item:hover .tab-btn,
  .content-wrapper.submission .tab-item.active .tab-btn,
  .content-wrapper.gallery .tab-item:hover .tab-btn,
  .content-wrapper.gallery .tab-item.active .tab-btn {
    padding: 16px 20px !important;
  }
  .content-wrapper.conference .tab-btn,
  .content-wrapper.submission .tab-btn,
  .content-wrapper.gallery .tab-btn {
    padding: 16px 20px !important;
  }
  .swiper-slide {
    background-position: right center !important;
  }
}

/* 스크랩 관련 pc */
.bottom-sheet-overlay {
  display: none;
}
.scrap-container {
  background-color: #ffffff;
  width: 100%;
  max-width: 700px;
  padding: 56px;
}
.scrap-header {
  text-align: center;
}
.scrap-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -1px;
}
.scrap-header h1 span {
  color: var(--color-primary);
}
.scrap-header .title-line {
  width: 100%;
  height: 4px;
  background-color: #000000;
  margin-top: 56px;
}

.scrap-list {
  display: flex;
  flex-direction: column;
}
.scrap-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 20px;
  border-bottom: 1px solid #d1d1d1;
}

.item-content {
  flex: 1;
}
.item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 1000px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}
.badge.notice {
  border: 1px solid #ff2d55;
  color: #ff2d55;
}
.badge.event {
  border: 1px solid #767958;
  color: #767958;
}
.badge.member {
  border: 1px solid #718096;
  color: #718096;
}

.scrap-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}
.item-title {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  padding-right: 50px;
  text-decoration: unset;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-delete {
  background: none;
  border: none;
  color: #cbd5e0;
  cursor: pointer;
  padding: 4px;
}

.italic-text {
  font-style: italic;
}

/* 스크랩 관련 mo */
@media screen and (max-width: 1024px) {
  .scrap-container {
    padding: 0 20px;
  }
  .scrap-item {
    display: unset;
    padding: 24px;
  }
  .btn-delete {
    margin: 20px 24px 0 auto;
    display: block;
  }
  .item-title {
    padding: 0;
  }
  .scrap-header .title-line {
    margin-top: 8px;
  }
  .scrap-header h1 {
    font-size: 24px;
  }
}

/* 개인정보처리방침 관련 pc */
.privacy .container {
  max-width: 1260px;
  margin-bottom: 80px;
}

.privacy-body {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.privacy-article {
  padding: 16px 0;
}

.privacy-article.fs {
  margin: 16px 0 80px;
}

.privacy-article p {
  padding: 16px 0 4px 0;
}

.privacy-article h3 {
  padding: 16px 0 4px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.privacy-article .table-basic {
  min-width: 740px;
}

/* 개인정보처리방침 관련 mo */
@media (max-width: 768px) {
  .content-wrapper.privacy {
    padding: 48px 0;
  }
  .privacy .container {
    max-width: 1260px;
    margin-bottom: 80px;
  }
  .privacy-article.fs {
    margin: 0;
  }
  .privacy-section {
    padding: 0 20px;
  }
}
@keyframes txtfade {
  100% {
    opacity: 1;
  }
}
.banner-sub p {
  margin: 0; 
  opacity: 0;
  transform: translateY(30px); /* 30px 아래에 위치 */
  animation: slideUpFade 0.8s ease forwards; /* 0.8초 동안 애니메이션 실행 후 최종 상태 고정 */
}

/* 2. 각 p 태그별 순차적 시차(Delay) 부여 */
.banner-sub p:nth-child(1) {
  animation-delay: 0.1s;
}

.banner-sub p:nth-child(2) {
  animation-delay: 0.5s; /* 두 번째 줄 */
}

.banner-sub p:nth-child(3) {
  animation-delay: 0.7s; /* 세 번째 줄 */
}

/* 3. 애니메이션 동작 정의 */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 원래 위치로 부드럽게 안착 */
  }
}
