@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root {
  --swiper-theme-color: #007aff;
  --blue: rgb(0, 153, 255);
  --red: rgb(255, 91, 91);
  --purple: rgb(170, 110, 255);
  --yellow: rgb(255, 175, 45);
  --green: rgb(50, 193, 24);

  --text-gray: rgb(130, 130, 130);
  --text: rgb(44, 44, 44);

  --primary-light: #fff5fa;
  --box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1);
  --text-color: #323232;
  --gray: #ededed;
  --input-border: 1px solid #ccc;
  --border: 1px solid #ccc;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  line-height: 1;
  font-size: 16px;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  overflow: visible;
  border-radius: 0;
}

input,
select,
textarea {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  -webkit-text-size-adjust: none;
  font-size: 100%;
  vertical-align: middle;
  border: none;
  background: none;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

fieldset,
img {
  border: 0 none;
}

#components-reconnect-modal {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.ally-hidden {
  overflow: hidden;
  display: block;
  position: absolute;
  border: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*============ MainLayout ===============*/
.intro {
  position: relative;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}

.page {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: baseline;
  overflow: hidden;
}

.main-layout {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 30px 40px;
  gap: 28px;
  overflow-y: auto;
}

.nav {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 12px 0px;
  z-index: 200;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: baseline;
}

.nav__wrapper {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.nav-list {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.nav__item {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
}

.nav__item--login {
  display: flex;
  color: #0099ff;
  cursor: pointer;
  gap: 6px;
}

.nav__item--logo {
  display: flex;
  align-items: center;
  height: 40px;
  margin-right: 20px;
  padding: 0;
}

.nav__arrow{
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.nav__arrow.open{
  transform: rotate(180deg);
}

.nav-sub{
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 200px;
  transform: translateY(100%);
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 12px 0px;
  gap: 16px;
  overflow: hidden;
}

.nav-sub__item{
  display: flex;
  align-items: center;
  font-size: 16px;
  text-align: left;
  gap: 6px;
}

.nav-sub__item--mail{
  display: inline-block;
  width: 100%;
  padding-bottom: 16px;
  font-size: 14px;
  border-bottom: 1px solid #0099ff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-sub__item--logout{

}

.nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  margin-bottom: auto;
  background-color: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  line-height: 1;
}

.nav-sub__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  margin-left: auto;
  background-color: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  line-height: 1;
}

.m-nav-list {
  display: none;
}

.m-nav-menu {
  display: none;
}

.m-nav-close {
  display: none;
}

/* .nav__item:hover {
  color: var(--swiper-theme-color);
}

.nav__item.active {
  color: var(--swiper-theme-color);
  font-weight: 700;
} */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 60px 16px;
  background-color: rgb(44, 44, 44);
}

.footer--wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.footer--nav {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 40px 0;
  font-size: 16px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.logo--wrapper {
  max-width: 88px;
  display: flex;
  padding-bottom: 40px;
}

.address-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.address-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  line-height: 19px;
  margin-bottom: 12px;
}

.stick {
  padding: 0px 16px;
}

@media (max-width: 1100px) {
  .nav {
    position: relative;
    justify-content: space-between;
  }

  .nav__wrapper {
    height: 50px;
    padding: 0 20px;
  }

  .nav-list {
    display: none;
  }

    .nav-list {
    display: none;
  }

  .nav-sub{
    display: none;
  }

  .m-nav-list {
    position: fixed;
    display: none;
    right: 0;
    top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    transition: 0.3s;
    background-color: #ffffff;
    z-index: 300;
  }

  .m-nav-list.active {
    display: block;
    transform: translateX(0px);
  }

  .m-nav-list .m_nav__item {
    display: block;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    padding: 20px;
    border-bottom: 1px solid rgb(238, 238, 238);
  }

  .nav__item--logo > img {
    display: flex;
    width: 63px;
    height: 30px;
  }

  .m-nav-menu {
    display: flex;
  }

  .m-nav-menu.active {
    display: none;
  }

  .m-nav-close.active {
    display: flex;
  }
}

@media only screen and (max-width: 768px) {
  .logo--wrapper {
    padding-bottom: 20px;
  }

  .logo--wrapper > img {
    max-width: 64px;
  }

  .footer--nav {
    font-size: 8px;
    line-height: 10px;
    padding: 20px 0;
  }

  .address-box {
    flex-wrap: wrap;
    font-size: 8px;
    line-height: 10px;
  }

  .stick {
    padding: 0px 8px;
  }
}

/*=======================*/
.tmp-container {
  width: 100%;
}

/* section1 - 스윙만의 특별함 */
.first-section {
  display: flex;
  width: 100%;
  padding: 120px 16px;
  background-color: rgb(249, 249, 249);
}

/* section2 - 통합 경영관리 서비스 */
.second-section {
  width: 100%;
  padding: 120px 0;
}

/* section3 - 컨시어지 서비스 */
.third-section {
  width: 100%;
  padding: 120px 16px;
  background-color: rgb(249, 249, 249);
}

/* SaaS section */
.section-container {
  padding: 120px 0px;
  text-align: center;
}

.section--wrapper {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.main-title {
  font-size: 44px; /* 메인 타이틀 크기 */
  font-weight: 800;
  margin-bottom: 20px; /* 서브 타이틀과 간격 */
  line-height: 53px;
}

.sub-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  color: var(--blue);
}

.description {
  font-size: 20px;
  line-height: 24px;
  color: var(--text);
}

.section--title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.section--title.saas-title {
  padding-bottom: 12px;
}

.section--subtitle {
  font-size: 20px;
  line-height: 24px;
  color: var(--text-gray);
}

.section--subtitle.second {
  font-weight: 700;
  color: var(--blue);
}

.section--subtitle.third {
  font-weight: 600;
  color: var(--blue);
}

.section--subtitle.fourth {
  font-weight: 600;
  color: var(--text-gray);
  margin-top: 12px;
}

.box--div {
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.box--title {
  line-height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

.box--text {
  /* flex-shrink: 0;
  font-weight: 700; */
  font-size: 16px;
  line-height: 24px;
}

.box--content {
  font-size: 16px;
  line-height: 19px;
  color: #898989;
}

.title--wrapper {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0px auto 60px;
}

.wrapper--flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box--long {
  width: 100%;
  display: flex;
  gap: 72px;
  padding: 32px 60px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 12px;
}

@media only screen and (max-width: 1100px) {
  .section-container {
    padding: 40px 16px;
  }

  .section--title.saas-title {
    font-size: 20px;
    line-height: 24px;
  }

  .section--subtitle.saas-subtitle {
    font-size: 12px;
    line-height: 14px;
  }

  .saaspage > .section--title.saas-title {
    font-size: 40px;
    line-height: 48px;
  }

  .saaspage > .section--subtitle.saas-subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .first-section {
    height: auto;
    padding: 40px 16px;
  }

  .third-section {
    padding: 40px 16px;
    height: auto;
  }

  .section--wrapper {
    width: 100%;
  }

  .main-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 24px;
  }

  .sub-title {
    font-size: 12px;
    line-height: 14px;
  }

  .wrapper--flex {
    gap: 12px;
  }

  .text-wrapper {
    gap: 8px;
    -webkit-box-align: center;
    align-items: center;
    white-space: pre-wrap;
    text-align: center;
  }

  .text-wrapper .title {
    font-size: 16px;
    line-height: 19px;
  }

  .text-wrapper .description {
    font-size: 12px;
    line-height: 14px;
  }

  .box--long {
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .box--text {
    font-size: 12px;
    line-height: 14px;
  }

  .box--content {
    font-size: 12px;
    line-height: 14px;
  }

  .saaspage > .section--title.saas-title {
    font-size: 20px;
    line-height: 24px;
  }

  .saaspage > .section--subtitle.saas-subtitle {
    font-size: 12px;
    line-height: 14px;
  }
}

/*============ 상단 타이틀 ===============*/
.top--title--section {
  width: 100%;
  padding: 120px 0 80px;
  background: linear-gradient(
    360deg,
    rgb(206, 235, 255) 0%,
    rgb(255, 255, 255) 100%
  );
  position: relative;
  overflow: hidden;
}

.top--title--wrapper {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  text-align: center;
  margin-bottom: 120px;
  color: var(--blue);
}

/* SaaS 상단 타이틀 */
.top--title--section.saas {
  padding: 120px 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(170, 110, 255, 0.3) 100%
  );
  color: rgb(170, 110, 255);
}

.top--title--wrapper.saas {
  color: rgb(170, 110, 255);
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .top--title--section {
    height: auto;
    padding: 80px 0px;
  }

  .top--title--wrapper {
    margin-bottom: 80px;
  }

  .top--title--section.saas {
    padding: 80px 0px;
  }
}
/*============= 통합 경영관리 서비스 ===========*/

.service {
  padding: 0px 16px;
}

.service-content {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 22px 0;
}

.service-description {
  font-size: 24px;
  line-height: 36px;
}

.service-description > span {
  font-weight: 600;
  color: var(--blue);
}

.service-description.end {
  text-align: end;
}

.service-caption {
  font-size: 16px;
  line-height: 24px;
  text-align: end;
  margin-top: 60px;
}

.service-caption > a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
}

.service-content-box {
  display: flex;
}

.service-content > .service-content-box > .text-icon {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
}

.service-content > .service-content-box > .text-icon > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.service-content > .service-content-box > .reverse-margin {
  margin-right: -30px;
}

.service-content > .service-content-box > .margin {
  margin-right: 34px;
}

.service-content > .service-content-box > div image {
  display: flex;
}

@media only screen and (max-width: 1100px) {
  .second-section {
    height: auto;
    padding: 40px 16px;
  }

  .service-content {
    flex-direction: column;
    margin: 20px 0px;
    padding: 0px;
  }

  .service-description {
    font-size: 12px;
    line-height: 18px;
    white-space: pre-wrap;
    text-align: center;
  }

  .service-description.end {
    text-align: center;
  }

  .service-caption {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 40px;
  }
  .service-content > .service-content-box > .text-icon {
    width: 112.5px;
    height: 120px;
  }

  .service-content-box.arrow .margin > img {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .service-content > .service-content-box > .text-icon > p {
    font-size: 9px;
    line-height: 11px;
  }

  .service-content > .service-content-box > .text-icon > img {
    width: 75px;
    height: 75px;
  }

  .service-content > .service-content-box > .reverse-margin {
    margin-right: 0;
  }
  .service-content > .service-content-box > .margin {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .title--wrapper {
    margin: 0px auto 40px;
  }

  .section--title {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    white-space: pre-wrap;
  }

  .section--subtitle {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }
}

/*=========== Concierge =============*/
.four-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.four-card-list > button {
  height: 120px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: var(--blue);
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--blue);
  border-radius: 4px;
  cursor: pointer;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.four-card-list > button.active {
  background-color: var(--blue);
  color: rgb(255, 255, 255);
}

.four-card-list > button:hover {
  background-color: var(--blue);
  color: rgb(255, 255, 255);
}

@media only screen and (max-width: 768px) {
  .four-card-list {
    gap: 8px;
  }
  .four-card-list > button {
    height: 60px;
    font-size: 12px;
    line-height: 14px;
  }
}

/*============ SaaS할인 서비스 =================*/
.saas-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  /*height: 548px;*/
  padding: 120px 0;
  overflow: hidden;
}

.saas-container.saaspage {
  background-color: rgb(249, 249, 249);
}

.saas-container > .horizontal-wrapper {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 60px 0;
}

.saas-container > a {
  max-width: 206px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 40px;
  color: rgb(255, 255, 255);
  background-color: rgb(44, 44, 44);
  border-radius: 4px;
}

.saas-container > .horizontal-wrapper > .horizontal-content {
  display: flex;
  height: 48px;
  -webkit-box-align: center;
  align-items: center;
  flex-shrink: 0;
  gap: 80px;
  animation: 10000ms linear 0s infinite normal backwards running animation-saas;
  padding-left: 80px;
}

.saas-content {
  max-width: 1180px;
  width: 100%;
  height: 700px;
  display: flex;
  gap: 20px;
  margin: 60px auto;
  overflow: hidden;
  mask-image: linear-gradient(
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1)
  );
}

.consultant-btn {
  max-width: 206px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 40px;
  border-radius: 4px;
  background-color: rgb(170, 110, 255);
  color: rgb(255, 255, 255);
}

@media only screen and (max-width: 1100px) {
  .saas-content {
    max-width: fit-content;
    height: 400px;
    gap: 8px;
  }

  .consultant-btn {
    font-size: 12px;
    line-height: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .saas-container {
    height: auto;
    padding: 40px 16px;
  }

  .saas-container > .section--subtitle {
    white-space: pre-wrap;
  }

  .saas-container > .horizontal-wrapper {
    margin: 40px 0px;
  }

  .saas-container > a {
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
  }

  .saas-container > .horizontal-wrapper > .horizontal-content {
    height: 21px;
    gap: 40px;
    padding-left: 40px;
  }

  .saas-container > .horizontal-wrapper > .horizontal-content .saas-img-item {
    height: 14px;
  }
}

@keyframes animation-saas {
  0% {
    transform: translate(0px);
  }
  100% {
    transform: translate(-100%);
  }
}

/*============= 자가 진단 ==============*/
.selfcheck-container {
  /* height: 808px; */
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 120px 16px;
  background-color: rgb(44, 44, 44);
  color: rgb(255, 255, 255);
}

.selfcheck-container > div {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 16px;
  margin: 60px 0;
}

.selfcheck-container > div > p {
  font-size: 24px;
  line-height: 34px;
  white-space: pre-wrap;
  text-align: center;
}

.selfcheck-container > div > p > span {
  font-weight: 700;
  color: var(--blue);
}

.selfcheck-container > button {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 40px;
  color: rgb(44, 44, 44);
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .selfcheck-container {
    height: auto;
    padding: 40px 16px;
  }

  .selfcheck-container > div {
    gap: 12px;
    margin: 40px 0;
  }

  .selfcheck-container > div > p {
    font-size: 12px;
    line-height: 14px;
    white-space: pre-wrap;
    text-align: center;
  }

  .selfcheck-container > button {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }
}
/*============ Modal ===============*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);

  &.active {
    display: flex;
  }
}

@media only screen and (max-width: 1100px) {
  .modal-overlay {
    padding: 0 16px;
  }
}

/* section6 - 고객 성장 사례  */
.carousel-section {
  display: flex;
  flex-direction: column;
  padding: 120px 0;
  background-color: rgb(249, 249, 249);
}

.carousel-section .carousel-section-title {
  padding: 0px 16px;
}

.swiper {
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1)
  );
}

