/* 기본 */
html,
body {
    font-size: var(--txt-body2);
    line-height: 1.2;
    color: var(--cgray-900);
}

/* main-btn */
.main_btn{
    font-size: var(--txt-body2);
    font-weight: 600;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    width: fit-content;
}
.main_btn .circle{
    width: 20px;
    height: 20px;
    background: var(--cgray-900);
    border-radius: 50%;
    display: flex;
    justify-content: center;;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.main_btn .circle span{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.main_btn:hover .circle {
    transform: translateX(3px); 
}
.main_btn.white{
    color: #fff !important;
}
.main_btn.white .circle{
    background: #fff;
}
.main_btn.white .circle span{
    color: var(--main-color);
}
.search_btn {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background-color: var(--main-color);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search_btn:hover {
    background-color: #6d0f2a;
}

.refresh_btn {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid var(--cgray-200);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.refresh_btn::before {
  content: "\e5d5"; 
  font-family: 'Material Symbols Outlined';
  font-size: 24px;
  color: var(--cgray-400);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.refresh_btn:hover::before {
  transform: rotate(180deg);
}



/* 메인 공통 */
.sec_wrap{
    padding: 6rem 0;
    max-width: var(--web-width);
    margin: 0 auto;
}
.sec_tit{
    text-align: center;
}
.sec_tit h1{
    font-size: var(--txt-display2);
    font-weight: 700;
}
.sec_tit h2{
    font-size: 2.5rem;
    font-weight: 700;
}
.sec_tit h3{
    font-size: var(--txt-title1);
    font-weight: 600;
}
.sec_tit h4{
    font-size: var(--txt-title3);
    font-weight: 600;
}
.sec_tit p{
    font-size: var(--txt-heading2);
    font-weight: 400;
    width: 70%;
}

.sub_tit h3 {
    margin: 0.5rem 0 1rem;
    font-size: var(--txt-title3);
    position: relative;
    padding-left: 15px; 
    display: flex;
    align-items: center;
    color: var(--cgray-800);
    font-weight: 700;
}

.sub_tit h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); 
    width: 4px;
    height: 16px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.sub_tit h4 {
    margin: 0.5rem 0 1rem;
    font-size: var(--txt-heading1);
    position: relative;
    padding-left: 15px; 
    display: flex;
    align-items: center;
    color: var(--cgray-800);
    font-weight: 700;
}

.sub_tit h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); 
    width: 4px;
    height: 16px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.grey_box {
    width: 100%;
    background: var(--cgray-50);
    padding: 1.5rem 2rem;
    border: 1px solid var(--cgray-200);
    font-size: var(--txt-body1) !important;
}
.grey_box .material-symbols-outlined{
    font-size: 20px;
    vertical-align: middle;
    color: var(--main-color);
}
/* 메인 빠른메뉴 */
.quick_wrap{
    margin-top: 2rem;
}
.quick_wrap .quick_row{
    display: grid;
    gap: 1rem;
}
.quick_wrap .quick_row.top{
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1rem;
}
.quick_wrap .quick_row.bottom{
    grid-template-columns: repeat(2, 1fr);
}
.quick_wrap .quick_card{
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 194px;
    cursor: pointer;
}
.quick_wrap .quick_card:hover{
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-normal);
}
.quick_wrap .quick_card .main_btn{
    margin-top: auto;
}
.quick_wrap .quick_card:hover .main_btn .circle{
    transform: translateX(3px); 
}
.quick_wrap .quick_card.qna{
    background: var(--sub-color-3);
}
.quick_wrap .quick_card.consulting{
    background: var(--sub-color-4);
}
.quick_wrap .quick_card.guide{
    background: var(--cgray-200);
}
.quick_wrap .quick_card.early{
    background: #ff949c;
}
.quick_wrap .quick_card.long{
    background: #04c0c3;
}
.quick_wrap .quick_card .card_tit{
    font-size: var(--txt-heading1);
    font-weight: 600;
    margin-bottom: 8px;
}
.quick_wrap .quick_card .card_desc{
    font-size: var(--txt-body2);
    color: var(--cgray-700);
}
.quick_wrap .quick_card .card_ic{
    width: auto;
    height: 56px;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}
.quick_wrap .quick_card .card_ic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--메인 멘토 검색--*/
.search_wrap {
    overflow: hidden;
    position: relative;
}
.search_wrap::before{
    content: "";
    position: absolute;
    top: 4rem;
    right: 0;
    width: 100vw;
    height: 68%;
    background: var(--cgray-200);
    z-index: -1;
}
.search_wrap::after{
    content: 'Grad\A Career';
    white-space: pre;
    position: absolute;
    font-size: 72px;
    font-weight: 800;
    right: 0;
    bottom: 102px;
    color: var(--cgray-50);
    z-index: -1;
    line-height: 80%;
}

.search_wrap .sec_wrap {
    display: flex;
    gap: 50px; 
    margin: 0 auto;
    position: relative;
    padding: 0;
}

.search_wrap .left_bg {
    flex: 1; 
    position: relative;
    padding: 60px 60px 60px 0;
    z-index: 1;
    align-content: center;
}

.search_wrap .left_bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0; 
    width: 100vw;
    height: 100%;
    background: var(--main-color);
    z-index: -1; 
    border-top-right-radius: 280px;
}
.search_wrap .left_bg::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 520px;
    height: 520px;
    opacity: 0.1;
    background: url('../images/main/korea_tiger.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
}
.search_wrap .left_area {
    color: #fff;

}
.search_wrap .left_area .sec_tit{
    text-align: left;
}

.search_wrap .right_area {
    flex: 1.5; 
    padding: 100px 0 30px;
}

.main_contents .search_box{
    all: unset;
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--box-shadow-normal);
    position: relative;
}

