.btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-black-line {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26.5px;
    border: solid 1px #234015;
    height: 53px;
    padding: 0 44px;
    font-size: 20px;
    font-weight: 600 !important
}




.breadcrumb-nav {
    background:  rgba(0, 0, 0, 0);
    background: #234015;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.breadcrumb li {
    position: relative;
}

.breadcrumb li a {
    font-size: 18px;
    font-weight: 500;
    color: #202020;
}

.icon-home {
    display: inline-block;
    width: 20px;
    height: 20px;
    /* background: url('/assets/icon-home.svg') no-repeat center/contain; */
}

.dropdown-btn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    font-weight: bold;
}

.arrow {
    font-size: 12px;
    margin-left: 4px;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 100;
}

.dropdown-list li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-list li a:hover {
    background-color: #f5f5f5;
}

.breadcrumb-item:hover .dropdown-list {
    display: block;
}




/* 공통 */
.pageHeader {
    margin: 0 16px 78px;
}

.pageHeader .container {
    padding: 40px 0 38px;
    border-bottom: 3px solid #f5f5f5;
}

.pageHeader .page-category {
    font-size: 18px;
    font-weight: bold;
    color: #234015;
    margin-bottom: 32px;
}

.pageHeader .page-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
}

.pageHeader .page-desc {
    font-size: 20px;
    color: #707070;
    margin-top: 24px;
}