.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper .swiper-wrapper .swiper-slide {
  min-height: 240px;
  height: auto;
  padding: 31px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 4px;
}

.swiper-slide > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.swiper-slide > div > .swiper-slide__title {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.swiper-slide > div > .swiper-slide__author {
  line-height: 24px;
}

.swiper-slide .swiper-slide__description {
  line-height: 19px;
  color: rgb(137, 137, 137);
}

@media only screen and (max-width: 768px) {
  .carousel-section {
    height: auto;
    padding: 40px 0px;
  }

  .swiper {
    mask-image: none;
  }

  .swiper .swiper-wrapper .swiper-slide {
    min-height: 160px;
    padding: 16px;
  }

  .swiper-slide > div {
    margin-bottom: 16px;
  }

  .swiper-slide > div > .swiper-slide__title {
    font-size: 16px;
    line-height: 19px;
  }

  .swiper-slide > div > .swiper-slide__author {
    font-size: 12px;
    line-height: 14px;
  }

  .swiper-slide .swiper-slide__description {
    font-size: 12px;
    line-height: 14px;
  }
}

/*============ 기존 -> 스윙.. ===============*/
.eight-section {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  height: 522px;
  background-color: rgb(249, 249, 249);
  padding: 60px 16px 120px;
}

.eight-section-card {
  padding: 36px 32px;
  border-radius: 60px;
}

.eight-section-wrapper {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}

.eight-section-white {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 153, 255);
  border: 1px solid rgb(192, 229, 255);
}