.main_contents .search_box::before {
    content: '';
    position: absolute;
    top: -60px;   
    right: -60px;
    width: 130px; 
    height: 120px;
    background: url('../images/main/program_emblem_symbol.png') no-repeat center center;
    background-size: contain;
    z-index: 0; 
    pointer-events: none;
}
.main_contents .search_box::after {
    content: '';
    position: absolute;
    top: -60px;   
    right: -60px;
    width: 130px; 
    height: 120px;
    background: url('../images/main/program_emblem_text.png') no-repeat center center;
    background-size: contain;
    z-index: 0; 
    pointer-events: none;
    animation: rotate_emblem 10s linear infinite;
}
@keyframes rotate_emblem {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.search_section .search_label{
    font-size: var(--txt-body1);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.search_section .search_row{
    display: flex;
    gap: 0.5rem;
}
.search_area {
    display: flex;
    gap: 12px;
    align-items: center;
}


/*----메인 커리어스토리-----*/
.career_wrap{
    background: url(../images/main/career_bg.png) no-repeat;
    background-attachment: fixed;
    background-size: cover;  
    background-position: center;
    margin-top: 4rem;
}
.career_wrap .career_row{
    display: flex;
    gap: 2rem;
}
.career_wrap .career_card{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}
.career_wrap .career_card:hover{
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-normal);
}
.career_wrap .career_card.early{
    background: var(--sub-color-2);
}
.career_wrap .career_card.early::after{
    content: '';
    position: absolute;
    bottom: -70px;   
    right: 20px;
    width: 206px; 
    height: 212px;
    opacity: 0.2;
    background: url('../images/main/career_shape01.svg') no-repeat center center;
    background-size: contain;
    z-index: 0; 
    pointer-events: none;
}
.career_wrap .career_card.long::after{
    content: '';
    position: absolute;
    bottom: -15px;   
    right: 20px;
    width: 176px; 
    height: 130px;
    opacity: 0.2;
    background: url('../images/main/career_shape02.svg') no-repeat center center;
    background-size: contain;
    z-index: 0; 
    pointer-events: none;
}
.career_wrap .career_card.long{
    background: var(--sub-color-1);
}
.career_wrap .career_card .chips{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.career_wrap .career_card .chips .chip{
    background: #fff;
    padding: 4px 16px;
    font-size: var(--txt-body2);
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}
.career_wrap .career_card.early .chip{
    color: var(--sub-color-2);
}
.career_wrap .career_card.long .chip{
    color: var(--sub-color-1);
}
.career_wrap .career_card .career_tit{
    font-size: var(--txt-title2);
    color: #fff;
    margin-top: 1rem;
    width: 60%;
    line-height: 140%;
}
.career_wrap .career_card .main_btn{
    margin-top: auto;
}

.career_wrap .career_list{
    padding: 2rem;
    background: #fff;
    flex: 1.3;
}
.career_wrap .career_list .career_item{
    padding: 10px 0;
    border-bottom: 1px dashed var(--cgray-200);
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.career_wrap .career_list .career_item:last-child{
    border-bottom: 0;
}
.career_wrap .career_list .career_item:hover .txt{
    text-decoration: underline;
}
.career_wrap .career_list .career_item .txt{
    font-size: var(--txt-body1);
    color: var(--cgray-800);
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 540px;
}
.career_wrap .career_list .career_item .date{
    font-size: var(--txt-label);
    color: var(--cgray-400);
    margin-left: auto;
    white-space: nowrap;
}
.career_wrap .main_btn .circle span{
    color: var(--cgray-900) !important;
}

/*----메인 배너------*/
.banner_wrap{
    background: var(--main-color);
    width: 100%;
    margin: 6rem 0 10rem;
    position: relative;
}

.banner_wrap .sec_wrap{
    padding: 0;
}
.banner_wrap .inner{
    display: flex;
    width: 100%;
}
.banner_wrap .left_area{
    padding: 3rem 0;
    flex: 1.5;
}

.banner_wrap .left_area h3{
    color: #fff;
    font-size: var(--txt-title2);
    font-weight: 700;
}
.banner_wrap .left_area p{
    color: #fff;
    font-size: var(--txt-body1);
    line-height: 150%;
    margin: 1.5rem 0 2rem;
    text-wrap-style: balance;
    opacity: 0.9;
    font-weight: 400;
}
.banner_wrap .left_area .btn_wrap{
    display: flex;
    gap: 1rem;
}
.banner_wrap .sub_btn{
    padding: 8px;
    width: 130px;
    border: 1px solid #fff;
    color: #fff;
    font-size: var(--txt-body2);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.banner_wrap .sub_btn:hover{
    background: #fff;
    color: var(--main-color);
}
.banner_wrap .right_area{
    position: relative;
    flex: 1;
}
.banner_wrap .right_area .phone_img{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.banner_wrap .right_area .phone_img img{
    position: absolute;
    bottom: 0;
}

.banner_wrap .right_area .bubble{
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: var(--txt-label);
    font-weight: 400;
    line-height: 140%;
    border-radius: 32px;
    text-align: center;
    position: absolute;
    box-shadow: var(--box-shadow-normal);
    color: var(--cgray-900);
}
.banner_wrap .right_area .bubble.top{
    border-bottom-left-radius: 0 !important;
    right: 10%;
    top: 15%;
    width: 224px;
}
.banner_wrap .right_area .bubble.bottom{
    border-bottom-right-radius: 0 !important;
    bottom: 18%;
    right: 37%;
    width: 290px;
}
.banner_wrap::after {
content: 'Korea University Graduate Career';
    position: absolute;
    bottom: -63%;
    left: 0;
    width: 100%;
    font-size: 6.8vw; 
    font-weight: 700;
    letter-spacing: -0.3vw; 
    white-space: nowrap;
    color: #ededef;
    z-index: -1;
    text-align: center; 
}
/*----메인 플로팅 퀵메뉴----*/
.quick_menu_wrap {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.quick_menu_wrap .quick_menu_inner {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-all-lg);
    box-shadow: var(--box-shadow-normal);
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
}

.quick_menu_wrap .quick_menu_inner .quick_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    padding: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-700);
    cursor: pointer;
}
.quick_menu_wrap .quick_menu_inner .quick_item:first-child{
    padding-top: 16px;
}
.quick_menu_wrap .quick_menu_inner .quick_item:last-child{
    padding-bottom: 16px;
}
.quick_menu_wrap .quick_menu_inner .icon_box {
    transition: transform 0.3s ease;
}

.quick_menu_wrap .quick_menu_inner .icon_box .material-symbols-outlined {
    font-size: 24px;
    font-weight: 300; 
}

.quick_menu_wrap .quick_menu_inner .quick_txt {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.quick_menu_wrap .quick_menu_inner .quick_item:hover {
    background-color: var(--main-color);
    color: #fff;
}

.quick_menu_wrap .quick_menu_inner .quick_item:hover .icon_box {
    transform: translateY(-3px); 
}

.quick_menu_wrap .quick_menu_inner .divider {
    height: 1px;
    background: var(--gray-200);
    margin: 5px 10px;
}

.quick_menu_wrap .quick_menu_inner .btn_top {
    color: var(--main-color);
}

.quick_menu_wrap .quick_menu_inner .btn_top:hover {
    background-color: var(--gray-100);
    color: var(--main-color);
}

/*----101 서비스 소개-----*/
.about_wrap .img_area{
    display: flex;
    min-height: 200px;
}
.about_wrap .img_area img{
    width: 100%;
    flex: 1;
    object-fit: cover;
}
.about_wrap .txt_area {
	display:flex;
	gap: 2rem;
    position: relative;
}
.about_wrap .txt_area::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0rem; 
    width: 120px;
    height: 120px;
    background: url(../images/main/korea_emblem.png) no-repeat center / contain;
    z-index: 10;
}
.about_wrap .txt_area .left_area{
	flex: 1;
	background: var(--main-color);
	margin-left: -100vw;
	padding-left: 100vw;
	margin-top: -4rem;
	height: fit-content;
    z-index: 5;
}
.about_wrap .txt_area .right_area{
	flex: 3;
}
.about_wrap .txt_area .left_area .tit_box{
	color: #fff;
	padding: 2rem 1.5rem;
	font-size: var(--txt-heading1);
	line-height: 1.4;
    position: relative;
}
.about_wrap .txt_area .left_area .tit_box::before{
	content:'';
	position: absolute;
	width: 30px;
	height: 30px;
	background: #fff;
	top: -30px;
	right: -30px;
}
.about_wrap .txt_area .left_area .tit_box::after{
	content:'';
	position: absolute;
	width: 30px;
	height: 30px;
	background: var(--main-color);
	top: -60px;
	right: -60px;
}

.about_wrap .txt_area .right_area{
    margin-top: 2rem;
}
.about_wrap .txt_area .right_area h5{
    font-size: var(--txt-heading1);
    display: inline; 
    background: linear-gradient(to top, var(--sub-color-3) 40%, transparent 40%);
    line-height: 1.6;
    padding: 0 2px;
}
.about_wrap .txt_area .right_area .txt_wrap{
    margin-top: 0.75rem;
}
.about_wrap .txt_area .right_area .txt_wrap p{
    color: var(--cgray-700);
    line-height: 140%;
    font-size: var(--txt-body1);
    margin-bottom: 12px;
    text-align: justify;
}

/**----201 이용가이드 - 이용가이드----*/
.sub_bg_wrap{
    display: flex;
    align-items: center;
}
.sub_bg_wrap .img_area{
    flex: 1;
    overflow: hidden;
}

.sub_bg_wrap .img_area img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.sub_bg_wrap .txt_area{
    flex: 0.6;
    padding: 2rem;
    margin-left: -8rem;
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: var(--box-shadow-normal);
    height: fit-content;
    position: relative;
    border-top: 4px solid var(--main-color);
}

.sub_bg_wrap .txt_area::before{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    bottom: -30px;
    left: -30px;
}

.sub_bg_wrap .txt_area::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--main-color);
    bottom: -60px;
    left: -60px;
}

.sub_bg_wrap .txt_area p{
    font-size: var(--txt-heading2);
}
.item_wrap{
    display: flex;
    gap: 2rem;
}
.item_wrap .item{
    padding: 2rem;
    border: 1px solid var(--cgray-200);
    display: flex;
    gap: 3rem;
    text-align: center;
    align-items: center;
    width: 100%;
}
.item_wrap .item .img_area{

}
.item_wrap .item .txt_area{
    font-size: var(--txt-body1);
    color: var(--cgray-700);
}
.item_wrap .item .txt_area h4{
    font-size: var(--txt-heading2);
    font-weight: 700;
    text-align: left;
    color: var(--cgray-900);
}

.guide_wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.guide_wrap .guide_item{
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--cgray-200);
    padding: 2rem;
    justify-content: space-between;
}
.guide_wrap .guide_item .txt_area h4{
    font-size: var(--txt-heading2);
    font-weight: 700;
    color: var(--cgray-900);
    margin-bottom: 0.5rem;
}
.guide_wrap .guide_item .txt_area{
    font-size: var(--txt-body1);
    color: var(--cgray-700);
}
.guide_wrap .guide_item .ic_area{
    width: 70px;
    height: 70px;
}
.guide_wrap .guide_item .ic_area img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.usage_wrap .grey_box {
    font-size: var(--txt-body1);
}