/* 회사소개 - 회사개요 */
.infoSummary {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.infoSummary .infoBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

.infoSummary .infoBox dt {
    font-size: 16px;
    color: #484848;
}

.infoSummary .infoBox dd {
    font-size: 24px;
    color: #000;
}

.infoSummary .unit {
    font-size: 18px;
    color: #000;
    margin-left: 8px;
}

@media (min-width: 1024px) {
    .infoSummary {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* -------------------------
   주소 · 연락처 영역
------------------------- */


.contactInfoGroup {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 80px;
}

.contactInfoGroup .subTitle,
.executiveGroup .subTitle {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
}

.contactInfoGroup .infoItemWrap {
    display: flex;
    gap: 50px;
}

.contactInfoGroup .item-icon {
    font-size: 21px;
    color: #000;
}

.contactInfoGroup .infoItem {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contactInfoGroup .infoItem .label {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.contactInfoGroup .infoItem .value {
    font-size: 18px;
    color: #484848;
}


/* -------------------------
   임원 소개 영역
------------------------- */

.executiveSection .sectionTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.executiveCardGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.executiveItem:not(:last-child){
    margin-bottom: 40px;
}

.executiveGrid {
    margin-top: 24px;
}

/* 각 칼럼 */
.executiveColumn {
    flex: 1 1 calc(33.333% - 16px); /* 3열 기준 */
    max-width: 464px;
    background: #fcfcfc;
    /* background-color: yellowgreen; */
    padding: 24px 16px;
    border-radius: 8px;
}

/* 박스 내부 */
.executiveBox strong {
    display: block;
    margin-bottom: 16px;
    font-weight: bold;
    color: #000;
}

.executiveBox ul {
    margin: 0;
    padding-left: 16px;
}

.executiveBox li {
    list-style-type: disc;
    font-size: 16px;
    color: #484848;
    line-height: 1.88;
}

.executiveBox li::marker {
    font-size: 12px;
    line-height: 1.88;
}

/* 이름 */
.executiveName {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.executiveName .position {
    font-size: 18px;
    color: #234015;
}

/* 반응형 */
@media (max-width: 768px) {
    .executiveColumn {
        flex: 1 1 100%;
    }
}






.featureSection {
    margin: 0 auto;
}

.light-sage {
    background-color: rgba(233, 242, 223, 0.2);
}

.featureItem-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: left;
    margin-bottom: 40px;
    max-width: 1472px;
    padding: 0 16px;
    margin: 0 auto 80px;
}

.featureItem-title {
    font-size: 32px;
    font-weight: bold;
    width: 50%;
    line-height: 1.44;
}

.featureItem-subtext {
    font-size: 20px;
    color: #484848;
    line-height: 1.7;
    width: 50%;
    max-width: 660px;
}

.featureItem-image {
    margin-bottom: 40px;
    max-width: 1440px;
    margin: 0 auto
}

.featureItem-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.featureItem-body {
    display: flex;
    justify-content: space-between;
    max-width: 1472px;
    padding: 0 16px;
    margin: 40px auto 0;
}

.featureItem-text p {
    flex: 1;
    font-size: 16px;
    color: #484848;
    line-height: 1.88;
    width: 100%;
    max-width: 680px;
}

.featureItem-text:first-child p {
    max-width: 686px;
}

.featureItem-divider {
    width: 1px;
    background-color: #e4e4e4;
    margin: 0 36px;
}

/* ✅ 반응형에서는 세로선 제거하고 세로 한 줄 정렬 */

.mb { display: none !important;}
@media (max-width: 1024px) {
    .mb { display: flex !important;}
    .pc { display: none !important;}

    .featureItem-head {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .featureItem-divider {
        display: none;
    }

    .featureItem-title,
    .featureItem-subtext {
        width: 100%;
        max-width: unset;
    }

    .featureItem-body {
        flex-direction: column;
        gap: 32px;
    }

    .featureItem-text p,
    .featureItem-text:first-child p {
        max-width: unset;
    }
}

.featureGrid {
    margin-top: 120px;
    padding: 120px 0;
}

.featureGrid .title-wrap {
    margin-bottom: 80px;
}

.featureGrid .title-wrap .title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 32px;
}

.featureGrid .title-wrap .title-sub {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    color: #484848;
}


.featureItemWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
}

.featureItemWrap .featureItem img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.featureItemWrap .featureTitle {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.featureItemWrap .featureSub {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
}

.featureItemWrap .featureDesc {
    font-size: 20px;
    line-height: 1.7;
    color: #484848;
}

@media (max-width: 1024px) {
    .featureItemWrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.mainPage .featureGrid .title-wrap .title {
    font-size: 56px;
    line-height: 1/25;
}


.mainNoticeSection {
    padding: 98px 16px 80px;
    text-align: center;
}

.mainNoticeSection .board-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 24px;
}

.mainNoticeSection .board-subtitle {
    font-size: 24px;
    color: #000;
}

.mainNoticeSection .board-card-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 56px 0;
}
.mainNoticeSection .board-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: 465px;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.mainNoticeSection .board-card .img-wrap {
    width: 100%;
    aspect-ratio: 4 / 4.1;
    overflow: hidden;
    border-radius: 12px;
}

.mainNoticeSection .board-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mainNoticeSection .card-text {
    padding: 10px 4px;
}

.mainNoticeSection .card-text .title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mainNoticeSection .card-text .date {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.mainNoticeSection .btn-add {
    margin: 0 auto;
}

.mainFaqSection {
    padding: 120px 0;
}

.mainFaqSection .title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}

.mainFaqSection .board-title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.mainFaqSection .btn-add {
    margin-top: unset;
}

.mainFaqSection .active .boardToggleHeader {
    background-color: #f8fbf5;
}


.mainPage .infoBanner {
    background-color: #e9f2df;
}

.mainPage .infoBanner .cont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.mainPage .infoBanner .cont-txt {
    font-size: 24px;
    color: #234015;
}

.mainPage .infoBanner i {
    font-size: 26px;
    color: #234015;
    margin-right: 8px;
}

.mainPage .infoBanner .btn-add {
    margin: 48px auto 0;
    background-color: #234015;
    color: #fff;
}

.mainPage .infoBanner .btn-add i {
    color: #fff;
    font-size: 20px;
}

.mainPage .infoBanner .btn-add:hover  {
    background-color: #10130f;
}

.mainMapSection {
    padding-bottom: 108px;
}

.mainMapSection .title {
    font-size: 40px;
    font-weight: bold;
}

.mainMapSection .map-cont {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;
    margin-top: 66px;
    margin-bottom: 60px;
}

.mainMapSection .map-item .title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.mainMapSection .map-item {
    display: flex;
    align-items: center;
}

.mainMapSection .map-item i {
    font-size: 21px;
    color: #000;
    margin-right: 16px;
}

.mainMapSection iframe {
    width: 100%;
    height: 400px;
}




/* 활동자료 */
.activitySection {
    padding: 120px 0 80px;
}

.activitySection .sectionTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.activityTopBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 97px;
    margin-bottom: 30px;
    border-bottom: 2px solid #484848;
    padding-bottom: 24px;
}

.activityTopBar .postCount {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #202020;
}

.activityTopBar .postCount .num {
    color: #234015;
    font-size: 18px;
    font-weight: bold;
    margin-left: 8px;
    margin-right: 4px;
}

.activityTopBar .searchBox {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    height: 55px;
}

.activityTopBar .searchBox input {
    padding: 18px 16px;
    border: none;
    font-size: 14px;
    width:250px;
    height: 55px;
    font-size: 16px;
    color: #000;
    border: 1px solid  #e4e4e4;
}

.activityTopBar .searchBox input::placeholder {
    font-size: 16px;
    color: #707070;
}

.activityTopBar .searchBox button {
    background-color: #1a3600;
    border: 1px solid  #1a3600;
    color: #fff;
    padding: 18px 36px;
    font-size: 16px;
    cursor: pointer;
    height: 55px;
    font-size: 16px;
    color: #fff;
}


.activitySection .activityGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    min-height: 350px;
}

.activitySection .activityItem {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.activitySection .thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    max-height: 300px;
    width: 100%;
    padding-top: 67%;
}

.activitySection .thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.activitySection .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activitySection .activityItem:hover .overlay {
    opacity: 1;
}

.activitySection .icon {
    font-size: 32px;
    color: #fff;
}

.activitySection .activityTitle {
    font-size: 24px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.58;
}

.activitySection .activitySub {
    font-size: 18px;
    color: #484848;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
}

.activitySection .activityDate {
    font-size: 12px;
    color: #666;
}


@media (max-width: 1024px) {
    .activitySection .activityGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activitySection .searchBox input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .activitySection .activityGrid {
        grid-template-columns: 1fr;
    }
}



.infoBanner  {
    background-color: rgba(233, 242, 223, 0.5);
    width: calc(100% - 32px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 120px;
    border-radius: 24px;
}

.infoBanner .title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.infoBanner .cont {
    font-size: 20px;
    line-height: 1.7;
    color: #484848;
    margin-top: 40px;
}





/* 사업소개 - 기관운영 컨설팅  busiConsulting*/

.busiConsulting .featureItemWrap {
    grid-template-columns: 1fr;
    gap: 80px;
}

.busiConsulting .featureItem {
    display: flex;
    gap: 60px;
    align-items: center;
}

.busiConsulting .featureItem img {
    max-width: 700px;
    margin-bottom: unset;
}


/* 사업소개 - 인권돌봄문화 */

.busiCare .featureItemWrap {
    grid-template-columns: 1fr;
    gap: 80px;
}

.busiCare .featureItemWrap .repo {
    flex-direction: row-reverse;
}

.busiCare .featureItem {
    display: flex;
    gap: 60px;
    align-items: center;
}

.busiCare .featureItem img {
    max-width: 700px;
    margin-bottom: unset;
}



/* 게시판 공통 board */

.boardSection {
    padding-bottom: 120px;
}

.boardSection .activityTopBar {
    margin-bottom: unset;
}

.boardList {
    display: flex;
    flex-direction: column;
    min-height: calc(109px * 3);
}

.boardItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 30px;
    border-bottom: 1px solid #e4e4e4;
    transition: all 0.3s;
    cursor: pointer;
}

.boardItem.notice {
}

.boardLeft {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 18px;
    width: 100%;
    max-width: 90%;
}

.boardItem .badge {
    color: #1a4301;
    font-size: 16px;
    color: #234015;
    border-radius: 17.5px;
    font-weight: bold;
    max-width: 60px;
    height: 35px;
    border: 1px solid #234015;
    display: flex;
    align-items: center;
    justify-content: center;
}



.boardCont {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.boardRight {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.boardLeft .boardDate {
    font-size: 16px;
    color: #aeaeae;
}

.boardBtn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #aeaeae;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boardBtn .icon {
    font-size: 20px;
    color: #aeaeae;
    line-height: 1;
}


.boardItem:hover {
    background-color: rgba(233, 242, 223, 0.2);
}

.boardItem:hover .boardBtn {
    border: 1px solid  #234015;
}

.boardItem:hover .boardBtn .icon {
    color: #234015;
}


.toggleList .boardItem {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: unset;
}

.toggleList .boardItem:hover {
    background-color: unset;
}

.toggleList .boardItem:hover .boardBtn {
    border :unset;
}

.toggleList .boardItem:hover .boardBtn .icon {
    color: unset;
}

.toggleList .boardBtn {
    border: unset;
    border-radius: unset;
    width: unset;
    height: unset;
}


.boardToggleHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    padding: 28px 32px;
}

.toggleList  .boardLeft {
    display: flex;
    flex-direction: column;
}

.toggleList  .boardCont {
    font-size: 20px;
    font-weight: normal;
    color: #000;
}

.toggleList  .boardDate {
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
}

.toggleList .boardBtn .icon {
    display: inline-block;
    transition: transform 0.3s;
    color: #000;
    font-size: 22px;
}

/* 열림 상태일 때 회전 */
.toggleList  .boardItem.active .icon {
    transform: rotate(180deg);
}

.boardToggleContent {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    color: #333;
    font-size: 16px;
    line-height: 1.88;
    padding: 0 24px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* 열림 상태 */
.boardItem.active .boardToggleContent {
    display: flex;
    flex-direction: column;
    padding: 24px;
    min-height: fit-content;
    border-top: 1px solid rgba(13, 72, 144, 0.1);
}


.boardToggleContent .btn-del {
    width: 100%;
    max-width: 154px;
    height: 52px;
    margin: 60px auto 40px;
    border-radius: 4px;
    background-color: #aeaeae;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
}



/* 게시글 */
.postViewWrap {
    max-width: 1440px;
    margin: 120px auto 0;
    padding: 40px 20px;
    font-family: sans-serif;
    color: #111;
}

.postViewWrap .postHead {
    border-top: 2px solid #202020;
    border-bottom: 1px solid #dedede;
    padding: 32px 0;
}

.postTitle {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.postMeta {
    text-align: center;
    color: #202020;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap:24px;
}

.postMeta strong {
    font-weight: 600;
    margin-right: 8px;
}

.postContent {
    padding: 40px 0 80px;
    font-family: "Pretendard", sans-serif !important;
}

.postContent p, 
.postContent span {
    font-family: "Pretendard", sans-serif !important;
}

.postContent img {
    width: fit-content;
    max-width: 100%;
    margin: 32px 0;
}

.ck-content {
    font-family: "Pretendard", sans-serif !important;
}

.postFile {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    margin: 40px 0;
    font-size: 17px;
    font-weight: 600;
    color: #202020;
}

.postFile i {
    font-size: 20px;
    color: #a4a4a4;
}

.postFile .x-icon {
    font-style: normal;
}

.downloadBtn {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
}

.postNav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #333;
    border-top: 1px solid #333;
    padding-top:32px;
    margin-top: 32px;
}

.postNav .label {
    font-size: 16px;
    font-weight: bold;
    color: #202020;
    min-width: fit-content;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.postNav .prev .label {
    margin-right: 20px;
}

.postNav i {
    font-size: 24px;
    color: #202020;
    line-height: 1.2;
}

.postNav .prev .label i {
    margin-right: 8px;
}

.postNav .next .label {
    margin-left: 20px;
}

.postNav .next .label i {
    margin-left: 8px;
}

.postNav button {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 30%;
}

.postNav .next {
    justify-content: right;
}

.postNav button .title {
    font-size: 16px;
    font-weight: 300;
    color: #202020;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 288px;
}

.postFile span {
    margin: 0 8px;
}


.listBtn {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #aeaeae;
    border-radius: 999px;
    cursor: pointer;
    width: 56px;
    height: 56px;
}

.listBtn i {
    font-size: 24px;
    color: #aeaeae;
}



@media screen and (max-width: 1024px) {

    .postViewWrap .postHead {
        padding: 16px 0;
    }

    .postContent {
        padding: 40px 0;
    }

    .postTitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .postFile {
        margin: 16px 0;
    }

    .postFile i {
        font-size: 18px;
    }

    .postFile span {
        font-size: 14px;
    }

    .postNav button .title {
        display: none;
    }

    .listBtn {
        border: 1px solid #aeaeae;
        width: 32px;
        height: 32px;
    }

    .listBtn i {
        font-size: 16px;
    }

    .postNav {
        margin-top: 16px;
        padding-top: 16px;
    }

    .postNav  .label i {
        font-size: 23px;
    }

    .postNav .label {
        font-size: 14px;
    }

}


/* 회사소개 - 인사말 greeting */
.greetingWrap {
    padding-bottom: 120px;
}

.greetingInner {
    display: flex;
    gap: 80px;
    margin: 0 auto;
    align-items: flex-start;
}

.greetingText {
    flex: 1 1 686px;
}

.greetingTitle {
    font-size: 40px;
    font-weight: bold;
    color: #234015;
    line-height: 1.35;
    margin-bottom: 40px;
}

.greetingSubTitle {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.44;
    color: #000;
    margin-bottom: 40px;
}

.greetingContent p {
    font-size: 16px;
    line-height: 1.88;
    color: #484848;
}

.greetingImage {
    flex: 1 1 570px;
    max-width: 570px;
    position: relative;
}

.greetingImage img {
    width: 100%;
    aspect-ratio: 570 / 394;
    object-fit: cover;
    border-radius: 16px;
}

.imageCaption {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #8000ff;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.overviewContent .cont-img-wrap {
    margin: 40px 0 120px;
}

@media (max-width: 1024px) {
    .greetingInner {
        flex-direction: column;
    }

    .greetingImage,
    .greetingText {
        flex: 1 1 100%;
    }

    .overviewContent .cont-img-wrap {
        margin: 80px 0;
    }

}



.practiceSection {

}

.practiceInner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 80px;
    margin: 0 auto;
    padding: 120px 0;
}

.practiceText {
    display: flex;
    justify-content: space-between;
}

.practiceText h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.44;
    color: #000;
}

.practiceText p {
    font-size: 20px;
    line-height: 1.7;
    color: #484848;
    max-width: 600px;
}

.practiceCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    flex: 1 1 342px;
}

.practiceCard {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.practiceCard img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.cardOverlay {
    position: absolute;
    inset: 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
}



.consultingSection .consultingInner {
    padding: 120px 0;
    text-align: center;
}

.consultingSection .sectionTitle {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
}

.consultingSection .sectionDesc {
    font-size: 24px;
    color: #000;
}

.consultingSection .consultingGraphic {
    margin-top: 80px;
    max-width: 1195px;
    margin: 80px auto 0;
}

.missionVisionSection {
    padding-bottom: 120px;
}




/* 로그인 */
.formSection {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 0 20px;
    padding-top: 120px;
}

.auth-panel {
    /* width: 100%; */
    width: calc(100% - 32px);
    max-width: 520px;
    height: fit-content;
    text-align: center;
    padding-top: 40px;
    margin-bottom: 104px;
}

.auth-heading {
    font-size: 32px;
    color: #202020;
}

.auth-heading .side-sub {
    font-size: 14px;
    font-weight: bold;
    color: #ed1515;
    margin-left: 16px;
}

.auth-description {
    font-size: 17px;
    color: #202020;
    margin-top: 24px;
    line-height: 1.7;
}

.form-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.input-inner-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    height: 52px;
    color: #202020;
    font-size: 16px;
}

.form-input::placeholder {
    font-size: 16px;
    color: #aeaeae;
}

.count-input-wrap {
    position: relative;
}

.form-input-group {
    position: relative;
    width: 100%;
}


.input-inner-wrap .btn {
    max-width: 154px;
}

.new-input-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.view-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #aeaeae;
    cursor: pointer;
}