.eight-section-white > p {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.eight-section-blue {
  background-color: rgb(0, 153, 255);
  color: rgb(255, 255, 255);
}

.eight-section-blue > p {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.eight-section-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin-top: 32px;
}

.eight-section-list > li > span {
  margin-right: 12px;
}

@media only screen and (max-width: 1100px) {
  .eight-section {
    height: auto;
    padding: 40px 16px;
  }

  .eight-section-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .eight-section-wrapper > img {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .eight-section-white {
    padding: 20px 25px;
  }

  .eight-section-white > p {
    font-size: 20px;
    line-height: 24px;
  }

  .eight-section-blue > p {
    font-size: 20px;
    line-height: 24px;
  }

  .eight-section-list {
    margin-top: 20px;
    font-size: 12px;
    line-height: 14px;
    gap: 8px;
  }
}

/*=================*/

.ninth-section {
  height: 520px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: linear-gradient(
    93.92deg,
    rgb(123, 54, 235) 0%,
    rgb(101, 154, 255) 100.91%
  );
}

.ninth-section > img {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.ninth-section > p {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: rgb(255, 255, 255);
  margin: 40px 0;
}

.ninth-section > button {
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .ninth-section {
    height: auto;
    padding: 40px 16px;
  }

  .ninth-section > img {
    width: 120px;
    height: 120px;
  }

  .ninth-section > p {
    font-size: 16px;
    line-height: 19px;
    margin: 20px 0px;
    white-space: pre-wrap;
    text-align: center;
  }

  .ninth-section > button {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
  }
}

/* ninth section 꿀팁 - swiper */
.swiper2 {
  width: 100%;
}

.swiper2 > .swiper-wrapper {
  width: 100%;
}

.swiper2 > .swiper-wrapper > .swiper-slide {
  width: 100%;
  max-width: 1000px;
  min-width: 600px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 60px 20px;
  background-color: rgb(255, 255, 255);
}

.swiper2 > .swiper-wrapper > .swiper-slide > .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  padding-bottom: 40px;
  color: #000000;
}

.swiper2 > .swiper-wrapper > .swiper-slide > img {
  width: 100%;
  height: 100%;
}

/*========= 가격 안내 ===========*/

.tenth-section {
  padding: 120px 16px 0;
}

.tenth-wrapper {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.price-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

.price-sub-title {
  font-size: 20px;
  color: rgb(130, 130, 130);
  line-height: 24px;
  text-align: center;
  margin-top: 12px;
}

.price-info-list {
  /* min-height: 500px; */
  display: flex;
  gap: 40px;
  white-space: pre-wrap;
  margin: 40px 0;
}

.price-info-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  border: 1px solid rgba(0, 153, 255, 0.8);
  border-radius: 16px;
}

.price-info-item-title-wrapper {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 20px 0;
  color: #ffffff;
  background-color: #0099ff;
  border-radius: 14px 14px 0 0;
}
.price-info-item-title-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 153, 255, 0.8);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.price-info-item-sub-title-wrapper {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 30px 0;
}
.price-info-item-sub-title-wrapper::after {
    content: "";
    position: absolute;
    left: 24px;      /* 원하는 여백(px) */
    right: 24px;     /* 원하는 여백(px) */
    bottom: 0;
    height: 0;
    border-bottom: 1px solid rgba(0, 153, 255, 0.8);
    pointer-events: none;
}

.spacing {
  flex: 0 0 auto;
  height: 19px;
}

.price-info-item-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
  line-height: 19px;
  flex: 1 1 0%;
}