/*----202 이용가이드 - 멘토 신청 가이드----*/
.step_wrap{
    display: flex;
    gap: 8px;
    padding: 2rem;
    border: 1px solid var(--cgray-200);
}
.step_wrap .step_box{
    text-align: center;
    justify-items: center;
    flex: 1;
}
 
.step_wrap .step_box .ic_area{
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}
.step_wrap .step_box .ic_area img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.step_wrap .step_box .tit{
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: var(--txt-heading1);
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 12px;
}
.step_wrap .step_box .tit .num{
    display: flex;
    width: 32px;
    height: 32px;
    background: var(--main-color);
    color: #fff;
    font-size: var(--txt-body2);
    font-weight: 600;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.step_wrap .step_box .desc{
    font-size: var(--txt-body1);
    color: var(--cgray-800);
    line-height: 140%;
    font-weight: 500;
    text-wrap-style: balance;
}
.step_wrap .step_box .desc ul.line li{
    margin: 6px 0;
    color: var(--cgray-500);
    font-weight: 400;
}

.step_wrap .material-symbols-outlined{
    align-content: center;
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 600;
}



/*----301 교우멘토링 - 멘토리스트----*/
.mentor_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mentor_box{
    padding: 2rem;
    background: #fff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--cgray-200);
    /* box-shadow: var(--box-shadow-normal); */
}
.mentor_box:hover{
   box-shadow: var(--box-shadow-normal);
}
.heart_btn{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cgray-100);
    border: 1px solid transparent; 
    border-radius: 50px; 
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--cgray-300);
    font-size: 24px;
    
    width: 40px;
    height: 40px;
    padding: 0;
}
.heart_btn.has_text {
    width: auto;     
    padding: 0 16px;  
    gap: 8px;        
    font-size: 15px; 
}
.heart_btn.has_text span{
    font-size: 24px;
}
.heart_btn.has_text .txt {
    font-weight: 500;
    color: var(--cgray-600);
    font-size: var(--txt-body1);
}
.heart_btn.active{
    background: #fff0f1;
    color: var(--main-color);
}
.heart_btn.active .txt {
    color: var(--main-color); 
}
.mentor_box .mentor_profile{
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.mentor_box .mentor_img{
    width: 94px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--cgray-200);
}
.mentor_box .mentor_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mentor_box .mentor_info .name{
    font-size: var(--txt-title3);
    font-weight: 600;
    margin-bottom: 1rem;
}
.mentor_box .mentor_info .name span{
    font-size: var(--txt-body1);
    color: var(--cgray-500);
    margin-left: 8px;
    font-weight: 400;
}
.mentor_box .mentor_info p{
    font-size: var(--txt-body2);
    font-weight: 500;
    color: var(--cgray-700);
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 8px;
}
.mentor_box .mentor_info .company::before {
    content: '\f1d0';
    font-family: 'Material Symbols Outlined';
    font-size: 22px;
    background: var(--cgray-100);
    padding: 6px;
    border-radius: 50%;
    color: var(--cgray-500);
    font-weight: 300;
}
.mentor_box .mentor_info .desc::before {
    content: '\f4ca';
    font-family: 'Material Symbols Outlined';
    font-size: 22px;
    background: var(--cgray-100);
    padding: 6px;
    border-radius: 50%;
    color: var(--cgray-500);
    font-weight: 300;
}
.mentor_box .mentor_stats{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px dashed var(--cgray-200);
    margin-bottom: 1rem;
}
.mentor_box .mentor_stats .stat_item .label{
    display: block;
    font-size: 15px;
    color: var(--cgray-400);
    margin-bottom: 8px;
}
.mentor_box .mentor_stats .stat_item .value{
    font-weight: 600;
    font-size: var(--txt-heading2);
}
.star_rating{
    display: flex;
    gap: 2px;
}
.star_rating span{
    font-size: 24px;
    color: #e2e8f0; 
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.star_rating .material-symbols-outlined[style*="'FILL' 1"],
.star_rating .half {
    color: #FFB800; 
    font-variation-settings: 'FILL' 1;
}

.mentor_box .badge_area{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
    margin-bottom: 1.5rem;
}
.mentor_box .badge_area .badge_slot{
    aspect-ratio: 1 / 1;
    position: relative;
    /* background: #f1f5f9; */
    /* border-radius: 4px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.mentor_box .badge_area .badge_slot img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.badge_slot[data-tooltip]::after {
    content: attr(data-tooltip); 
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 9999;
}


.badge_slot[data-tooltip]:hover::after,
.badge_slot[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.sub_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 134px;
    height: 40px;
    border-radius: 50px;
    border: 0;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--cgray-500);
    border: 1px solid var(--cgray-200);
    background: none;
    float: right;
}

.sub_btn svg{
  margin: 0 0 0 18px;
}
.sub_btn:hover{
    color: var(--cgray-600);
    border-color: var(--cgray-600);
}
.sub_btn:hover svg {
    transform: translateX(4px);
  transition: 0.3s;
}
.sub_btn:not(:hover) svg {
  transition: 0.3s;
}

.sub_btn:active {
  transform: scale(0.9, 0.9);
  transition: 200ms;
}

.sub_btn:not(:active) {
  transition: 200ms;
}

.search_mentor{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    border: 1px solid var(--cgray-200);
    padding: 2rem;
    margin-bottom: 3rem;
}
.search_mentor .search_section{
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    white-space: nowrap;
}
.search_mentor .search_section .search_row{
    width: 100%;
}
.search_mentor .search_area{
    width: 100%;
}
.search_mentor .search_area .search_input{
    max-width: 394px;
}
.search_mentor .search_area .search_btn_wrap{
    display: flex;
    gap: 1rem;
}

/*------멘토 view-----*/
/* 상세페이지 메인 컨테이너 */
.mentor_view_wrap .mentor_profile_header {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    background: #fff;
    border: 1px solid var(--cgray-200);
    margin-bottom: 2rem;
    align-items: flex-start;
    position: relative;
}

/* 왼쪽: 이미지 영역 */
.mentor_view_wrap .profile_left .mentor_img {
    width: 160px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--cgray-200);
}
.mentor_view_wrap .profile_left .mentor_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 중앙: 정보 영역 */
.mentor_view_wrap .profile_body {
    flex: 1;
}

.mentor_view_wrap .info_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.mentor_view_wrap .name_area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
}