.form-chk-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.formSection input[type="checkbox"] {
    display: flex;
}
.form-check {
    font-size: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-submit-btn {
    background-color: #2d3e1f;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.auth-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 13px;
}

.auth-link {
    margin-left: 4px;
    text-decoration: none;
}

.auth-link > span {
    font-weight: bold;
}


.view-btn .x-icon::before {
    content: ''; /* 기본 눈 감김 아이콘 */
}

.view-btn.active .x-icon::before {
    content: ''; /* 눈 뜸 아이콘 */
}


/* 스텝박스 */
.stepProgress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    /* max-width: 520px; */
    width: 100%;
    background-color: #fcfcfc;
}

.stepItem {
    text-align: center;
    flex: 1;
    position: relative;
}

.stepItem::after {
    content: '';
    position: absolute;
    right: -50%;
    background-color: #eee;
    width: 100%;
    z-index: 0;
}
.stepItem:last-child::after {
    display: none;
}

/* 동그라미 텍스트 */
.stepCircleText {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 10px;
}

/* 바깥 원 */
.stepCircleText::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid #eee;
    border-radius: 50%;
    z-index: -2;
}

/* 안쪽 원 */
.stepCircleText::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: white;
    border: solid 4px #e4e4e4;
    z-index: -1;
}

/* 활성화 단계 */
.stepItem.active .stepCircleText {
    color: #1d3e1f;
}

.stepItem.active .stepCircleText::before {
    border-color: #1d3e1f;
}
.stepItem.active .stepLabel,
.stepItem.active .stepDesc {
    color: #1d3e1f;
    font-weight: bold;
}

.stepLabel {
    font-size: 14px;
    color: #aaa;
}
.stepDesc {
    font-size: 16px;
    color: #aaa;
    font-weight: bold;
}


/* 회원가입 */
.join-wrap {
    margin-top: 120px;
    min-height: calc(100vh - 120px - 291px);
}

.join-wrap  .stepProgress {
    margin-bottom: 80px;
}

.joinSection {
    position: unset;
}

.joinSection .auth-heading {
    margin-bottom: 40px;
}

.joinSection  .auth-panel {
    position: unset;
    transform: unset;
}

.join-wrap {
    padding-bottom: 80px;
}

.join-wrap  .formSection {
    /* height: unset; */
    min-height: unset;
}