.price-info-item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.price-info-item-content {
  font-size: 20px;
}

.price-info-item-content2 {
  font-size: 16px;
  line-height: 24px;
  color: rgb(130, 130, 130);
}

.price-info-item-content-wrapper2 {
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  gap: 12px;
  padding: 30px 0;
  line-height: 19px;
  flex: 1 1 0%;
}

.price-info-item-content3 {
  margin-left: 5%;
  font-size: 14px;
  line-height: 24px;
  color: rgb(130, 130, 130);
}

.price-info-item-price {
  background-color: #0099ff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  margin-top: auto;
  padding: 20px 0px;
  border-radius: 0 0 14px 14px;
}

.price-info-item-price > span {
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
}

.price-info-item-price2 {
  background-color: #7200b0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  margin-top: auto;
  padding: 20px 0px;
  border-radius: 0 0 14px 14px;
}
.price-info-item-price2 > span {
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
}

.price-description {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 22px;
  color: rgb(130, 130, 130);
  margin: 0 auto 120px;
}

.price-description > p {
  width: 100%;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .tenth-section {
    padding: 40px 16px;
  }

  .price-info-list {
    flex-direction: column;
    margin: 40px 0px 12px;
    gap: 20px;
  }

  .price-title {
    font-size: 20px;
    line-height: 24px;
  }

  .price-sub-title {
    font-size: 12px;
    line-height: 14px;
  }
  .price-info-item-sub-title-wrapper {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    padding: 16px 14px;
  }

  .price-info-item-content-wrapper {
    min-height: 80px;
    justify-content: center;
    -webkit-box-pack: center;
    padding: 16px 14px;
    gap: 4px;
  }
  .price-info-item-content-wrapper2 {
    min-height: 80px;
    justify-content: center;
    -webkit-box-pack: center;
    padding: 16px 14px;
    gap: 4px;
  }

  .price-info-item-content,
  .price-info-item-content2 {
    font-size: 12px;
    line-height: 14px;
  }

  .price-info-item-title {
    font-size: 16px;
    line-height: 19px;
  }

  .price-info-item-price {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 0px;
  }

  .price-info-item-price2 {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 0px;
  }

  .price-description {
    margin: 0 auto 40px;
    font-size: 12px;
  }
}

.apply-section {
  display: flex;
  justify-content: center;
  padding: 40px 0 120px;
}
.consultation-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.consultation-title {
  background: linear-gradient(
    90deg,
    rgb(123, 54, 235) 0%,
    rgb(101, 154, 255) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin-bottom: 12px;
}

.consultation-title > span {
  color: white;
}

.consultation-description {
  color: rgb(44, 44, 44);
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.consultation-form {
  position: relative;
  width: 100%;
  max-width: 544px;
  padding: 47px 40px 40px;
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  border: 1px solid rgb(204, 204, 204);
  margin-top: 40px;
  gap: 20px;
}

.consultation-form > div > .counsultation-wrapper2 {
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: baseline;
  padding-bottom: 20px;
}

/* .consultation-wrapper > .counsultation-wrapper2 > label {
  display: flex;
  flex-direction: column;
} */

.consultation-wrapper > .counsultation-wrapper2 > label > span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: rgb(136, 136, 136);
}

.consultation-input {
  width: 100%;
  padding: 10.5px 0px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid rgb(204, 204, 204);
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 16px;
}

.consultation-wrapper > .counsultation-wrapper2 > .textarea {
  width: 100%;
  height: 160px;
  padding: 20px;
  border: 1px solid rgb(204, 204, 204);
  margin-top: 10px;
  resize: none;
}

.consultation-button {
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: white;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgb(123, 54, 235) 0%,
    rgb(101, 154, 255) 100%
  );
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .apply-section {
    padding: 0;
  }

  .consultation-wrapper {
    gap: 8px;
  }

  .consultation-title {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    white-space: pre-wrap;
  }

  .consultation-description {
    font-size: 12px;
    line-height: 14px;
  }

  .consultation-form {
    padding: 24px 20px;
  }
}

/*======= 스크롤 ======*/

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-container.horizontal {
  display: flex;
  white-space: nowrap;
}

.scroll-content.horizontal {
  display: flex;
  gap: 20px;
}

.scroll-left {
  margin-bottom: 20px;
}

/* 상하 스크롤 스타일 */
.scroll-container.vertical {
  display: block;
}

.scroll-content.vertical {
  display: block;
  /* min-width: 380px; */
}

/* 개별 아이템 스타일 */
.scroll-item {
  border-radius: 20px;
}

.scroll-item:nth-last-child(1) {
  margin-right: 20px;
}

.scroll-item.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  font-size: 20px;
  line-height: 19px;
  background-color: rgb(255, 255, 255);
  padding: 13px 20px;
}