.mentor_view_wrap .name_area .name {
    font-size: 2rem;
    font-weight: 700;
}

.mentor_view_wrap .name_area .name span {
    font-size: var(--txt-body1);
    color: var(--cgray-500);
    font-weight: 400;
}

/* 찜하기 버튼 상세용 커스텀 */
.mentor_view_wrap .heart_btn {
    position: inherit;
}
.mentor_view_wrap .heart_btn.wrap{

}

.mentor_view_wrap .tags {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mentor_view_wrap .tags .desc {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.mentor_view_wrap .tags .desc::before {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: var(--cgray-400);
}

/* 통계 영역 그리드 */
.mentor_view_wrap .stats_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--cgray-50);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.mentor_view_wrap .stat_box .label {
    display: block;
    font-size: var(--txt-body2);
    color: var(--cgray-500);
    margin-bottom: 5px;
}

.mentor_view_wrap .stat_box .value {
    font-size: var(--txt-heading2);
    font-weight: 600;
    color: var(--cgray-800);
}

.mentor_view_wrap .rating_flex {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mentor_view_wrap .rating_flex .score_text{
    font-size: var(--txt-body1);
    font-weight: 600;
}

/* 보유 뱃지 영역 */
.mentor_view_wrap .mentor_badges .badge_title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cgray-700);
    margin-bottom: 10px;
}