/* 회원등급 */
.gradeSelectWrap {
    padding: 32px 24px;
    border-radius: 8px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.gradeSelectBtn  {
    border-radius: 4px;
    background-color: #fff;
    padding: 32px 0;
    border: 4px solid #fff;
    cursor: pointer;
}


.gradeSelectBtn.selected  {
    border: 4px solid #234015;
}

.gradeSelectTitle {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.gradeText {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #202020;
    margin-top: 16px;
}

.gradeItemWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.gradeSelectBtn  .gradeIcon {
    max-width: 40px;
}

.gradeGuide {
    margin-top: 24px;
    font-size: 16px;
    color: #707070;
    line-height: 1.88;
}

.btn-join {
    width: 100%;
    height: 56px;
    border-radius: 4px;
    background-color: #e4e4e4;
    margin-top: 40px;
    font-size: 16px;
    color: #fff;
}

.btn-join.active {
    background-color: #234015;
}


.select-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    color: #202020;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px 6px;
    cursor: pointer;
}

.input-title {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.input-title.required:after {
    position: absolute;
    content: "*";
    color: #ed1515;
    font-size: 16px;
    font-weight: bold;
    margin-left: 4px;
}

.input-side-sub {
    position: absolute;
    font-size: 12px;
    color: #707070;
    margin-left: 20px;
    width: max-content;
    font-weight: normal;
    padding-top: 5px;
}


.auth-panel .form-btn-wrap {
    margin-top: 40px;
}

.auth-panel .col-2 {
    display: flex;
    gap: 16px;
}

.auth-panel .form-btn-wrap .btn {
    height: 56px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
}

.bg-grey-btn {
    background-color: #aeaeae;
    color: #fff;
}

.bg-green-btn {
    background-color: #234015;
    color: #fff;
}


.fee-info-box {
    width: 100%;
    background-color: #f5f5f5;
    padding: 32px 0;
    border-radius: 8px
}

.fee-info-box .fee-amount {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
}

.fee-info-box .fee-amount > span{
    font-size: 16px;
    font-weight: normal;
    color: #333;
}

.fee-info-box .bank-info-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.fee-info-box .bank-info {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 17px;
}

.fee-info-box .account-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.fee-info-box .copy-btn {
    font-size: 16px;
    font-weight: normal;
    text-decoration: underline;
}

.gradeGuideWrap {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    line-height: 1.88;
}

.gradeGuideWrap  p {
    text-align: start;
    display: flex;
    gap: 4px;
    font-size: 16px;
    line-height: 1.88;
    color: #707070;

}

.gradeGuideWrap span {
    display: block;
}



/* 결과안내  resultSection */

.resultSection {
    /* position: relative; */
    /* min-height: calc(100vh - 120px - 250px - 290px); */
    /* height: calc(100vh - 291px - 120px); */
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 80px;
}

.resultSection  .result-box {
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    background-color: #fff;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: clamp(40px, 4.17vw, 80px) clamp(20px, 4vw, 77px);
}

.resultSection .join-com-box {
    max-width: unset;
}

.resultSection .result-icon {
    font-size: 48px;
    color: #234015;
    margin-bottom: 40px;
}

.greenTxt {
    display: inline-block;
    color: #234015;;
}

.resultSection .result-title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 32px;
}

.resultSection .greenTxt {
    font-size: 40px;
    font-weight: bold;
}

.resultIdSection .result-title {
    font-weight: normal;
}

.resultSection .result-text {
    font-size: 20px;
    line-height: 1.7;
    color: #000;
}

.resultSection .btn {
    width: 100%;
    max-width: 240px;
    height: 64px;
    margin: 40px auto 0;
    font-size: 18px;
    font-weight: bold;
}

.resultSection .btn-reset {
    margin-top: 32px;
    font-size: 18px;
    color: #202020;
    text-decoration: underline;
}



@media screen and (max-width:1024px) {

    .resultSection .result-icon {
        margin-bottom: 24px;
    }

    .resultSection .result-title,
    .resultSection .greenTxt {
        font-size: 32px;
    }

    .resultSection .result-text {
        font-size: 18px;
    }

    .resultSection .btn {
        max-width: unset;
        margin-top: 48px;
        height: 56px;
    }

    .resultSection .result-box {
        padding: unset;
    }

    .resultSection .join-com-box {
        max-width: 768px;
    }

    .resultSection {
        height: unset;
        min-height: calc(100vh - 420px - 64px);
        margin-top: 144px;
        margin-bottom: 80px;
    }

    .resultSection .btn-reset {
        font-size: 16px;
        margin-top: 24px;
    }


}



/* 찾기 findSection */

.findSection {
    min-height: calc(100vh - 120px);
}

.findSection .find-wrap {
    margin-top: 40px;
}

.tab-header {
    display: flex;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding-bottom: 24px;
    font-size: 20px;
    font-weight: bold;
    color:  #aeaeae;
    cursor: pointer;
}

.tab-btn.active {
    color: #234015;
    border-bottom: 2px solid  #234015;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.form-wrap .btn-disabled {
    width: 100%;
    border-radius: 4px;
    background-color: #e4e4e4;
    height: 52px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.form-wrap .btn-active {
    width: 100%;
    border-radius: 4px;
    height: 52px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    background-color: #234015;
}

.form-wrap .btn-reSend {
    background-color: #707070;
}

.form-wrap .add-input-wrap {
    margin-top: -8px;
}

.tab-content .add-input-wrap {
    margin: 0;
}

.tab-content .form-guide {
    margin-top: 0;
}

.btn-next {
    width: 100%;
    padding: 14px;
    background: #eee;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
}

.findSection .input-wrap {
    gap: 8px;
}

.findSection .btn-next {
    margin-top: 16px;
}


.step-content {
    display: none;
}

.step-content.active {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.findSection .step-content .btn-next {
    margin-top: 4px;
}


/* 마이페이지 mySection */
.mySection {
    padding: 40px;
    padding-bottom: 80px;
    display: flex;
    gap: clamp(20px, 2.08vw, 40px);
    margin-top: 120px;
}

.mypage-sidebar {
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
    background: #fff;
    padding-bottom: 32px;
}

.sidebar-title {
    background-color: #234018;
    color: #fff;
    font-size:24px;
    font-weight: bold;
    padding: 16px;
    text-align: center;
}

.sidebar-menu {
    padding: 24px 32px 40px;
}

.sidebar-menu li {
    border-bottom: 1px solid #eee;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 7.4px;
    padding: 16px 0px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.sidebar-menu li.active a {
    color:  #234015;
}

.sidebar-menu .icon-side {
    font-size: 20px;
}

.logout-wrap {
    padding-left: 32px;
}

.btn-logout {
    width: 127px;
    height: 46px;
    padding: 8px 14px;
    border: 1px solid #aeaeae;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    color: #aeaeae;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.btn-logout .icon-logout {
    font-size: 16px;
    color: #aeaeae;
}


.myMainPage a {
    color: #000;
}

.myMainPage .menu_1,
.myInfoPage .menu_2,
.myGradePage .menu_3,
.myNoticePage .menu_4 {
    color:  #234015;
}



.myContainer {
    /* border: 3px solid teal; */
    width: 100%;
    max-width: 1240px;
    max-width: calc(100% - 280px - 80px - 12.5vw);

}

.member-welcome {
    padding: 56px 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    background-image: url('/images/member-welcome.png');
    background-color: #ecf3e3;
    border-radius: 8px;
}

.member-welcome .welcome-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.member-welcome .welcome-sub {
    font-size: 24px;
    margin-bottom: 32px;
    color: #000;
}

.member-welcome .btn-grade {
    background-color: #234015;
    color: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    max-width: 182px;
    margin: 0 auto;
}

.member-welcome .link-inquiry {
    display: block;
    margin-top: 16px;
    text-decoration: underline;
    color: #234015;
}


.membership-period-box {
    background-color: rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 24px;
    max-width: fit-content;
    margin: 24px auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    font-family: 'Pretendard', sans-serif;
    color: #333;
}

.period-title {
    font-weight: 500;
    font-size: 16px;
    margin-right: 16px;
    display: inline-block;
    color: #000;
}

.period-date {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.period-desc {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.57;
    color: #707070;
}

.member-welcome .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    gap: 24px;
}

.member-welcome .btn-wrap .btn-grade {
    width: fit-content;
    padding: 10px 14px;
    font-size: 14px;
}

.member-welcome .btn-wrap .link-inquiry {
    margin-top: unset;
    font-size: 14px;
}

.member-main {
    margin-top: 80px;
}

.member-title-wrap {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #333;
}

.member-title-wrap .title-bar {
    display: flex;
    width: 8px;
    height: 38px;
    background-color: #234015;
    margin-right: 12px;
}

.member-title-wrap .title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.member-title-wrap .title span {
    font-size: 14px;
    font-weight: normal;
}

.myContainer .toggleList .boardCont {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.myContainer .toggleList .boardDate {
    margin-top: unset;
    font-size: 16px;
    font-weight: normal;
    color: #aeaeae;
}

.myContainer .toggleList .boardBtn .icon {
    font-size: 23px;
    color: #aeaeae;
}


.myContainer .toggleList {
    min-height: unset;
}

.myContainer .toggleList .boardLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.myContainer .toggleList .stateBadge {
    min-width: fit-content;
    width: 104px;
    height: 40px;
    border-radius: 19.5px;
    background-color: #aeaeae;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    word-break: keep-all;
}

.myContainer .badge-answered .stateBadge {
    background-color: #e9f2df;
    color: #000;
}

.myContainer .boardItem .boardToggleContent {
    /* padding: 32px 0 0; */
    line-height: 1.75;
}

.myContainer #pagination {
    margin-top: 48px;
}

.myContainer .inquiry-cont {
    padding: 0 24px;
}

.member-notice .boardToggleHeader {
    padding: 25px 40px 25px 24px;
}

.member-inquiry .boardToggleHeader {
    padding: 16px 40px 16px 0;
}

.member-inquiry .boardCont {
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
}


.member-inquiry .answer-box {
    width: 100%;
    background-color: #f5f5f5;
    padding: 24px;
}

.member-inquiry .answer-head {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}

.member-inquiry .answer-head .title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.member-inquiry .answer-head .date {
    font-size: 14px;
    color: #aeaeae;
}

.member-inquiry .answer-cont {
    font-size: 16px;
    color: #222;
}

.empty-wrap {
    margin-top: 80px;
    text-align: center;
    padding: 60px 0;
    color: #aaa;
    font-size: 16px;
}

.empty-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
    color: #aeaeae;
}

.empty-text {
    font-size: 20px;
    color: #aeaeae;
}


.joinSection input[type="checkbox"] {
    display: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    display: inline-block;
    background-color: #fff;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}

.check-icon .chk-icon {
    font-size: 16px;
    color: #aeaeae;
    line-height: 21px;
}

input:checked+.check-icon {
    border: solid 1px #3a533a;
    background-color: #3a533a;
}

input:checked+.check-icon .chk-icon {
    color: white;
}

input:checked~.text {
    color: #202020;
}

.agree-box {
    font-size: 16px;
    color: #000;
    margin-top: 8px;
}

.agree-box strong {
    font-weight: 600;
}

.agree-all,
.agree-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agree-all {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 20px;
}

.agree-items {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
}

.agree-item {
    position: relative;
    justify-content: start;
    margin-bottom: 24px;
    padding: unset;
}

.agree-item:last-child {
    margin-bottom: 0;
}

.agree-item .text {
    font-weight: 600;
    color: #aeaeae;
}

.agree-item .link {
    position: absolute;
    right: 0;
    color: #202020;
    text-decoration: underline;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.joinSection .form-btn-wrap {
    margin-top: 16px;
}




.form-guide {
    font-size: 14px;
    font-weight: 500;
    margin-top: -8px;
}

.form-guide.success {
    color: #00b505;
}

.form-guide.error {
    color: #ed1515;
}

.mySection .formSection {
    height: unset;
    justify-content: start;
}

.mySection .auth-panel {
    width: 100%;
    max-width: 520px;
    position: unset;
    transform: unset;
    margin-top: unset;
    margin-bottom: unset;
}

.mySection .form-wrap {
}

input[readonly] {
    border: solid 1px #e4e4e4;
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.myInfoSection .form-btn-wrap {
    flex-direction: column;
    margin-top: 16px;
}

.myInfoSection .form-btn-wrap .btn-out {
    color: #aeaeae;
}

.myInfoSection .formSection {
    padding: unset;
    min-height: unset;
}


.myGradeSection .gradeSelectWrap {
    max-width: 520px;
    text-align: center;
}


.myGradeSection .form-btn-wrap {
    margin-top: 40px;
}

.mySection .form-btn-wrap .btn-disabled {
    height: 56px;
    width: 100%;
    max-width: 520px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    background-color: #e4e4e4;
}

.mySection .form-btn-wrap .btn-active{
    height: 56px;
    width: 100%;
    max-width: 520px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    background-color: #234015;
}


.myGradeSection .gradeText {
    min-height: calc((16px * 1.5)*2);
}

.myGradeSection .gradeGuide {
    max-width: 520px;
    text-align: center;
}

.gradeSelectBtn.selected  {
    border: solid 4px #234015;
}

.myInquirySection .edit-guide-box {
    border-radius: 8px;
    background-color: #f5f5f5;
    padding: 24px 16px;
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #484848;
}

.myInquirySection .input-wrap {
    gap: 8px;
}

.input-textarea-wrap {
    margin-top: 32px;
    margin-bottom: 40px;
}

.textarea-wrap {
    width: 100%;
    position: relative;
}

.textarea-wrap textarea {
    width: 100%;
    height: 400px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
}

.textarea-wrap textarea::placeholder {
    color: #aeaeae;
}

.text-count {
    position: absolute;
    right: 16px;
    bottom: 12px;
    font-size: 14px;
    color: rgba(55, 57, 72, 0.5);
}

.count-input-wrap  .text-count {
    bottom: 16px;
}

.text-count #titleCharCount,
.text-count  #charCount {
    color: #373948;
}


.count-input-wrap  input {
    padding-right: 56px;
}

.myInquirySection  .form-btn-wrap .btn {
    max-width: 200px;
}






.main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 1080px;
    overflow: hidden;
}

.banner-img,
.banner-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.swiper-slide {
    position: relative;
}

.main-banner-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.main-banner-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
}

.main-banner-subtitle {
    font-size: 32px;
    margin-top: 20px;
    color: #fff;
    line-height: 1.44;
}

/* Swiper navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 48px;
    height: 48px;
    /* background-color: rgba(0, 0, 0, 0.4); */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

/* Pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}


.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 200px;
}

/* 좌우 위치 */
.swiper-button-prev.custom-nav {
    left: 0px;
    align-items: end;
}

.swiper-button-next.custom-nav {
    right: 0px;
    align-items: start;
}

/* 긴 흰색 라인 */
.nav-line {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

/* 짧은 흰색 라인 (hover 시 확장) */
.nav-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33%;
    background-color: white;
    transition: width 0.4s ease;
}

.swiper-button-prev .nav-line-fill {
    left: unset;
    right: 0;
}

.custom-nav:hover .nav-line-fill {
    width: 100%;
}

/* Swiper 기본 화살표 제거 */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.custom-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 120px !important;
    left:50% !important;
    transform: translateX(-50%);
    z-index: 10;
}

/* 각 bullet을 막대 형태로 */
.custom-pagination .swiper-pagination-bullet {
    width: 4px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.3);
    /* 흐린 회색 */
    opacity: 1;
    /* Swiper가 기본 opacity 줌 → 무시 */
    border-radius: 0;
    transition: background-color 0.3s;
}

/* 활성화된 bullet → 완전 흰색 */
.custom-pagination .swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 1);
}