.scroll-item.text {
  font-size: 19px;
  line-height: 25px;
  padding: 10px 20px;
  color: rgb(0, 101, 169); /* 텍스트 컬러 */
  background-color: rgba(255, 255, 255, 0.48); /* 텍스트 배경 */
  white-space: nowrap;
}

.scroll-content-item {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0px;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 20px;
}

.scroll-content-item .partner-icon {
  display: flex;
}

.scroll-content-item .partner-icon-m {
  display: none;
}

.scroll-content-item .partner {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px;
}

.scroll-content-item .partner .partner-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.scroll-content-item .partner .partner-desc {
  font-size: 16px;
  line-height: 19px;
  color: rgb(42, 42, 42);
}

.scroll-left .scroll-content {
  animation: 20000ms linear 0s infinite normal backwards running scrollLeft;
}

.scroll-right .scroll-content {
  animation: 20000ms linear 0s infinite normal backwards running scrollRight;
}

.scroll-up .scroll-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  animation: 10000ms linear 0s infinite normal backwards running scrollUp;
}

.scroll-down .scroll-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  animation: 10000ms linear 0s infinite normal backwards running scrollDown;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1100px) {
  .scroll-up .scroll-content {
    gap: 8px;
    padding-top: 8px;
  }

  .scroll-wrapper.pc {
    display: none;
  }

  .scroll-content-item {
    padding: 16px 8px;
    border-radius: 8px;
    gap: 16px;
  }

  .scroll-content-item .partner-icon {
    display: none;
  }

  .scroll-content-item .partner-icon-m {
    display: flex;
  }
  .scroll-content-item .partner {
    gap: 8px;
  }

  .scroll-content-item .partner .partner-title {
    font-size: 12px;
    line-height: 14px;
  }

  .scroll-content-item .partner .partner-desc {
    font-size: 10px;
    line-height: 12px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 768px) {
  .scroll-item {
    height: 28px;
    border-radius: 14px;
  }

  .scroll-item.text {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 12px;
  }

  .scroll-item.icon {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 12px;
  }

  .scroll-left {
    margin-bottom: 12px;
  }

  .scroll-content.horizontal {
    gap: 12px;
  }
}

/*========== 모달 알림 ============*/
.modal-notification {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
  white-space: pre-wrap;
}

.modal-notification-btn {
  background: white;
  color: black;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
}

@keyframes slideDown {
  from {
    top: -50px;
    opacity: 0;
  }
  to {
    top: 20px;
    opacity: 1;
  }
}

/*======= 모달 스크롤 ======*/
.slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  visibility: hidden;
}

.modal-slider-wrapper {
  /*position: relative;*/
  width: 100%;
  height: 150px;
  overflow: hidden;
  padding: 3px 0;
  cursor: grab;

  &.active {
    cursor: grabbing;
  }
}

.modal-slider-items {
  display: flex;
  position: absolute;
  width: 500%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.modal-slider-items.active {
  transition: 0.3s;
}

.modal-slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  pointer-events: none;
  position: relative;
  padding: 60px 20px;
  margin-right: 40px;
  background-color: #ffffff;
  .content {
    width: 100%;
    height: 430px; /* You can adjust this as needed */
    /* border: 1px solid #c8c8c8; */
    /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05); */
    border-radius: 4px;
    /* background-color: #fff; */
    font-weight: 700;
    font-size: 50px;
    color: black;
    background-size: contain; /* Ensures the image covers the entire content area */
    background-position: center; /* Centers the image within the container */
    background-repeat: no-repeat; /* Prevents the image from repeating */
  }
}

.modal-slider-item > .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  color: #000000;
  padding-bottom: 40px;
}

@media only screen and (max-width: 1100px) {
  .slider {
    padding: 0px 16px;
  }
}

/* faq page */
.faq-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(-305px + 100dvh);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgb(238, 238, 238);
  padding: 40px 80px;
  z-index: 10;
}

.faq-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 40px 140px 54px;
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 12px;
}

.faq-inner > h2 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(0, 153, 255);
}

.expander > button {
  display: flex;
  align-items: center;
  text-align: start;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  padding: 30px 0;
  gap: 4px;
  cursor: pointer;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.expander > button > img {
  display: flex;
  width: 28px;
  height: 28px;
}

.expander > button > img:last-of-type {
  margin-left: auto;
}

.expander-content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  line-height: 24px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  padding: 0 32px;
  gap: 4px;
  border-bottom: 0px;
  background-color: rgb(238, 238, 238);
  white-space: pre-line;
}

.expander-content.active {
  max-height: 500px;
  padding: 20px 32px;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.expander-content > .faq-list__title {
  margin-bottom: 6px;
}

.faq-list__contents {
  display: flex;
  flex-direction: column;
}

.faq-list__contents > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.expander-content > img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgb(204, 204, 204);
  margin-top: 10px;
}

.expander-icon {
  transition: transform 0.2s ease;
}

.expander-icon.rotated {
  transform: scaleY(-1);
}