.mentor_view_wrap .mentor_badges .badge_area {
    display: flex;
    gap: 10px;
}

.mentor_view_wrap .mentor_badges .badge_slot {
    width: 50px;
    height: 50px;
    position: relative;
}
.mentor_view_wrap .mentor_badges .badge_slot img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mentor_view_wrap .profile_right_action {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 완료 안내 */
.complete_box{
	background: var(--cgray-50);
	text-align: center;
	padding: 3rem;
	align-items: center;
	align-content: center;
}

.complete_box .icon_area{
	background: var(--main-color);
	width: 50px;
	height: 50px;
	color: #fff;
	border-radius: 50%;
	align-content: center;
	margin: 0 auto;
}
.complete_box .icon_area .material-symbols-outlined{
	font-size: 2rem;
	padding-top: 4px;
	font-weight: 600;
}

.complete_box h4{
    font-size: var(--txt-title2);
    font-weight: 400;
    margin: 1.5rem 0 0.5rem;
}

.complete_box p.desc{
    font-size: var(--txt-body1);
    color: var(--cgray-500);
}
/* ---------------------- window popup ------------------------*/
#window_popup {padding: 20px; width: 820px; min-width: 820px; max-width: 820px; max-height: 740px;}
#window_popup table {width: 780px;}
#window_popup table .no_bold{width: 100%;}
#window_popup table td {padding: 8px 10px !important;}
.print_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--c-black-4);
    padding-bottom: 0.5em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 70px;
}
.print_top .left .img img{
    width: 180px;
}
.print_top .left .txt {
    display: flex;
    align-items: flex-end;
}
.print_top .left .txt p {
    font-size: 12px;
}
.print_top .right {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
}
.print_center {
    margin: 20px 0;
    min-height: 65vh;
}
.print_center h6 {
    font-size: 20px;
    margin-bottom: 16px;
}
.print_center .wrap {
    display: flex;
    flex-wrap: wrap;
}
.pop_print .print_tb tr {
    border-bottom: 1px solid var(--c-black-5);
    border-left: 1px solid var(--c-black-5);
}
.pop_print .print_tb th {
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid var(--c-black-5);
}
.pop_print .print_tb td {
    border-right: 1px solid var(--c-black-5);
    font-size: 14px;
}
.print_bottom .bottom_txt {
    margin: 30px 0;
}
.print_bottom .bottom_txt p {
    font-size: 12px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;}
.window_popup_print{
    padding-bottom: 2rem;
}
.window_popup_print .btn{
    width: auto !important;
}
.window_popup_print .btn.btn_normal{
    background: var(--cgray-400);
}

/*------qna------------*/
.sign_overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.sign_overlay.active {
    display: flex;
}

.sign_overlay .sign_overlay_inner {
    position: relative;
}

.sign_overlay .pwd_box {
    background: #fff;
    padding: 25px; 
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    position: relative;
}

.sign_overlay .pwd_box h4 {
    font-size: var(--txt-heading1);
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #333;
}

.sign_overlay .pwd_box p {
    font-size: var(--txt-body2);
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    word-break: keep-all;
}

.sign_overlay .pwd_box .txt_box {
    width: 100%;
    height: 48px; 
    border: 1px solid #ddd;
    border-radius: 8px; 
    padding: 0 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.2s;
}

.sign_overlay .pwd_box .txt_box:focus {
    border-color: var(--main-color);
    outline: none;
}

.sign_overlay .pwd_box .btn_confirm_m {
    width: 100%;
    height: 50px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px; 
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sign_overlay .pwd_box .btn_confirm_m:hover {
    opacity: 0.9;
}

.sign_overlay .sign_close {
    position: absolute;
    top: 15px; 
    right: 15px;
    width: 30px;
    height: 30px;
    background: none; 
    border: none;
    color: #999;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: block;
    line-height: 1;
    z-index: 10;
}

.sign_overlay .sign_close:hover {
    color: #333;
}

/*-------Q&A 등록--------*/
.mentor_selector_container {
    width: 100%;
}

.mentor_selector_container .selected_mentor_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px; 
    padding: 4px 10px;
    background-color: var(--cgray-50);
    border: 1px solid var(--cgray-200);
    border-radius: 4px;
    min-height: 40px;
    box-sizing: border-box;
}

.mentor_selector_container .selected_mentor_box .placeholder {
    color: var(--cgray-400);
    font-size: 15px;
    letter-spacing: -0.5px;
}


.mentor_selector_container .btn_mentor_search:hover {
    opacity: 0.9;
}

.mentor_selector_container .mentor_card_active {
    display: flex;
    gap: 2px;
    text-align: left;
}

.mentor_selector_container .mentor_card_active .m_name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.mentor_selector_container .mentor_card_active .m_sub {
    font-size: 12px;
    color: #666;
}

.mentor_selector_container.error .selected_mentor_box {
    border-color: #ff4d4d;
    background-color: #fff5f5;
}


.modal_wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal_wrapper .modal_content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.modal_wrapper .modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal_wrapper .modal_header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.modal_wrapper .btn_modal_close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.modal_wrapper .modal_filter_area {
    margin-bottom: 20px;
}

.modal_wrapper .search_bar {
    position: relative;
    margin-bottom: 12px;
}