.mt-120 {
    margin-top: 120px;
}

.mainPage .featureItem-title {
    font-size: 56px;
    line-height: 1.25;
}

.peopleSection {
    padding: 120px 20px;
    background: url('/images/people_bg.png') no-repeat center / cover;
    text-align: center;
    color: #fff;
}

.peopleSection .section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.peopleSection .section-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 32px;
}


.peopleSection .section-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    line-height: 1.6;
}

.peopleSection .people-card-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.peopleSection .people-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 32px 20px;
    color: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}


.peopleSection .people-icon {
    width: 80px;
    height: auto;
    margin-bottom: 8px;
}

.peopleSection .people-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 14px;
    line-height: 1.4;
}

.peopleSection .people-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}


.mainPage .featureGrid {
    margin-top: unset;
}

.mainPage .featureItemWrap {
    grid-template-columns: 1fr;
    gap: 80px;
}

.mainPage .featureItem {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mainPage .featureItem img {
    max-width: 700px;
    margin-bottom: unset;
}

.mainPage .featureItemWrap .repo {
    flex-direction: row-reverse;
}

.btn-add {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 28px;
    width: 171px;
    height: 53px;
    border: solid 1px #234015;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    color: #234015;
    background-color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 48px;
}

.btn-add i {
    font-size: 18px;
}

.btn-add:hover {
    background-color: #23421a;
    color: #fff;
}

.btn-add:hover i {
    color: #fff;
}

.pageMapSection .txt {
    font-size: 18px;
}

.pageMapSection {
    padding-bottom: 120px;
}

.pageHeader .pb-80 {
    padding-bottom: 80px;
}



.mb {
    display: none;
}

@media screen and (max-width: 1280px) {

    .myContainer {
        max-width: 100%;
    }

}

@media screen and (max-width: 1080px) {
    .main-banner-inner {
        width: calc(100% - 200px);
    }
    .custom-nav {
        width: 120px;
    }

}

@media screen and (max-width: 1024px) {
    .main-banner-inner {
        width: calc(100% - 32px);
    }

}
/* 서브 모바일 */


@media screen and (max-width: 1280px) {
    .mainPage .featureItem img,
    .busiConsulting .featureItem img,
    .busiCare .featureItem img {
        max-width: 500px;
    }
    .mainPage .featureItem,
    .busiConsulting .featureItem,
    .busiCare .featureItem {
        gap: 30px;
    }
}



@media screen and (max-width: 1024px) {

    .pageHeader .container {
        padding: 20px 0 18px;
    }
    .pageHeader .page-category {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .pageHeader .page-title {
        font-size: 32px;
    }

    .pageHeader .page-desc {
        font-size: 18px;
        margin-top: 12px;
        line-height: 1.78;
    }

    .activityTopBar {
        margin-top: 40px;
        flex-direction: column;
        align-items: start;
        gap:24px;
    }

    .activityTopBar .searchBox {
        width: 100%;
    }

    .activityTopBar .searchBox input {
        width: 100%;
    }

    .boardItem {
        padding: 16px 0;
    }

    .boardLeft {
        gap: 16px;
    }

    .pageHeader {
        margin-bottom: 40px;
    }

    .boardBtn {
        width: 30px;
        height: 30px;
    }

    .boardBtn .icon {
        font-size: 14px;
    }

    .boardList {
        min-height: unset;
    }

    .activityTopBar .postCount,
    .activityTopBar .postCount .num {
        font-size: 14px;
    }

    .boardToggleHeader {
        flex-direction: column;
        align-items: start;
        padding: 16px 24px;
    }


    .board .boardBtn {
        position: absolute;
        right: 8px;
    }

    .toggleList .boardCont {
        font-size: 14px;
    }

    .toggleList .boardBtn .icon {
        font-size: 16px;
    }


    .custom-nav {
        display: none;
    }

    .main-banner-title {
        font-size: 24px;
        font-weight: bold;
    }

    .main-banner-subtitle {
        font-size: 18px;
        margin-top: 32px;
        line-height: 1.78;
        font-weight: 500;
    }

    .mainPage .featureItem-title {
        font-size: 24px;
        line-height: 1.58;
    }

    .mainPage .featureItem-subtext {
        font-size: 18px;
    }

    .mainPage .featureItem-head {
        margin-bottom: 40px;
    }

    .mainPage .featureItem-body {
        margin-top: 32px;
    }

    .peopleSection {
        padding-top: 80px;
    }

    .peopleSection .section-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .peopleSection .section-desc {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .peopleSection .people-card-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }

    .peopleSection .people-icon {
        width: 64px;
    }

    .peopleSection .people-title {
        line-height: 1.78;
    }

    .mainPage .featureGrid .title-wrap .title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .featureGrid .title-wrap .title-sub {
        font-size: 18px;
        line-height: 1.78;
        color: #000;
    }

    .featureGrid .title-wrap {
        margin-bottom: 40px;
    }

    .mainPage .featureItem,
    .busiConsulting .featureItem,
    .busiCare .featureItem {
        flex-direction: column;
        gap: 24px;
    }

    .mainPage .featureItem img,
    .featureItemWrap .featureItem img {
        max-width: unset;
    }

    .mainPage .featureItem .inner-wrap {
        width: 100%;
    }

    .featureItemWrap .featureSub {
        font-size: 14px;
        color: #234015;
        margin-bottom: 16px;
    }

    .featureItemWrap .featureTitle {
        font-size: 18px;
    }

    .featureItemWrap .featureDesc {
        font-size: 16px;
        line-height: 1.88;
        color: #000;
    }

    .mainPage .featureItemWrap .btn-add {
        margin-top: 32px;
        width: 160px;
        height: 51px;
        padding: 0 24px;
        font-size: 16px;
    }

    .mainPage .featureItemWrap {
        gap: 56px;
    }

    .mainPage .featureItemWrap .repo {
        flex-direction: column;
    }

    .mainPage .featureGrid {
        padding-bottom: 80px;
    }

    .mainNoticeSection {
        padding: 80px 16px 80px;
    }

    .mainNoticeSection .board-title {
        font-size: 24px;
    }

    .mainNoticeSection .board-subtitle {
        font-size: 18px
    }

    .mainNoticeSection .board-card-wrap {
        margin: 40px 0;
        flex-direction: column;
        flex-wrap: unset;
    }

    .mainNoticeSection .board-card {
        flex: unset;
        max-width: unset;
    }

    .mainNoticeSection .board-card .img-wrap {
        aspect-ratio: 2 / 1;
    }

    .mainNoticeSection .btn-add {
        width: 160px;
        height: 51px;
        font-size: 16px;
        padding: 0 24px;
    }

    .mainFaqSection .title-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }

    .mainFaqSection .board-title {
        font-size: 24px;
    }

    .mainFaqSection .boardToggleHeader {
        padding: 24px 16px;
        flex-direction: row;
    }

    .mainFaqSection .boardItem:first-child {
        border-top: 1px solid #e4e4e4;
    }

    .mainFaqSection .boradCont {
        font-size: 16px;
    }

    .mainFaqSection .btn-add {
        max-width: 160px;
        margin: 40px auto 0;
        font-size: 16px;
    }

    .mainFaqSection {
        padding-bottom: 80px;
    }

    .mainPage .infoBanner {
        border-radius: 16px;
        margin-bottom: 80px;
    }

    .infoBanner .title {
        font-size: 24px;
        /* color: #234015; */
        color: #000;
        line-height: 1.67;
    }

    .mainPage .infoBanner .cont {
        flex-direction: column;
        gap: 16px;
    }

    .mainPage .infoBanner .cont-txt {
        font-size: 18px;
    }

    .mainPage .infoBanner i {
        font-size: 20px;
    }

    .mainPage .infoBanner .btn-add {
        max-width: 160px;
        margin-top: 24px;
    }

    .mainMapSection .title {
        font-size: 24px;
        text-align: center;
    }

    .mainMapSection .map-cont {
        margin-top: 32px;
        flex-direction: column;
        align-items: start;
        margin-bottom: 40px;
    }

    .mainMapSection .map-item {
        align-items: start;
    }

    .mainMapSection .map-item i {
        font-size: 18px;
    }

    .mainMapSection .map-item .title {
        font-size: 16px;
        margin-right: 12px;
    }

    .mainMapSection .map-item .cont-txt {
        font-size: 16px;
    }

    .mainMapSection iframe {
        height: 600px;
    }

    .mainMapSection {
        padding-bottom: 80px;
    }

    .mainMapSection .map-cont {
        gap: 24px;
    }

    .greetingTitle {
        font-size: 24px;
        padding-top: 40px;
    }

    .greetingSubTitle {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .greetingImage {
        max-width: unset;
        margin: 0 auto;
    }

    .greetingWrap {
        padding-bottom: 80px;
    }

    .practiceText {
        flex-direction: column;
        gap: 24px;
    }

    .practiceText h2 {
        font-size: 20px;
    }

    .practiceText p {
        font-size: 16px;
        max-width: unset;
    }

    .practiceInner {
        flex-wrap: unset;
        gap: 40px;
    }

    .practiceCards {
        flex: unset;
        grid-template-columns : unset;
    }

    .consultingSection .consultingGraphic {
        width: 58%;
        max-width: 274px;
        margin: 40px auto 0;
    }

    .consultingSection .sectionTitle {
        font-size: 20px;
    }

    .consultingSection .sectionDesc {
        font-size: 16px;
        line-height: 1.88;
    }

    .consultingSection .consultingInner {
        padding: 80px 0;
    }

    .contactInfoGroup .subTitle, .executiveGroup .subTitle {
        font-size: 20px;
    }

    .contactInfoGroup .infoItemWrap {
        flex-direction: column;
        gap: 24px;
    }

    .contactInfoGroup .item-icon {
        font-size: 18px;
    }

    .contactInfoGroup .infoItem .label,
    .contactInfoGroup .infoItem .value {
        font-size: 16px;
    }

    .executiveColumn {
        max-width: unset;
    }

    .executiveCardGroup {
        gap: 16px;
    }


    .featureItem-title {
        font-size: 20px;
    }

    .featureItem-subtext {
        font-size: 16px;
    }


    .featureGrid {
        margin-top: 80px;
        padding-top: 80px;
    }

    .featureGrid .title-wrap .title {
        font-size: 20px;
    }

    .featureItemWrap .featureItem img {
        margin-bottom: 24px;
    }

    .busiCare .featureItem img {
        margin-bottom: unset;
    }

    .featureItem-image img {
        border-radius: unset;
    }

    .busiCare .featureItemWrap .repo {
        flex-direction: column;
    }

    .activitySection .activityTitle {
        font-size: 20px;
    }

    .activitySection .activitySub {
        font-size: 16px;
    }

    .activitySection .activityDate {
        font-size: 16px;
    }

    .infoBanner .cont {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.44;
    }

    .busiConsulting  .featureItemWrap .featureItem img {
        margin-bottom: unset;
    }
}






/* 마이페이지 */
@media screen and (max-width: 1024px) {


    .mb {
        display:flex;
    }

    .mySection {
        padding: 16px;
        padding-bottom: 80px;
        margin-top: 88px;
        flex-direction: column-reverse;
    }

    .myContainer {
        max-width: 100%;
    }

    .mypage-sidebar {
        width: 100%;
        padding-bottom: unset;
        border: unset;
        border-radius: unset;
        margin-top: 40px;
    }

    .sidebar-title {
        background-color: unset;
        color: #202020;
        padding: unset;
        display: flex;
        align-items: center;
        font-size: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid #333;
    }


    .sidebar-title .title-bar {
        display: flex;
        width: 3px;
        height: 24px;
        background-color: #234015;
        margin-right: 6.5px;
    }

    .sidebar-menu {
        padding: unset;
    }

    .logout-wrap {
        padding-left: unset;
        margin-top: 30px;
    }



    .member-title-wrap {
        padding-bottom: 16px;
    }

    .member-title-wrap .title-bar {
        width: 3px;
        height: 24px;
        margin-right: 6.4px;
    }

    .member-title-wrap .title {
        font-size: 20px;
    }

    .member-title-wrap .title span {
        font-size: 11px;
    }

    .member-notice .boardToggleHeader {
        padding: 16px 0;
    }

    .toggleList .boardItem {
        position: relative;
    }

    .member-notice .toggleList .boardBtn {
        position: absolute;
        right: 0;
        top: 30px;
    }

    .member-notice .toggleList .boardCont {
        margin-bottom: 8px;
    }

    .myContainer .boardItem.active .boardToggleContent {
        padding: unset;
    }

    .member-inquiry .boardToggleHeader {
        padding: 16px 0;
    }

    .member-inquiry .toggleList .boardLeft {
        flex-direction: row-reverse;
        max-width: unset;
        justify-content: start;
    }

    .member-inquiry .toggleList .boardBtn {
        display: none;
    }

    .myContainer .inquiry-cont {
        padding: 16px;
    }

    .member-inquiry .boardToggleHeader {
        position: relative;
    }

    .myContainer .toggleList .stateBadge {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        width: 73px;
        height: 30px;
        padding: 0 16px;
    }

    .boardToggleContent .btn-del {
        margin-top: 24px;
    }

    .member-inquiry .answer-box {
        padding: 32px 16px;
    }


    .member-inquiry .boardCont {
        max-width: calc(100% - 80px);
    }

    .member-inquiry .answer-head .title {
        font-size: 16px;
        font-weight: bold;
    }

    .member-inquiry .answer-head {
        gap: 16px;
    }

    .btn-logout {
        background-color: #fff;
    }

    .member-welcome {
        background-image: url('/images/member-welcome_m.png');
    }

    .member-welcome .welcome-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .member-welcome .btn-grade {
        padding: 16px;
        display: flex;
        gap: 12px;
    }

    .member-welcome .btn-grade i {
        font-size: 20px;
        color: #fff;
    }

    .member-welcome .link-inquiry {
        margin-top: 32px;
        font-size: 16px;
    }


    .myGradeSection {
        padding: 0 0 80px;
    }

    .myGradeSection .member-title-wrap {
        padding-bottom: 16px;
        margin: 0 16px;
    }

    .gradeSelectWrap {
        margin-top: 32px;
        padding: 24px 16px;
        border-radius: unset;
    }

    .gradeItemWrap {
        gap: 24px;
    }

    .myGradeSection .gradeGuide {
        text-align: start;
        padding: 0 16px;
    }

    .myGradeSection .form-btn-wrap {
        margin: 40px 20px 0;
    }


    .myGradeSection .mypage-sidebar {
        padding: 0 16px;
    }

    .myContainer .toggleList .boardCont {
        font-weight: normal;
    }

    .myNoticeSection .boardItem.active .boardToggleContent{
        padding: 16px;
    }

    .textarea-wrap textarea {
        height: 184px;
    }

    .myInquirySection .form-btn-wrap .btn {
        max-width: unset;
    }


    .form-wrap .btn-active {
        max-width: 110px;
    }

    .form-wrap .btn-next {
        max-width: unset;
    }

}


@media screen and (max-width: 324px) {
    .member-title-wrap .title span {
        font-size: 9px;
    }
}




/* 폼 모바일 */
@media screen and (max-width: 1024px) {
    .auth-heading {
        font-size: 24px;
    }

    .auth-description {
        font-size: 13px;
        margin-top: 16px;
    }

    .tab-btn {
        font-size: 18px;
        padding-bottom: 18px;
    }

    .form-wrap {
        margin-top: 30px;
    }

    .input-inner-wrap .btn {
        max-width: 110px;
    }


}




@media screen and (max-width:1024px) {

    .joinSection .auth-panel {
        max-width: unset;
    }

    .join-wrap  .formSection {
        padding: unset;
    }

    .agree-box strong {
        font-size: 16px;
    }

    .agree-items {
        padding: 24px 12px;
    }

    .agree-item {
        align-items: start;
    }

    .agree-item .text {
        text-align: start;
        width: 100%;
        max-width: calc(100% - 80px);
        line-height: 1.57;
    }

    .gradeGuide {
        text-align: start;
    }

    .auth-panel {
        /* padding-bottom: 80px; */
        position: unset;
        transform: unset;
        margin-top: 104px;
        margin-bottom: 120px;
    }

    .formSection {
        height: unset;
        padding-top: 80px;
    }

    .findSection .auth-panel {
        padding-top: 20px;
        width: 100%;
    }

    .join-wrap .auth-panel {
        position: unset;
        transform: unset;
        margin-top: 40px;
        margin-bottom: unset;
    }
}


/* 등급변경 팝업 */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: #fff;
    border-radius: 16px;
    max-width: 520px;
    width: calc(100% - 32px);
    text-align: center;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    max-height: 527px;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* 팝업 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.popup-content .resultSection {
    margin-top: unset;
    margin-bottom: unset;
    padding: 80px 48px;
}

.popup-content .resultSection .result-box {
    padding: unset;

}

.popup-content .outSection .result-icon {
    font-size: 68px;
    color: #ed1515;
}

.popup-content .outSection .greenTxt {
    font-size: 40px;
    font-weight: 600;
    color: #ed1515;
}

.popup-content .outSection .btn-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.popup-content .outSection {
    padding: 80px 48px 56px;
}

.popup-content .outSection .btn {
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
}

.popup-content .outSection .btn-cancle {
    background-color: #aeaeae;
}

.popup-content .outSection .btn-withdraw {
    background-color: #202020;
}

.popup-content .red {
    color: #ed1515;
}

.limit-content .result-text {
    font-size: 18px;
}

.limit-content {
    max-height: 477px;
}

@media screen and (max-width: 1024px) {

    .popup-content .resultSection {
        min-height: unset;
    }

    .popup-content .resultSection
    .popup-content .resultSection {
        min-height: unset;
        padding: 24px 16px;
    }

    .popup-content .resultSection .btn {
        margin-top: 32px;
    }

    .popup-content {
        border-radius: 8px;
    }

    .popup-content .outSection {
        padding: 24px 16px;
    }

    .popup-content .outSection .btn-wrap {
        gap: 8px;
    }

}

@media screen and (max-width: 375px) {
    .popup-content .resultSection .result-title,
    .popup-content .resultSection .greenTxt {
        font-size: 28px;
    }
    .popup-content .resultSection .result-title {
        margin-bottom: 24px;
    }

    .popup-content .resultSection .result-text {
        font-size: 16px;
    }

    .popup-content .resultSection .result-icon {
        font-size: 42px;
        margin-bottom: 18px;
    }


}





.sub-top {
    margin-top: 120px;
    background-color: #f9fafb;
    border: solid 1px #f5f5f5;
    font-family: 'Noto Sans KR', sans-serif;
}

.sub-top .inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 64px;
}

.subnav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.subnav .home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 100%;
    border-left: solid 1px #f5f5f5;
    border-right: solid 1px #f5f5f5;
}