@media only screen and (max-width: 1100px) {
  .faq-inner {
    padding: 40px 60px 54px;
  }

  .faq-inner > h2 {
    font-size: 20px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 768px) {
  .faq-wrapper {
    padding: 0;
  }

  .faq-inner {
    min-height: calc(-50px + 100dvh);
    border-radius: 0px;
    padding: 20px 20px 40px;
  }

  .expander > button {
    font-size: 15px;
    line-height: 20px;
    padding: 20px 0px;
  }

  .expander-content {
    max-height: 0;
    padding: 0 20px;
    font-size: 14px;
  }

  .expander-content.active {
    max-height: 1000px;
    padding: 20px;
  }

  .expander > button > img {
    width: 20px;
    height: 20px;
  }
}

/* 개인정보 및 이용약관 상단 nav */
.terms-privacy-nav {
  display: flex;
  max-width: 1440px;
  padding: 20px;
  margin: 0 auto;
}

.terms-privacy-nav .nav__item--logo > img {
  width: 60px;
  height: 60px;
}

/* 개인정보 및 이용약관 - layout */
.terms-privacy-main {
  width: 100%;
  /* height: calc(100vh - 80px); */
  background-color: #f9f9f9;
  padding: 40px 0;
}

.terms-privacy-wrap {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* 개인정보 및 이용약관 - 목차 */
.terms-privacy-sidenav {
  position: fixed;
  width: 100%;
  max-width: 300px;
  height: fit-content;
  padding: 20px;
  border-radius: 16px;
  background-color: #ffffff;
  /* box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1); */
}

.terms-privacy-sidenav__title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 12px;
}

.terms-privacy-sidenav__list {
  display: flex;
  flex-direction: column;
  line-height: 20px;
  gap: 6px;
}

.terms-privacy-sidenav__list > li > a:hover {
  color: #3498db;
  font-weight: 600;
}

/* 개인정보 및 이용약관 - 메인 컨텐츠 */
.terms-privacy-contents {
  line-height: 24px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-left: 320px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-privacy-contents__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  padding-bottom: 40px;
}

.terms-privacy-contents__subtitle {
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #3b4fbf;
}

.terms-privacy-contents__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-privacy-contents__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-privacy-contents__items > ul {
  list-style-type: disc;
  padding-left: 16px;
}

.terms-privacy-contents__items > ul > li > span {
  font-weight: 600;
}

.terms-privacy-contents__items .text-indent1 {
  padding-left: 16px;
}

.terms-privacy-contents__items .text-indent2 {
  padding-left: 24px;
}

/* 개인정보 및 이용약관 - 표 */
.terms-privacy-table {
  font-size: 15px;
  text-align: center;
  border: 1px solid #f5f5f5;
}

.terms-privacy-table > thead {
  font-weight: 500;
  background-color: #f5f5f5;
}

.terms-privacy-table > tbody > tr {
  border-bottom: 1px solid #f5f5f5;
}

.terms-privacy-table > thead > tr > th {
  padding: 4px 0;
}

.terms-privacy-table > tbody > tr > td {
  padding: 4px 0;
}

/* 토커 챗봇 버튼 */
.talker-button {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: #b1deff;
  border: 2px solid #fff;
  z-index: 10;
  right: 40px;
  bottom: 40px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.talker-button:hover {
  transform: scale(1.1);
}

.talker-button__chatbot {
  position: absolute;
  /* content: ""; */
  width: 58px;
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.talker-button__background {
  width: 116px;
  height: 116px;
}
@keyframes talkerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 토커 챗봇 모달 */
.talker-modal {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 400px;
  height: 64vh;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
}

.talker-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.talker-modal__close-container {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  justify-content: flex-end;
  align-items: center;
  /* background-color: #f8fafc; */
  padding: 8px;
}

.talker-modal__close {
  width: 24px;
  height: 24px;
  background-image: url(/img/icon_close_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1440px) {
  .talker-modal {
    width: 380px;
    height: 80vh;
  }
}

@media only screen and (max-width: 1100px) {
  /* 토커 챗봇 버튼 */
  .talker-button {
    width: 96px;
    height: 96px;
  }

  .talker-button__chatbot {
    width: 46px;
    height: 46px;
  }

  .talker-button__background {
    width: 92px;
    height: 92px;
  }
}

@media only screen and (max-width: 768px) {
  /* 토커 챗봇 버튼 */
  .talker-button {
    width: 84px;
    height: 84px;
    right: 20px;
    bottom: 20px;
  }

  .talker-button__chatbot {
    width: 40px;
    height: 40px;
  }

  .talker-button__background {
    width: 80px;
    height: 80px;
  }

  /* 토커 챗봇 모달 */
  .talker-modal {
    width: 100%;
    max-width: 420px;
    /* height: calc(100dvh - 39px); */
    height: 100dvh;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
  }

  .talker-modal__close {
    width: 20px;
    height: 20px;
  }
}


.loading-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 카테고리 카드 공통 스타일 (구독 현황 등) */
.category-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.category-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}

.category-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* 선택된 카테고리 카드 스타일 */
.category-card--selected {
  border: 2px solid #8a8a8a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.category-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-card__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.category-card--blue .category-card__badge {
  background: #E3F2FD;
  color: #1976D2;
}

.category-card--green .category-card__badge {
  background: #E8F5E9;
  color: #388E3C;
}

.category-card--orange .category-card__badge {
  background: #FFF3E0;
  color: #F57C00;
}

.category-card--gray .category-card__badge {
  background: #F5F5F5;
  color: #757575;
}

.category-card__count {
  font-size: 14px;
  color: #8A8A8A;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-card__label {
  font-size: 13px;
  color: #8A8A8A;
}

.category-card__value {
  font-size: 15px;
  font-weight: 600;
  color: #4B4B4B;
}

/* 테이블 헤더 드롭다운 */
.table-header-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.table-header-dropdown:hover {
  background: #F5F5F5;
}

.table-header-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  z-index: 100;
  overflow: hidden;
}

.dropdown-menu-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  font-size: 14px;
  color: #333;
  background: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-menu-item:hover {
  background: #F5F5F5;
}

.dropdown-menu-item.active {
  background: #E6F4FF;
  color: #0099FF;
  font-weight: 600;
}

/* 햄버거 메뉴 버튼 - 기본적으로 숨김 */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hamburger-menu:hover {
  background: #F5F5F5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger-menu:active {
  transform: scale(0.95);
}

/* 모바일 백드롭 - 기본적으로 숨김 */
.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-backdrop.show {
  display: block;
  opacity: 1;
}

/* 모바일 (768px 이하) */
@media only screen and (max-width: 768px) {
  /* 햄버거 버튼 표시 */
  .hamburger-menu {
    display: flex;
  }

  /* 사이드바를 화면 밖으로 이동 */
  .sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    width: 280px;
    z-index: 1000;
    transition: left 0.3s ease;
    background: white;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }

  /* 사이드바 열렸을 때 */
  .sidebar.mobile-open {
    left: 0;
  }

  /* 메인 콘텐츠가 전체 너비 사용 (사이드바 공간 제거) */
  .main-layout {
    position: relative;
    margin-left: 0 !important;
    width: 100% !important;
  }

  .main {
    margin-left: -240px !important;
    width: 100% !important;
    padding: 16px;
  }
}

/* 태블릿 (768px ~ 1100px) */
@media only screen and (min-width: 769px) and (max-width: 1100px) {
  /* 사이드바 너비 축소 */
  .sidebar {
    width: 200px;
  }

  .main {
    padding: 20px 24px;
  }
}


@media only screen and (max-width: 768px) {
  /* 네비게이션 바 패딩 축소 */
  .nav__wrapper {
    padding: 12px 16px;
    gap: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  /* 로고가 flex-grow하지 않도록 */
  .nav__item--logo {
    flex-shrink: 0;
  }

  /* 아이콘 그룹을 오른쪽으로 */
  .nav__icon-group {
    margin-left: auto;
  }

  /* NavMenu 햄버거 버튼 */
  .nav__hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav__hamburger svg {
    width: 24px;
    height: 24px;
  }

  /* 모바일 아이콘 그룹 */
  .nav__icon-group {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .nav__icon-btn {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav__icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .nav__badge--small {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 16px;
    height: 16px;
    padding: 2px 4px;
    font-size: 10px;
    background: #FF4444;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__username {
    font-weight: 500;
    color: #0099FF;
    white-space: nowrap;
    display: contents;
  }

  /* nav-list 숨기기 */
  .nav-list {
    display: none;
  }

  /* 로고 크기 축소 */
  .nav__item--logo img {
    height: 32px;
    max-height: 32px;
  }

  /* 네비게이션 리스트 간격 축소 */
  .row-wrapper {
    gap: 8px;
  }

  /* 배지 크기 축소 */
  .nav__badge {
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    padding: 2px 5px;
  }

  /* 드롭다운 서브 메뉴 */
  .nav-sub {
    right: 16px;
    max-width: calc(100vw - 32px);
  }

  .nav-sub__item {
    font-size: 13px;
    padding: 10px 14px;
  }

  .nav-sub__badge {
    font-size: 10px;
    min-width: 18px;
    height: 18px;
  }
}

@media only screen and (max-width: 768px) {
  /* 테이블을 카드 형태로 변환 */
  .table-container {
    overflow: visible;
  }

  table {
    display: block;
    overflow: visible;
  }

  thead {
    display: none; /* 테이블 헤더 숨김 */
  }

  tbody {
    display: block;
  }

  tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 16px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  tr:last-child {
    margin-bottom: 0;
  }

  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #F5F5F5;
    min-height: 44px; /* 터치 친화적 */
  }

  td:last-child {
    border-bottom: none;
  }

  /* 데이터 레이블 추가 (data-label 속성 사용) */
  td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #666;
    font-size: 13px;
    flex-shrink: 0;
    margin-right: 16px;
  }

  /* 액션 버튼 영역 */
  td .action-buttons,
  td .btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  /* 버튼 크기 조정 */
  td button,
  td .btn {
    font-size: 13px;
    padding: 8px 12px;
    min-height: 36px;
  }

  /* 체크박스 영역 */
  td input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
  }

  /* 테이블 내 링크 */
  td a {
    font-size: 14px;
    word-break: break-word;
  }

  /* 상태 배지 */
  td .badge,
  td .status-badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  /* 테이블 페이지네이션 */
  .pagination {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .pagination button,
  .pagination a {
    min-width: 36px;
    min-height: 36px;
    font-size: 13px;
  }

  /* ===== 모든 테이블 공통 모바일 카드 레이아웃 ===== */
  /* 테이블 헤더 숨기기 */
  .table .table__header {
    display: none;
  }

  /* 모바일에서 숨길 컬럼 */
  .mobile-hide {
    display: none !important;
  }

  /* 테이블 리스트 스타일 초기화 */
  .table__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* 테이블 아이템을 카드로 변환 (div 또는 li) */
  .table__item,
  .request__item {
    display: block !important;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .request__item {
    padding: 0;
    overflow: hidden;
  }

  /* 업무요청 행 스타일 */
  .request__row {
    display: block !important;
    padding: 16px;
    border-bottom: 1px solid #F0F0F0;
  }

  /* 각 셀을 세로로 배치 */
  .table__item .table__cell,
  .request__row .table__cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    padding: 10px 0;
    border-bottom: 1px solid #F5F5F5;
    min-height: 44px;
  }

  .table__item .table__cell:last-child,
  .request__row .table__cell:last-child {
    border-bottom: none;
  }

  /* data-label로 라벨 표시 */
  .table__item .table__cell[data-label]::before,
  .request__row .table__cell[data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: #666;
    font-size: 13px;
    flex-shrink: 0;
    margin-right: 16px;
  }

  /* 액션 버튼 영역 - 라벨 숨김 */
  .table__item .table__cell:not([data-label]),
  .request__row .cell-96 {
    justify-content: flex-end;
    gap: 8px;
  }

  .table__item .table__cell:not([data-label])::before,
  .request__row .cell-96::before {
    display: none;
  }

  /* 상태 배지 */
  .table__item .status-badge,
  .request__row .status-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* 아이콘 버튼 */
  .table__item .icon-btn,
  .request__row .icon-btn {
    min-width: 36px;
    min-height: 36px;
  }

  /* 드롭다운 */
  .table__item .dropdown {
    width: auto;
  }

  /* 요청 상세 내용 */
  .request__detail {
    padding: 16px;
    background: #FAFAFA;
  }

  .request__detail-con {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  /* 조치사항 */
  .request__done-list {
    margin-top: 16px;
  }

  .request__done-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  /* 입력 영역 */
  .request__input-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .request__input-wrapper textarea {
    width: 100% !important;
    min-height: 80px;
  }

  .request__input-wrapper .btn-group {
    width: 100%;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 768px) {
  /* 대시보드 카드를 1열로 배치 */
  .dashboard-card,
  .card {
    grid-column: span 1 !important;
    width: 100%;
  }

  /* 카드 내부 요소 세로 배치 */
  .card-body--split {
    flex-direction: column;
    gap: 20px;
  }

  .card-section {
    width: 100%;
  }

  /* 카드 패딩 축소 */
  .dashboard-card,
  .card {
    padding: 16px;
    border-radius: 12px;
  }

  /* 카드 헤더 */
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* 카드 타이틀 크기 축소 */
  .card-title {
    font-size: 16px;
    line-height: 1.4;
  }

  /* 카드 링크 버튼 */
  .card-link-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* 카드 내부 아이템 */
  .card-item {
    font-size: 14px;
    padding: 12px 0;
  }

  /* 그리드 레이아웃 1열로 */
  .dashboard-grid,
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* 섹션 헤더 */
  .section-header {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 15px;
  }

  /* 통계 카드 */
  .stat-card {
    padding: 14px;
  }

  .stat-label {
    font-size: 13px;
  }

  .stat-value {
    font-size: 20px;
  }

  /* 카테고리 카드 (구독 현황 등) */
  .category-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card {
    padding: 14px;
  }

  .category-card__header {
    font-size: 13px;
  }

  .category-card__value {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  /* 인풋 필드 - iOS 줌 방지 및 터치 영역 확보 */
  input,
  select,
  textarea {
    font-size: 16px !important; /* iOS에서 자동 줌 방지 */
    min-height: 44px; /* 애플 권장 터치 영역 */
    padding: 12px 14px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  input[type="date"],
  input[type="datetime-local"] {
    font-size: 16px !important;
    height: 44px;
  }

  select {
    font-size: 16px !important;
    height: 44px;
    padding: 10px 14px;
  }

  textarea {
    font-size: 16px !important;
    min-height: 120px;
    padding: 12px 14px;
  }

  /* 버튼 크기 확대 */
  button,
  .btn {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 15px;
  }

  /* 작은 버튼 */
  .btn-sm,
  button.small {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }

  /* 폼 그룹 간격 */
  .form-group {
    margin-bottom: 16px;
  }

  /* 레이블 */
  label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
  }

  /* 체크박스 & 라디오 */
  input[type="checkbox"],
  input[type="radio"] {
    min-width: 20px;
    min-height: 20px;
    margin-right: 8px;
  }

  /* 모달 전체화면 */
  .modal,
  .modal-content {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0;
    border-radius: 0;
  }

  .modal-header {
    padding: 16px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-bottom: 1px solid #E0E0E0;
  }

  .modal-body {
    padding: 16px;
    overflow-y: auto;
  }

  .modal-footer {
    padding: 16px;
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
    border-top: 1px solid #E0E0E0;
  }

  /* 검색바 */
  .search-box,
  .search-input {
    width: 100%;
    font-size: 16px !important;
    height: 44px;
  }

  /* 드롭다운 */
  .dropdown-menu {
    max-width: calc(100vw - 32px);
    max-height: 60vh;
    overflow-y: auto;
  }

  /* 필터 버튼 그룹 */
  .filter-group,
  .button-group {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-button {
    flex: 1 1 auto;
    min-width: fit-content;
  }
}


@media only screen and (max-width: 768px) {
  /* 복잡한 애니메이션 비활성화 */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* 이미지 lazy loading 힌트 */
  img {
    content-visibility: auto;
  }

  /* 스크롤 성능 개선 */
  .main,
  .sidebar__scroll,
  .table {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }

  /* GPU 가속 활성화 */
  .sidebar,
  .modal,
  .dropdown-menu {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
  }

  /* 텍스트 렌더링 최적화 */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* 불필요한 요소 숨김 */
  .desktop-only {
    display: none !important;
  }

  /* 차트 크기 축소 */
  canvas,
  .chart-container {
    max-height: 250px;
  }

  /* 그림자 효과 축소 (성능 개선) */
  .card,
  .modal,
  .dropdown {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  }

  /* 탭/아코디언 콘텐츠 지연 로딩 */
  .tab-content:not(.active),
  .accordion-content:not(.show) {
    content-visibility: hidden;
  }
}

/* ============================================
   모바일 유틸리티 클래스
   ============================================ */

/* 모바일에서만 표시 */
.mobile-only {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }

  .mobile-flex {
    display: flex !important;
  }

  .mobile-inline {
    display: inline !important;
  }

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

  /* 데스크톱에서만 표시 */
  .desktop-only {
    display: none !important;
  }

  /* 모바일 간격 조정 */
  .mobile-mt-0 { margin-top: 0 !important; }
  .mobile-mt-1 { margin-top: 8px !important; }
  .mobile-mt-2 { margin-top: 16px !important; }
  .mobile-mt-3 { margin-top: 24px !important; }

  .mobile-mb-0 { margin-bottom: 0 !important; }
  .mobile-mb-1 { margin-bottom: 8px !important; }
  .mobile-mb-2 { margin-bottom: 16px !important; }
  .mobile-mb-3 { margin-bottom: 24px !important; }

  .mobile-p-0 { padding: 0 !important; }
  .mobile-p-1 { padding: 8px !important; }
  .mobile-p-2 { padding: 16px !important; }
  .mobile-p-3 { padding: 24px !important; }

  /* 모바일 텍스트 정렬 */
  .mobile-text-left { text-align: left !important; }
  .mobile-text-center { text-align: center !important; }
  .mobile-text-right { text-align: right !important; }

  /* 모바일 플렉스 방향 */
  .mobile-flex-column {
    flex-direction: column !important;
  }

  .mobile-flex-row {
    flex-direction: row !important;
  }

  /* 모바일 너비 */
  .mobile-w-full {
    width: 100% !important;
  }

  .mobile-w-auto {
    width: auto !important;
  }

  /* 모바일 숨김 */
  .mobile-hidden {
    display: none !important;
  }

  /* 터치 영역 확보 */
  .mobile-touch-target {
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

/* 태블릿용 유틸리티 */
@media only screen and (min-width: 769px) and (max-width: 1100px) {
  .tablet-hidden {
    display: none !important;
  }

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

/* 데스크톱에서만 표시 */
@media only screen and (min-width: 1101px) {
  .desktop-only {
    display: block !important;
  }
}

@media only screen and (max-width: 768px) {
  .orgSelect {
    margin-left: 240px !important;
  }

  .detail__form--triple {
      grid-template-columns: 1fr !important;
      gap: 2px !important;
  }

  .detail__form--triple .org-item {
      margin-bottom: 8px;
  }
}