.modal_wrapper .search_bar input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.modal_wrapper .search_bar .material-symbols-outlined {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.modal_wrapper .filter_toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal_wrapper .switch_label {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.modal_wrapper .switch_label input { opacity: 0; width: 0; height: 0; }

.modal_wrapper .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.modal_wrapper .slider:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 2px; bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.modal_wrapper input:checked + .slider { background-color: var(--main-color, #007bff); }
.modal_wrapper input:checked + .slider:before { transform: translateX(16px); }

.modal_wrapper .filter_txt { font-size: 15px; color: #666; }

.modal_wrapper .mentor_list_item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
    transition: background 0.2s;
}

.modal_wrapper .mentor_list_item:hover {
    background-color: #f8f9fa;
}

.modal_wrapper .m_profile_img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    flex-shrink: 0;
}

.modal_wrapper .m_info_text {
    flex: 1;
}

.modal_wrapper .m_name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.modal_wrapper .m_company {
    font-size: 14px;
    color: #888;
}

.modal_wrapper .btn_item_select {
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.modal_wrapper .btn_item_select:hover {
    background: var(--main-color);
    color: #fff;
}

.i_date_wd {
    width: 100%;
    max-width: 250px;
    height: 45px;
    padding: 0 15px;
    border: 1px solid var(--cgray-200);
    background: var(--cgray-50);
    border-radius: 4px;
    font-size: 16px;
    color: var(--cgray-400);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.i_date_wd:focus {
    border-color: var(--main-color);
}

.date_info_txt {
    display: block;
    margin-top: 4px;
    font-size: var(--txt-label);
    color: #888;
}


/* 답변 작성 컨테이너 */
.reply_container {
    border: 1px solid var(--cgray-200);
    background: var(--cgray-50);
    padding: 2rem;
    /* border-radius: 8px; */
    margin-top: 40px;
}

.reply_container .reply_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
}

.reply_container .reply_header h4 {
    font-size: var(--txt-heading2);
    font-weight: 700;
    color: #333;
}

.reply_container textarea{
    width: 100%;
    min-height: 100px;
}

.reply_content_text {
    font-size:var(--txt-body2);
    line-height: 1.8;
    color: #444;
    min-height: 100px;
    padding: 10px 0;
}



/*------커리어스토리--------*/
.story_cont .story_item {
}
.story_cont .story_item:first-child{
    border-top: 1px solid var(--cgray-900);
}

.story_cont .question {
    margin-top: 0;
    font-weight: 500;
    font-size: var(--txt-body2);
    line-height: 150%;
    background: var(--cgray-100);
    padding: 1rem;
}
.story_cont .answer {
    line-height: 150%;
    color: var(--cgray-700);
    white-space: pre-wrap;
    padding: 1rem 0;
    display: flex; 
    flex-direction: column;
}

.story_cont .answer textarea {
    width: 100%;
    flex: 1; 
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box; 
    resize: vertical;
    min-height: 100px;
}

.mentor_rating_area{
    padding: 2rem;
    background: var(--cgray-50);
    border-top: 1px solid var(--cgray-200);
    border-bottom: 1px solid var(--cgray-200);
}
.mentor_rating_area .rating_container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}
.mentor_rating_area .rating_label{
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cgray-600);
}
.mentor_rating_area .star_group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.mentor_rating_area .star_group .star_container{
    display: flex;
    cursor: pointer;
}
.mentor_rating_area .star_group .star_unit {
    font-size: 36px;
    color: #ddd;
    font-variation-settings: 'FILL' 0;
    transition: transform 0.1s, color 0.2s;
}
.mentor_rating_area .hit_area { position: absolute; top: 0; width: 50%; height: 100%; z-index: 10; cursor: pointer; }
.mentor_rating_area .hit_area.left { left: 0; }
.mentor_rating_area .hit_area.right { left: 50%; }

.star_unit_wrapper {
    position: relative;
    display: inline-block;
}

.mentor_rating_area .star_group .star_unit_wrapper.active .star_unit {
    color: #ffca08;
    font-variation-settings: 'FILL' 1;
}
.star_unit_wrapper:hover .star_unit {
    transform: scale(1.1);
}

.mentor_rating_area .score_display{
    font-size: var(--txt-heading2);
    font-weight: 600;
    min-width: 40px;
}
.mentor_rating_area .rating_display_section{
    justify-items: center;
}
.mentor_rating_area .rating_display_section .rating_flex{
    display: flex;
    gap: 8px;
    align-items: center;
}
.mentor_rating_area .rating_display_section .avg_label{
    font-size: var(--txt-body1);
    color: var(--cgray-800);
}
.mentor_rating_area .rating_display_section .score_text{
    font-size: var(--txt-heading1);
    font-weight: 600;

}
.mentor_rating_area .rating_display_section .total_count{
    font-size: var(--txt-label);
    color: var(--cgray-500);
    margin-top: 4px;
    display: block;
}

/*-------커리어스토리 작성----------*/
.input_flex_group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input_flex_group .input_text {
    flex: 1; 
    min-width: 0; 
}

.input_flex_group .split {
    color: var(--cgray-400);
    font-weight: 500;
}

table.width_full .i_sup{
    min-width: auto;
}
table.width_full input[type="text"]{
    width: -webkit-fill-available;
}
.research_group input[type="text"]{
    width: -webkit-fill-available;
}
table.info_table .img_area img{
	width: 100%;	
    aspect-ratio: 3 / 4;
}

.table_flex_unit {
    display: flex;
    align-items: stretch;
    margin-bottom: -1px; 
}

.table_flex_unit .tb_scroll {
    flex: 1; 
}

.table_flex_unit table {
    margin-bottom: 0;
}

.btn_table_del {
    width: 24px;
    height: 24px;
    background: var(--cgray-400); 
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin: 0 auto; 
    transition: 0.2s;
}

.btn_table_del:hover {
    background: var(--cgray-800);
}

.btn_group_add {
    display: flex;
    justify-content: center;
    padding: 8px;
    border: 1px solid var(--gray-300);
    border-top: none;
}

.btn_add_card {
    border: none;
    color: var(--main-color-2);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn_add_card .add_ic {
    display: flex;
    width: 22px;
    height: 22px;
    background: var(--main-color);
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 200;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn_add_card .add_ic::before {
    content: '\e145';
	font-family: 'Material Symbols Outlined';
}
.btn_add_card:hover .add_ic {
    transform: rotate(180deg);
}
table.no_line{
    border-top: 1px solid var(--cgray-200) !important;
}
table.width_full{
    table-layout: auto;
}
table.width_full .i_sup{
    min-width: auto;
}
table.width_full input[type="text"]{
    width: -webkit-fill-available;
}

/*----------멘토 view 동의서----------------*/
.agreement_container {
    margin: 0 auto;
    padding: 40px 0;
    background: #fff;
}

.agreement_header h4 {
    font-size: var(--txt-title2);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.policy_box {

    padding: 30px;
    border: 1px solid var(--cgray-200);
    line-height: 1.7;
}

.policy_box .main_text {
    font-size: var(--txt-body2);
    margin-bottom: 1rem;
}

.prohibit_list {
    background: var(--cgray-50);
    padding: 20px;
    border-top: 2px solid var(--main-color);
    margin: 1rem 0;
}

.prohibit_list h6 {
    font-size: var(--txt-body2);
    font-weight: 600;
    color: #d61d1d;
    margin-bottom: 8px;
}

.prohibit_list ul li {
    font-size: var(--txt-body2);
    color: var(--cgray-700);
    padding-left: 15px;
    position: relative;
}

.prohibit_list ul li::before {
    content: '-';
    position: absolute;
    left: 0;
}


/*--------컨설팅-------*/
.privacy_table{
    border-top: 2px solid var(--main-color);
}
.privacy_table th{
    background: var(--cgray-50);
}



/*----------mypage-----------------*/
.mypage_wrap{
    display: flex;
    gap: 3rem;
}
.mypage_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex: 1;
}

.mypage_list .list {
    width: 100%;
    height: 100%;
    border: 1px var(--cgray-200) solid;
    padding: 1.5rem;
    border-radius: 10px;
    /* margin-bottom: 1.5rem; */
    /*margin-right: 1.875rem;*/
    background: var(--cgray-50);
}
.mypage_list .list.bg_no {
    padding: 1rem 0;
    background: none;
    border: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
}
.mypage_list .list .tit {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--main-color);
}
.mypage_list .list ul {
    margin-top: 1rem;
}
.mypage_list .list ul li {
    border-top: 1px #ddd dotted;
    padding: 10px;
    position: relative;
}
.mypage_list .list ul li:after {
    font-family: 'Material Icons Outlined';
    content: 'chevron_right';
    font-size: 1rem;
    position: absolute;
    top: 10px;
    right: 0;
    color: #999;    
}
.mypage_list .list ul li a:hover {
    color: var(--main-color);
    font-weight: 600;
}
.mypage_list .list.info {
    /* width: calc((100% - 2rem) /2); */
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.mypage_list .list.info .button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.7rem;
}
.mypage_list .list.info .button a{
    font-size: 1rem;
    color: var(--sub-color-2);
    font-weight: 600;
    border: 1px solid var(--sub-color-2);
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.mypage_list .list.info .button a:hover{
    background: var(--sub-color-2);
    color: #fff;
}
.mypage_list .list.info .tit {
    color: #fff;
    background: var(--main-color);
    padding: 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    max-height: 60px;
}
.mypage_list .list.info ul {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px #ddd solid;
    width: 100%;
    margin: 1rem;
}
.mypage_list .list.info  ul li {
}
.mypage_list .list.info  ul li::after {
    display: none;
}
.mypage_list .list.info  ul li:first-child {
    border-top: none;
}
.mypage_list .list.info  ul li span {
    float: right;
    font-weight: 500;
    max-width: 280px;
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;
}
.mypage_list .info_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 1rem;
    width: 100%;
}
.mypage_list .user_photo {
    width: 200px;
    text-align: center;
}

.mypage_list .list .user_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.mypage_list .list .user_info .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    width: 100%;
    padding: 1.5rem;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
}
.mypage_list .list .user_info .top .txt h4{
    font-size: var(--txt-heading1);
    font-weight: 600;
    margin-bottom: 4px;
}
.mypage_list .list .user_info .top .txt p{
    font-size: 1.125rem;
}
.mypage_list .list .user_info .top .txt p span{
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sub-color-1);
    margin-right: 8px;
}
.mypage_list .list .user_info .top .img{
    width: 80px;
    height: auto;
}
.mypage_list .list .user_info .top .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mypage_list .list .user_info .login_count {
    width: 100%;
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    justify-content: space-between;
}
.mypage_list .list .user_info .login_count .no {
    font-size: var(--txt-heading1);
    font-weight: 600;
    color: var(--main-color);
}
.mypage_list .list .user_info .login_count .info_tit {
    font-size: var(--txt-body2);
    font-weight: 500;
    color: var(--cgray-600);
}

.mypage_list .list .user_info .info {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 4rem;
}
.mypage_list .list .user_info .info a{
    padding: 0 1rem;
}
.mypage_list .list .user_info .info a + a{
    border-left: 1px solid var(--cgray-300);
}
.mypage_list .list .user_info .info .no {
    font-size: var(--txt-title1);
    font-weight: 600;
    color: var(--main-color);
}
.mypage_list .list .user_info .info .info_tit {
    font-size: var(--txt-body2);
    font-weight: 500;
    width: 100%;
    background: var(--cgray-200);
    border-radius: var(--radius-all-md);
    padding: 0.5rem;
    margin-top: 1rem;
}
.sub_tit .myspan{
    font-size: 1.375rem;
    color: #333;
    font-weight: 500;
    margin-left: 0;
}

.mypage_menu{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    border: 1px solid var(--cgray-200);
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--cgray-50);
    flex: 1.5;
}
.mypage_menu .sub_tit{
    margin: 0 auto;
}
.mypage_menu .box ul {
   margin-top: 20px;
    /* border: 1px solid var(--cgray-200); */
    border-radius: 8px;
    background: #fff;
}
.mypage_menu .box ul li {
    width: 100%;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    cursor: pointer;
    font-size: var(--txt-body1);
}
.mypage_menu .box ul li + li{
    border-top: 1px dashed var(--cgray-200);
}
.mypage_menu .box ul li span{
    color: var(--cgray-500);
}