.subnav .home i {
    font-size: 21px;
    color: #222;
}

.sbmn_dp {
    width: 100%;
    max-width: 360px;
    height: 100%;
    position: relative;
    border-right: solid 1px #f5f5f5;
}

.sbmn_dp .sbmn_a1 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #202020;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.sbmn_dp .sbmn_a1 i {
    font-size: 21px;
    color: #202020;
}

.sbmn_dp.open {
    background-color: #fff;
}

.sbmn_dp.open .sbmn_a1 {
    color: #234015;
}

.sbmn_dp .sbmn_list {
    position: absolute;
    top: 100%;
    left: 0;
    background:#f9fafb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 10;
    width: 100%;
}

.sbmn_list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    display: block;
}

.sbmn_dp .sbmn_list.active {
    max-height: 250px;
    opacity: 1;
}

.sbmn_dp .sbmn_item a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 15px 20px;
    border-bottom: solid 1px #f5f5f5;
    background: #f9fafb;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: #444444;
    box-sizing: border-box;
}


.sbmn_dp .sbmn_item a:hover {
    background-color: #f2f2f2;
    color: #234015;
}

.sbmn_dp.open .sbmn_a1 i {
    transform: rotate(180deg);
}


@media screen and (max-width: 1024px) {

    .sub-top {
        margin-top: 64px;
    }

    .sub-top .inner {
        height: 60px;
        padding: unset;
    }

    .subnav .home {
        width: 60px;
    }

    .subnav .home i {
        font-size: 18px;
    }

    .sbdp1 {
        display: none;
    }

    .sbmn_dp {
        max-width: unset;
    }

    .sbmn_dp .sbmn_a1 {
        font-size: 16px;
        padding: 16px;
    }

    .sbmn_dp .sbmn_a1 i {
        font-size: 18px;
    }

    .sbmn_dp .sbmn_item a {
        padding: 16px;
    }

}