/*----수정된 마이페이지--------*/
/* 탭 그룹 컨테이너 */
.mode_tab_group {
    display: flex;
    justify-content: center;
    margin: 0 auto var(--pad-tb-lg); 
    border-bottom: 2px solid var(--gray-200);
}

.tab_btn {
    flex: 1; 
    padding: var(--pad-tb-sm) 0;
    font-family: var(--main-font);
    font-size: var(--txt-heading2);
    font-weight: 600;
    color: var(--gray-500);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.tab_btn:hover {
    color: var(--gray-800);
}

.tab_btn.active {
    color: var(--main-color);
}

.tab_btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    border-radius: var(--round_max);
}

.mypage_container {
    max-width: var(--web-width);
    margin: var(--pad-tb-xl) auto;
    padding: 0 var(--pad-tb-sm);
    font-family: var(--main-font);
}

/* 상단 영역 */
.mypage_top_section {
    background: var(--cgray-50);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--pad-tb-lg);
    flex-wrap: wrap;
    gap: 1rem;
}

.user_profile h3 { font-size: var(--txt-title3); color: var(--gray-900); }
.user_profile h3 strong { color: var(--main-color); }
.profile_links { margin-top: 10px; font-size: var(--txt-body2); }
.profile_links a { color: var(--sub-color-2);}
.profile_links .split { margin: 0 10px; color: var(--gray-400); }
.profile_links .txt_gray { color: var(--gray-500); }

.user_stats { display: flex; gap: 40px; }
.stat_item { text-align: right; }
.stat_item .label { font-size: 15px; color: var(--gray-500); margin-bottom: 2px; }
.stat_item .value { font-size: var(--txt-heading1); font-weight: 700; color: var(--gray-900); }
.stat_item .star { color: #FFD700; }
.stat_item .total { font-size: var(--txt-body2); color: var(--gray-500); font-weight: 500;}

/* 하단 영역 - 공통 박스 스타일 */
.manage_card{
    /* padding: 1rem;
    border: 1px solid var(--cgray-200); */
}

.box_tit {
    margin-bottom: 1rem;
}

.box_tit h6 { font-size: var(--txt-heading2); font-weight: 700; color: var(--gray-900); }

/* 멘토 신청현황 테이블 */

.mypage_table table { width: 100%; border-collapse: collapse; }
.mypage_table table th {
    background: var(--cgray-50);
    padding: 10px;
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--txt-body2);
    color: var(--gray-800);
}
.mypage_table table td { padding: 15px; text-align: center; border-bottom: 1px solid var(--gray-200); font-size: var(--txt-body2); border-right: 1px solid var(--cgray-200);}
.status_tag.main_clr { color: var(--main-color); font-weight: 700; }
.btn_view_s { padding: 5px 15px; font-size: var(--txt-caption); border: 1px solid var(--gray-300); background: #fff; cursor: pointer; border-radius: 4px; }

/* 3개 관리 박스 그리드 */
.management_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pad-tb-md);
}

.manage_card { display: flex; flex-direction: column; }
.link_list { flex: 1; }
.link_list a {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid var(--cgray-200);
    color: var(--gray-800);
    font-size: var(--txt-body1);
    transition: 0.2s;
    position: relative;
}
.link_list a::after {
    position: absolute;
    right: 15px; 
    top: 50%;
    transform: translateY(-50%); 
    font-family: 'Material Symbols Outlined';
    content: '\e315'; 
    font-size: 18px;
    color: inherit; 
}
.link_list a small { font-size: var(--txt-label); color: var(--gray-500); }
.link_list a:hover { background: var(--main-color); color: #fff; }
.link_list a:hover small { color: rgba(255,255,255,0.7); }

.mb_30 { margin-bottom: 30px; }













.my_flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.my_flex .form-control{
    max-width: 180px;
}

button.subpage_btn{
    font-size: var(--txt-body2);
    background: var(--main-color);
    padding: 0.5rem 1.5rem;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
}
button.subpage_btn:hover{
    box-shadow: 0 0 0 1px var(--main-color) inset;
    background: #fff;
    color: var(--main-color);
}
button.subpage_btn.grey{
    background: var(--cgray-800);
    color: #fff;
}
button.subpage_btn.grey:hover{
    box-shadow: 0 0 0 1px var(--cgray-800) inset;
    background: #fff;
    color: var(--cgray-800);
}
span.st-pend{
    color: var(--main-color);
    font-weight: 600;
}
span.st-done{
    color: var(--cgray-500);
    font-weight: 600;
}



/*----------------------------------------1800--------------------------------*/

@media screen and (max-width:1800px) {



}
/*----------------------------------------1600--------------------------------*/

@media screen and (max-width:1600px) {
  
}


/*----------------------------------------1500--------------------------------*/

@media screen and (max-width:1500px) {
    .search_wrap .left_area{
        padding-left: 2rem;
    }
    .search_wrap .right_area{
        padding-right: 2rem;
    }
    .main_contents .search_box::after{
        right: 0;
    }
    .banner_wrap .left_area{
        padding-left: 2rem;
    }
}

/*----------------------------------------1400--------------------------------*/

@media screen and (max-width:1400px) {
    /* 메인 */
    .sub_container .wrapper .max, .no_visual .sub_container .wrapper .max, .no_visual .sub_container .wrapper .max {
        padding: 30px 20px;
        min-height: auto;
    }
    .path_inside{
        padding: 0 1rem;
    }
    .path_container{
    }
    
    .footer_wrap { padding: 20px 0; }
	.footer_wrap .footer {width: 90%;flex-wrap: wrap; gap: 8px;}
	.footer_wrap .footer .logo img { width: 80px;}
	.footer_wrap .footer .info {width: 100%; margin: 10px 0;}
}   