.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    height: 251px;
}

.step-indicator .step-inner {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 520px;
    width: 100%;
    padding: 0 80px;
}

.step-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* width: 100px; */
    flex-shrink: 0;
}

.step-inner::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    background-color: #e5e5e5;
}

/* 원 안 숫자 */
.circle {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
}

.circle::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5f5f5;
    z-index: 0;
    /* -1 대신 0으로 변경 */
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #aeaeae;
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: solid 2px #e4e4e4;
    background-color: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

/* 텍스트 */
.step-label {
    margin: 8px 0;
    font-size: 14px;
    color: #234015;
}

.step-title {
    font-size: 16px;
    font-weight: bold;
    color: #aeaeae;
}


/* 단계 상태별 색 */
.step-item.done .circle {
    border-color: #1e3b14;
}

.step-item.done .step-num {
    color: #fff;
    border: solid 2px #234015;
    background-color: #234015;
}

.step-item.done .step-label,
.step-item.done .step-title {
    color: #1e3b14;
}

.step-item.current .step-num {
    color: #1e3b14;
    border-color: #1e3b14;
}

.step-item.current .step-label,
.step-item.current .step-title {
    color: #1e3b14;
}


.mixSection {
    margin-top: unset;;
}

.result-step-indicator {
    margin-top: 120px;
}

@media screen and (max-width: 1024px) {
    .step-indicator .step-inner {
        padding: 0 68px;
    }

    .step-label {
        font-size: 12px;
    }

    .result-step-indicator {
        height: 162px;
        margin-top: 64px;
    }

    .step-indicator {
        height: 162px;
    }

    .join-wrap {
        margin-top: 64px;
        min-height: calc(100vh - 64px - 291px);
    }
}

.terms-container {
    max-width: 1472px;
    padding: 0 16px;
    margin: 240px auto 202px;
    color: #202020;
}

.terms-container h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 78px;
    text-align: center;
    color: #000;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 78px;
    text-align: left;
}

.terms-article {
    margin-bottom: 36px;
}

.terms-article h3 {
    font-size: 20px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 12px;
}

.terms-article p {
    font-size: 20px;
    color: #202020;
    line-height: 1.5;
}

.terms-article ul {
    padding-left: 20px;
    margin: 8px 0 12px;
}

.terms-article ul li {
    font-size: 20px;
    color: #202020;
}

.terms-article ul li:not(:last-child){
    margin-bottom: 12px;
}

.terms-article ul li ul {
    margin-top: 6px;
    padding-left: 20px;
    margin-top: 12px;
}

.terms-article ul li ul li {
    font-size: 16px;
    color: #202020;
}


@media screen and (max-width: 1024px) {

    .terms-container {
        margin: 120px auto 80px;
    }

    .terms-container h2 {
        font-size: 32px;
        padding-bottom: 48px;
        margin-bottom: 48px;
    }

    .terms-article {
        margin-bottom: 24px;
    }

    .terms-article h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .terms-article p,
    .terms-article ul li {
        font-size: 18px;
    }

    .terms-article ul {
        padding-left: 8px;
    }

    .terms-article ul li ul {
        padding-left: 14px;
        margin-top: 8px;
    }


}








.page-category {
    display: none;
}

.expiration-alert {
    max-height:fit-content;
}

.expiration-alert .resultSection {
    padding: 50px 24px 40px;
}

.expiration-alert .input-title {
    margin: 32px auto 0;
}

.expiration-alert .result-text{
    font-size: 18px;
}


@media screen and (max-width: 1024px) {
    .expiration-alert .result-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .fee-info-box .bank-info {
        margin-bottom: 0px;
        font-size: 14px;
    }

    .fee-info-box .fee-amount {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .fee-info-box .bank-info-wrap {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 8px;
    }

    .fee-info-box .account-number {
        display: inline;
        font-size: 14px;
        gap:8px;
        margin-top: 8px;
    }

    .fee-info-box .account-number span {
        display: inline-block;
    }

    .fee-info-box .account-number p {
        font-size: 14px;
        display: contents;
    }

    .popup-content .resultSection {
        padding: 5% 5%;
    }

    .fee-info-box .copy-btn {
        font-size: 14px;
        margin-top: 8px;
    }

    .expiration-alert .input-title {
        margin: 24px auto 0;
        font-size: 18px;
    }

    .expiration-alert .result-title {
        margin-bottom: 18px;
    }

    .expiration-alert .resultSection .btn {
        margin-top: 20px;
    }

    .expiration-alert .result-icon {
        margin-bottom: 18px;
    }

}

@media screen and (max-width: 375px) {
    .popup-content .resultSection .result-text{
        font-size: 14px;
    }
}






/* 사이트 팝업 */
/* 전체 오버레이 */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  display: none;
}


/* 팝업 전체 묶음 */
.site-popup-wrap {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;

  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px;
}

.site-popup-wrap.is-open {
  display: flex;
}

.site-popup-overlay.is-open {
    display: flex;
}

.popup-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px;
}


/* 개별 팝업 */


.site-popup-dialog .site-popup-body{
    max-width: 480px;
    aspect-ratio: 1 / 1; 
    min-height:fit-content;
}

.site-popup-body a {
  
} 


:root {
    --popup-size: 560px;
    --popup-footer-height: 50px;
}

.site-popup-dialog {
   
  --responsive-size:unset;
    /* width: var(--responsive-size); */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
    display: flex;
    flex-direction: column;
}


.site-popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,.08);
  border-radius: 0 0 14px 14px;
}




.site-popup-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  display: block;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 1280px) {

    :root {
        --popup-footer-height: 32px;
    }
 
}


@media screen and (max-width: 768px) {

    :root {
    --popup-size: 480px;
  }

 .site-popup-wrap.is-open {
   
    padding: 40px 16px;
    height: 100vh;
    overflow-y: scroll;
  }


.popup-inner {
   flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: fit-content;
    top: 0;
    padding: 20px 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 100%;

}




  .site-popup-dialog {
    width: 100%;
    max-width: 480px;      /* 모바일 최대 크기 제한 */
  }

  .site-popup-footer {
    padding: 4px 12px;
  }


 .site-popup-body img {
    width: 100%;
    display: block;
  }

  .site-popup-never {
    font-size: 14px;
  }

}

