/* 검사 */

body {background:#f8fafc;}
.survey_wrap{max-width:1100px;margin:60px auto;padding:20px}
.survey_wrap .hero{text-align:center;margin-bottom:50px}
.survey_wrap .hero h1{font-size:34px;font-weight:800}
.survey_wrap .hero p{color:#666;margin-top:10px}
.survey_wrap .top_btn_area{text-align:right;margin-bottom:20px}
.survey_wrap .btn_result_list{padding:10px 16px;border-radius:20px;background:#ed6d0e;color:#fff;font-size:14px}
.survey_wrap .survey_grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.survey_wrap .survey_card{position:relative;background:#fff;border-radius:20px;padding:20px;box-shadow:0 10px 30px #0000000f;transition:.2s}
.survey_wrap .survey_card:hover{transform:translateY(-6px)}
.survey_wrap .survey_card > img{width:100%;border-radius:12px;margin-bottom:12px}
.survey_wrap .highlight{border:2px solid #ed6d0e}
.survey_wrap .badge{position:absolute;top:20px;left:20px;background:#6366f1;color:#fff;font-size:12px;padding:4px 10px;border-radius:12px 0}
.survey_wrap .title{font-size:18px;font-weight:700;margin-bottom:6px}
.survey_wrap .meta{display:flex;font-size:12px;color:#888;margin-bottom:10px}
.survey_wrap .meta span{margin-right:10px}
.survey_wrap .desc{font-size:14px;color:#666;margin-bottom:14px}
.survey_wrap .btn{width:100%;height:auto;display:block;text-align:center;padding:4px 12px;border-radius:12px;background: linear-gradient(135deg, #ed6d0e, #f37e26);color:#fff;font-weight:600;font-size:14px}
.meta_item{display:flex;align-items:center;gap:6px;white-space:nowrap;font-size:14px;color:#666}
.meta_item img{width:18px;height:18px;flex-shrink:0}

.section{background:#fff;padding:25px;border-radius:12px;margin-bottom:20px}
.section h2{margin-bottom:20px;color:#6b7280}
.question{margin-bottom:25px}
.question p{font-size:20px;font-weight:600;margin-bottom:15px}
.question label{display:flex;padding:12px;border-radius:8px;cursor:pointer;transition:.2s;font-size:16px}
.question label:hover{background:#f9fafb}
.question input{margin-right:10px}
.question input:checked + span{font-weight:700}
.submit-btn{width:100%;padding:16px;background:#8b5cf6;color:#fff;border:none;border-radius:30px;font-size:16px;cursor:pointer}


.survey_grid .progress_badge{position:absolute;top:20px;right:20px;padding:6px 12px;font-size:12px;font-weight:700;background:#ff7a00;color:#fff;border-radius:0 12px;animation:pulse 1.5s infinite}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,122,0,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(255,122,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); }
}

.frm_radio_box{margin-bottom:10px}
.frm_radio_inp{position:absolute;opacity:0}
.frm_radio_label{display:flex;align-items:center;gap:10px;cursor:pointer}
.radio_circle{width:20px;height:20px;border:2px solid #bbb;border-radius:50%;position:relative;transition:.2s;display:inline-block}
.frm_radio_inp:checked + .frm_radio_label .radio_circle{border-color:#22c55e}
.frm_radio_inp:checked + .frm_radio_label .radio_circle::after{content:"";width:10px;height:10px;background:#22c55e;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
#survey_wrap .frm_chk_box{position:relative}
#survey_wrap .frm_chk_box .frm_chk_label{display:inline-flex;align-items:center;flex-wrap:nowrap;column-gap:8px;cursor:pointer}
#survey_wrap .frm_chk_box .frm_chk_label .label_chk_box{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;background-color:var(--color-gray13);border-radius:4px;box-sizing:border-box;transition:background-color .25s}
#survey_wrap .frm_chk_box .frm_chk_label .label_chk_box .icon_chk_arrow{display:inline-block;width:100%;height:100%;pointer-events:none}
#survey_wrap .frm_chk_box .frm_chk_label .label_chk_box .icon_chk_arrow svg{width:100%;height:100%;pointer-events:none}
#survey_wrap .frm_chk_box .frm_chk_label .label_chk_box .icon_chk_arrow svg path{fill:var(--color-white);transition:fill .25s;pointer-events:none}
#survey_wrap .frm_chk_box .frm_chk_label .label_name{display:inline-block;font-size:var(--fs-16);font-weight:400;line-height:var(--lh-24);color:var(--color-gray1);transition:color .25s}
#survey_wrap .frm_chk_box .frm_chk_inp:checked + .frm_chk_label .label_chk_box{background-color:var(--color-main2)}
#survey_wrap .frm_chk_box .frm_chk_inp:checked + .frm_chk_label .label_name{font-weight:500;color:var(--color-main2)}
/* .survey{max-width:720px;margin:60px auto}
.title{text-align:center;font-size:28px;font-weight:700;margin-bottom:50px}
.section{background:#fff;padding:30px;border-radius:16px;margin-bottom:24px;box-shadow:0 10px 30px #0000000d}
.q-title{font-size:18px;font-weight:600;margin-bottom:20px}
.radio_group{display:flex;flex-direction:column;gap:12px}
.radio_card{position:relative;display:flex;align-items:center;gap:12px;padding:16px;border:1px solid #e5e7eb;border-radius:12px;cursor:pointer;transition:all .2s ease;background:#fff}
.radio_card:hover{border-color:#f8c9ae;background:#f9fafb}
.radio_card input{position:absolute;opacity:0}
.card_ui{width:20px;height:20px;border:2px solid #d1d5db;border-radius:50%;position:relative}
.radio_card input:checked + .card_ui{border-color:#6366f1}
.radio_card input:checked + .card_ui::after{content:'';width:10px;height:10px;background:#6366f1;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
.card_text{font-size:16px;color:#374151}
.radio_card input:checked ~ .card_text{font-weight:600;color:#111827}
.radio_card:has(input:checked){border-color:#6366f1;background:#eef2ff}
.submit-btn{width:100%;padding:18px;border-radius:30px;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;font-size:16px;border:none;cursor:pointer;margin-top:30px} */


.survey_component .survey-container{max-width:600px;margin:0 auto}
.survey_component .question-slide{display:none}
.survey_component .question-slide.active{display:block}
.survey_component .question-slide h2{font-size:18px;margin-bottom:10px;color:#666}
.survey_component .question-text{font-size:20px;font-weight:700;margin-bottom:20px}
.survey_component .radio_group{display:flex;flex-direction:column;gap:10px}
.survey_component .radio_card{display:block;border:1px solid #ddd;border-radius:10px;padding:15px;cursor:pointer;transition:all .2s}
.survey_component .radio_card input{display:none}
.survey_component .radio_card:hover{background:#f5f5f5}
.survey_component .radio_card input:checked + .card_text{font-weight:700}
.survey_component .radio_card input:checked ~ .card_text{color:#fff}
.survey_component .radio_card input:checked ~ .card_text::before{display:none}
.survey_component .radio_card:has(input:checked){background:#ed6d0e;color:#fff;border-color:#ed6d0e}
.survey_component .nav{max-width:600px;margin:0 auto;margin-top:30px;display:flex;justify-content:center;align-items:center;gap:10px}
.survey_component .nav button{width:100%;padding:12px 20px;border:none;border-radius:8px;background:#ddd;cursor:pointer}
#nextBtn{background:#007bff;color:#fff}
#submitBtn{background:#ed6d0e;color:#fff}button:disabled{opacity:.4;cursor:not-allowed}
.survey_component .survey_progress{max-width:600px;margin:0 auto;margin-bottom:20px}
.survey_component .survey_progress .progress_text{display:flex;justify-content:space-between;font-size:14px;margin-bottom:6px;color:#666}
.survey_component .survey_progress .progress_bar{width:100%;height:8px;background:#eee;border-radius:999px;overflow:hidden}
.survey_component .survey_progress .progress_fill{height:100%;width:0;background:#ed6d0e;transition:width .3s ease}


.survey_target_wrap .target_page{max-width:720px;margin:0 auto;padding:40px 20px}
.survey_target_wrap .target_header h2{font-size:26px;font-weight:700;margin-bottom:8px}
.survey_target_wrap .target_header p{font-size:var(--fs-24);font-weight:400;line-height:var(--lh-32);color:var(--color-black);letter-spacing:-.02em;word-break:keep-all;margin-bottom:30px}
.survey_target_wrap .target_card_list{display:flex;flex-direction:column;gap:14px}
.survey_target_wrap .target_card{display:block;background:#f5efe9;border-radius:14px;cursor:pointer;transition:all .2s ease;}
.survey_target_wrap .target_card:hover{transform:translateY(-2px)}
.survey_target_wrap .target_card input{display:none}
.survey_target_wrap .target_card input:checked + .card_content{border:2px solid #ff7a00;border-radius:12px;}
.survey_target_wrap .card_content{display:flex;justify-content:space-between;align-items:center;padding:16px}

.survey_target_wrap .target_type{font-size:13px;color:#999;margin-bottom:4px}
.survey_target_wrap .target_name{font-size:20px;font-weight:700}
.survey_target_wrap .card_right{font-size:14px;color:#ff7a00}
.survey_target_wrap .target_actions{margin-top:30px}
.survey_target_wrap .target_add{margin-top:20px;text-align:center}
.survey_target_wrap .target_add a{font-size:14px;color:#777;text-decoration:underline}
.survey_target_wrap .form_card{background:#f5efe9;border-radius:14px;padding:20px}
.survey_target_wrap .form_group{margin-bottom:18px}
.survey_target_wrap .form_group label{display:block;font-size:14px;margin-bottom:6px;color:#555}
.survey_target_wrap .form_group input,.form_group select{width:100%;height:46px;padding:0 12px;border-radius:8px;border:1px solid #ddd;font-size:14px;background:#fff}
.survey_target_wrap .form_group input:focus,.form_group select:focus{border-color:#ff7a00;outline:none}
.survey_target_wrap .target_actions{margin-top:30px}
.survey_target_wrap .btn_primary{width:100%;background:#ff7a00;color:#fff;font-size:16px;border-radius:12px;border:none;cursor:pointer}


/* .result_wrap{max-width:720px;margin:30px auto;padding:15px}
.card{background:#fff;border-radius:16px;padding:20px;margin-bottom:16px;box-shadow:0 8px 20px rgba(0,0,0,0.06)}
.title{text-align:center;font-size: var(--fs-32);font-weight: 700;line-height: var(--lh-40);color: var(--color-black);letter-spacing: -0.016em;margin-bottom:50px}
.score{text-align:center}
.point{font-size:42px;font-weight:800;color:var(--color-main1)}
.level{margin-top:10px} */

.result_full_wrap .result_full .bar{height:10px;background:#eee;border-radius:10px;margin-top:10px}
.result_full_wrap .result_full .bar span{display:block;height:100%;background:var(--color-main1)}
.result_full_wrap .result_full .product_card img{width:100%;border-radius:10px;margin-bottom:10px}
.result_full_wrap .result_full .main_item{border:2px solid var(--color-main1)}
.result_full_wrap .result_full .p_basic{font-size:13px;color:#444;margin-top:6px}
.result_full_wrap .result_full a.survey_btn{flex:1;float:none;display:flex;align-items:center;justify-content:center;width:auto;height:auto;margin:0;padding:16px 0;color:#333;background-color:var(--color-white);border:1px solid var(--color-black);border-radius:50px;margin-top:10px}
.result_full_wrap .result_full .product_list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.result_full_wrap .result_full .product_card{border:1px solid #eee;border-radius:12px;padding:12px}
.result_full_wrap .result_full .survey_tit{font-size: var(--fs-16);font-weight: 700;line-height: var(--lh-22);color: var(--color-black);margin-bottom:4px}
.result_full_wrap .result_full .survey_sub_tit{font-size: var(--fs-14);font-weight: 400;line-height: var(--lh-18);color: var(--color-gray1);margin-bottom:10px}
.result_full_wrap .result_full .survey_txt,
.result_full_wrap .result_full .survey_result p{font-size: var(--fs-14);font-weight: 400;line-height: var(--lh-24);color: var(--color-gray1);letter-spacing: -0.01em;}


.survey_result .item_inner{display: block;width: 100%;height: 100%;display: flex;flex-direction: column;gap: 16px;}
.survey_result .item_hd{position: relative;}
.survey_result .item_thumb_box{width: 100%;max-height:300px;aspect-ratio: 432 / 577;border-radius: 16px;box-sizing: border-box;overflow: hidden;}
.survey_result .item_thumb_box .item_thumb{width: 100%;max-height:300px;height: 100%;line-height: 0;position: relative;z-index: 1;}
.survey_result .item_thumb_box .item_thumb::after{content: '';display: block;width: 100%;height: 100%;background-color: rgba(0, 0, 0, .15);position: absolute;left: 0;top: 0;right: 0;bottom: 0;z-index: 2;}
.survey_result .item_thumb_box .item_thumb img{width: 100%;height: 100%;object-fit: cover;object-position: center;}
.survey_result .item_desc_box{position: absolute;left: 0;top: 0;right: 0;bottom: 0;z-index: 5;display: flex;flex-direction: column;justify-content: space-between;width: 100%;height: 100%;padding: 24px 24px 32px;border-radius: 16px;overflow: hidden;}
.survey_result .desc_badge_box{display: flex;justify-content: flex-end;}
.survey_result .desc_badge_box .desc_badge{display: inline-block;padding: 10px 24px;border: 2px solid var(--color-white);border-radius: 100px;box-sizing: border-box;overflow: hidden;}
.survey_result .desc_badge_box .badge_name{display: inline-block;font-size: var(--fs-22);font-weight: 700;line-height: var(--lh-26);color: var(--color-white);}

.survey_result .desc_txt_box{}
.survey_result .desc_txt_box .desc_txt{font-size: var(--fs-20);font-weight: 400;line-height: var(--lh-28);color: var(--color-white);letter-spacing: -0.03em;}
.survey_result .desc_txt_box .desc_txt .bold{display: block;font-weight: 700;}

.survey_result .item_bd{}
.survey_result .item_info_box{width: 100%;height: 100%;padding: 16px 24px 32px;background-color: var(--color-gray4);border-radius: 16px;overflow: hidden;box-sizing: border-box;}
.survey_result .info_line{display: flex;align-items: center;flex-wrap: nowrap;column-gap: 16px;padding: 8px 0;border-bottom: 1px solid #E1E0E0;box-sizing: border-box;position: relative;z-index: 1;}
.survey_result .info_line::after{content: '';width: 80px;height: 1px;background-color: var(--color-main3);position: absolute;left: 0;bottom: 0;z-index: 2;}
.survey_result .info_tit{flex: 0 0 80px;min-height: 48px;display: inline-flex;align-items: center;font-size: var(--fs-16);font-weight: 700;line-height: var(--lh-24);color: var(--color-main3);letter-spacing: -0.03em;}
.survey_result .info_txt{flex: 1 1 0%;min-height: 48px;display: inline-flex;align-items: center;font-size: var(--fs-16);font-weight: 400;line-height: var(--lh-24);color: var(--color-main3);letter-spacing: -0.05em;}
.survey_result .info_txt.bold{font-weight: 700;}

@media (max-width: 1680px){
    .survey_result .desc_badge_box .desc_badge{padding: 8px 16px;}
    .survey_result .desc_badge_box .badge_name{font-size: var(--fs-20);}

    .survey_result .item_desc_box{padding: 24px;}
    .survey_result .desc_txt_box .desc_txt{font-size: var(--fs-18);line-height: var(--lh-26);}

}
@media (max-width: 1440px){
    .survey_result .item_desc_box{padding: 24px 16px;}
    .survey_result .desc_badge_box .badge_name{font-size: var(--fs-16);line-height: var(--lh-20);}
    .survey_result .desc_txt_box .desc_txt{font-size: var(--fs-16);line-height: var(--lh-24);}
    .survey_result .item_info_box{padding: 16px 16px 24px;}
    .survey_result .info_txt{min-height: 40px;line-height: var(--lh-20);}
}
@media (max-width: 1280px){
}
@media (max-width: 1080px){
    .survey_result .main_sect .sect_desc_box .sect_desc{font-size: var(--fs-20);line-height: var(--lh-28);}

    .survey_result .grid_list_box .grid_list{flex-wrap: wrap;}
    .survey_result .grid_list_box .grid_item{max-width: 100%;}
    .survey_result .item_inner{flex-direction: row;}
    .survey_result .item_hd{flex: 0 0 auto;width: calc(50% - (16px/2));}
    .survey_result .item_thumb_box{aspect-ratio: 4/3;min-height: 100%;}
    .survey_result .desc_badge_box .badge_name{font-size: var(--fs-16);line-height: var(--lh-20);}

    .survey_result .item_bd{flex: 1 1 0%;}
}
@media (max-width: 768px){
    .survey_result + .grid_item{margin-top: 24px;}
    .survey_result .item_inner{display: block;}
    .survey_result .item_hd{width: 100%;}
    .survey_result .item_thumb_box{border-radius: 8px;border-bottom-left-radius: 0;border-bottom-right-radius: 0;}
    .survey_result .item_desc_box{padding: 16px;}
    .survey_result .desc_badge_box .badge_name{font-size: var(--fs-14);line-height: var(--lh-20);}

    .survey_result .item_hd + .item_bd{margin-top: 0;}
    .survey_result .item_info_box{border-radius: 8px;border-top-left-radius: 0;border-top-right-radius: 0;}
    
}
@media (max-width: 600px){
    .survey_result .desc_badge_box .desc_badge{padding: 4px 8px;}
    .survey_result .desc_txt_box .desc_txt{font-size: var(--fs-16);line-height: var(--lh-20);}
}

.result_wrap{max-width:720px;margin:30px auto;padding:20px}
.result_wrap .result_title{font-size:24px;font-weight:700;margin-bottom:20px}
.result_wrap .result_list{display:flex;flex-direction:column;gap:12px}
.result_wrap .result_item{display:flex;justify-content:space-between;align-items:center;padding:16px;border-radius:14px;background:#fff;text-decoration:none;color:inherit;transition:all .2s ease;box-shadow:0 4px 10px #0000000d}
.result_wrap .result_item:hover{transform:translateY(-2px)}
.result_wrap .result_item .left{display:flex;flex-direction:column}
.result_wrap .result_item .title{font-size:16px;font-weight:600;margin-bottom:6px}
.result_wrap .result_item .meta{font-size:13px;color:#777}
.result_wrap .result_item .right{text-align:right}
.result_wrap .result_item .score{font-size:22px;font-weight:700;color:#111}
.result_wrap .result_item .level{font-size:12px;color:#6366f1}
.result_wrap .empty{text-align:center;color:#888;padding:40px 0}
.result_wrap .result_item .top{display:flex;gap:10px;margin-bottom:6px}
.result_wrap .badge{font-size:11px;padding:3px 8px;border-radius:12px}
.result_wrap .badge.member{background:#6366f1;color:#fff}
.result_wrap .badge.guest{background:#ddd;color:#555}
.result_wrap .target{font-size:13px;color:#666}

.pagination{margin-top:30px;text-align:center}
.pagination a{display:inline-block;margin:0 4px;padding:6px 10px;border-radius:6px;background:#eee;font-size:13px;text-decoration:none;color:#333}
.pagination a.active{background:#6366f1;color:#fff}

.survey_target_wrap{padding:20px;background:#f7f7f7;min-height:100vh}
.survey_target_wrap .item_info{flex:1;display:flex;flex-direction:column}
.survey_target_wrap .item_top{display:flex;justify-content:space-between;align-items:center}
.survey_target_wrap .target_name{font-size:16px;font-weight:700;color:#222}
.survey_target_wrap .target_count{font-size:16px;color:#ff7a00;font-weight:600;white-space:nowrap}
.survey_target_wrap .target_meta{font-size:13px;color:#888;margin-top:4px}
.survey_target_wrap .target_page{max-width:480px;margin:0 auto}
.survey_target_wrap .target_header{margin-bottom:20px}
.survey_target_wrap .target_header h2{font-size:20px;font-weight:700}
.survey_target_wrap .target_header p{font-size:14px;color:#666}
.survey_target_wrap .target_list{margin-bottom:16px}
.survey_target_wrap .target_item{display:flex;align-items:center;gap:14px;padding:16px;background:#fff;border-radius:14px;margin-bottom:10px;border:1px solid #eee;cursor:pointer;transition:all .2s}
.survey_target_wrap .target_item:hover{border-color:#ff7a00;background:#fffaf5}
.survey_target_wrap .target_item.active{border:2px solid #ff7a00;background:#fff3e8}
.survey_target_wrap .target_item input{display:none}
.survey_target_wrap .item_avatar{width:56px;height:56px;border-radius:50%;overflow:hidden;background:#f1f1f1;flex-shrink:0}
.survey_target_wrap .item_avatar img{width:100%;height:100%;object-fit:cover}
.survey_target_wrap .target_name{font-size:16px;font-weight:700}
.survey_target_wrap .target_meta{font-size:13px;color:#888;margin-top:3px}
.survey_target_wrap .btn_primary{width:100%;padding:16px;background:linear-gradient(135deg,#ff7a00,#ff9a3d);color:#fff;font-size:16px;font-weight:700;border:none;border-radius:14px;margin-top:10px}
.survey_target_wrap .target_add{text-align:center;margin-top:16px}
.survey_target_wrap .target_add a{color:#ff7a00;font-size:14px}
.survey_target_wrap .layer_overlay{position:fixed;inset:0;background:#00000073;display:flex;align-items:center;justify-content:center;z-index: 99999;}
.survey_target_wrap .layer_box{background:#fff;padding:24px;border-radius:16px;width:90%;max-width:360px;text-align:center}
.survey_target_wrap .layer_btns{display:flex;gap:10px;margin-top:20px}
.survey_target_wrap .layer_btns a{flex:1;padding:12px;border-radius:10px;text-decoration:none}
.survey_target_wrap .btn_resume{background:#ff7a00;color:#fff}
.survey_target_wrap .btn_delete{background:#eee}

.survey_component .layer_overlay{position:fixed;inset:0;background:#00000073;display:flex;align-items:center;justify-content:center;z-index: 99999;}
.survey_component .layer_box{background:#fff;padding:24px;border-radius:16px;width:90%;max-width:360px;text-align:center}
.survey_component .layer_btns{display:flex;gap:10px;margin-top:20px}
.survey_component .layer_btns a{flex:1;padding:12px;border-radius:10px;text-decoration:none}
.survey_component .btn_resume{background:#ff7a00;color:#fff}
.survey_component .btn_delete{background:#eee}

.survey_card .badge_red { background:red; color:#fff; }
.survey_card .badge_blue { background:blue; color:#fff; }
.survey_card .badge_orange { background:orange; color:#fff; }

.paging{margin-top:30px;text-align:center}
.paging a,.paging strong{display:inline-block;min-width:32px;padding:8px 12px;margin:0 3px;border:1px solid #ddd;font-size:14px;text-decoration:none;color:#333;border-radius:4px}
.paging a:hover{background:#f5f5f5}
.paging strong{background:#333;color:#fff;border-color:#333}

@media (min-width: 768px) {
    .survey_target_wrap{padding:30px}
    .survey_target_wrap .target_page{max-width:600px}
    .survey_target_wrap .target_item{padding:18px}
    .survey_target_wrap .target_name{font-size:17px}
    .survey_target_wrap .target_count{font-size:14px}
}

@media (min-width: 1024px) {
    .survey_target_wrap{padding:40px}
    .survey_target_wrap .target_page{max-width:900px}
    .survey_target_wrap .target_list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
    .survey_target_wrap .target_item{margin-bottom:0}
}

@media (min-width: 1400px) {
    .survey_target_wrap .target_page{max-width:1100px}
    .survey_target_wrap .target_list{grid-template-columns:repeat(3,1fr)}
}

#surveyLayer.layer_wrap{display:none;position:fixed;inset:0;z-index:9999}
#surveyLayer .dim{position:absolute;inset:0;backdrop-filter:blur(6px);background:#00000080}
#surveyLayer .layer_box{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:620px;max-width:92%;background:#fff;border-radius:20px;padding:40px 36px 30px;box-shadow:0 30px 80px #00000040}
#surveyLayer .btn_close{position:absolute;top:16px;right:20px;font-size:40px;color:#bbb;background:none;border:none;cursor:pointer}
#surveyLayer .btn_close:hover{color:#000}
#surveyLayer .layer_header{margin-bottom:28px}
#surveyLayer .layer_header .badge{display:inline-block;font-size:12px;font-weight:700;color:#fff;background:var(--color-main1);padding:5px 12px;border-radius:999px;margin-bottom:12px}
#surveyLayer .layer_header h2{font-size:26px;font-weight:800;margin-bottom:10px}
#surveyLayer .layer_header p{font-size:15px;color:#666;line-height:1.6}
#surveyLayer .layer_body{margin-bottom:30px}
#surveyLayer .info_box{background:#f7f7f7;border-radius:12px;padding:14px 16px;font-size:14px;line-height:1.6;margin-bottom:20px}
#surveyLayer .check_wrap{margin-bottom:20px}
#surveyLayer .check_title{font-weight:700;margin-bottom:10px}
#surveyLayer .check_wrap ul{list-style:none;padding:0}
#surveyLayer .check_wrap li{display:flex;align-items:center;gap:10px;background:#fafafa;padding:10px 12px;border-radius:10px;margin-bottom:8px;font-size:14px}
#surveyLayer .check_wrap li::before {content: "\2714";color: var(--color-main1);font-weight: 700;
}

#surveyLayer .check_desc{margin-top:8px;font-size:14px}
#surveyLayer .notice{font-size:14px;color:#444;line-height:1.6;margin-bottom:10px}
#surveyLayer .sub_notice{font-size:12px;color:#999}
#surveyLayer .layer_footer{margin-top:10px}
#surveyLayer .btn_primary{display:block;width:100%;height:56px;line-height:56px;text-align:center;border-radius:12px;background:var(--color-main1);color:#fff;font-weight:700;text-decoration:none;transition:.2s}
#surveyLayer .btn_primary:hover{background:#e66a00;transform:translateY(-2px)}

/* =========================
   태블릿
========================= */
@media all and (max-width:1024px){
    #surveyLayer .layer_box{width:90%;padding:32px 24px 24px;border-radius:18px}
    #surveyLayer .layer_header h2{font-size:22px}
    #surveyLayer .layer_header p{font-size:14px}
    #surveyLayer .info_box{font-size:13px}
    #surveyLayer .check_wrap li{font-size:13px;padding:9px 10px}
    #surveyLayer .btn_primary{height:52px;line-height:52px;font-size:15px}
}

@media all and (max-width:768px){
    #surveyLayer .layer_box{width:calc(100% - 20px);max-width:none;max-height:calc(100vh - 20px);overflow-y:auto;padding:22px 16px 20px;border-radius:14px}
    #surveyLayer .btn_close{top:10px;right:14px;font-size:30px}
    #surveyLayer .layer_header{margin-bottom:20px}
    #surveyLayer .layer_header h2{font-size:18px;line-height:1.4}
    #surveyLayer .layer_header p{font-size:13px;line-height:1.5}
    #surveyLayer .layer_header .badge{font-size:11px;padding:4px 10px}
    #surveyLayer .info_box{padding:12px;font-size:13px}
    #surveyLayer .check_title{font-size:13px}
    #surveyLayer .check_wrap li{font-size:13px;padding:8px 10px;border-radius:8px}
    #surveyLayer .check_desc{font-size:13px}
    #surveyLayer .notice{font-size:13px}
    #surveyLayer .sub_notice{font-size:11px}
    #surveyLayer .btn_primary{height:48px;line-height:48px;font-size:14px;border-radius:10px}
}


@media all and (max-width:480px){
    #surveyLayer .layer_box{width:calc(100% - 12px);padding:18px 12px 16px}
    #surveyLayer .layer_header h2{font-size:17px}
    #surveyLayer .layer_header p{font-size:12px}
    #surveyLayer .info_box{font-size:12px}
    #surveyLayer .check_wrap li{font-size:12px}
    #surveyLayer .notice{font-size:12px}
    #surveyLayer .btn_primary{height:44px;line-height:44px;font-size:13px}
}


.result_full_wrap .badge_wrap{margin-bottom:10px}
.result_full_wrap .badge{display:inline-block;padding:4px 10px;font-size:12px;border-radius:20px}
.result_full_wrap .badge.mine{background:#ff7a00;color:#fff}
.result_full_wrap .badge.other{background:#ddd;color:#555}
.result_full_wrap .target_info{font-size:14px;margin-bottom:6px;color:#333}
.result_full_wrap .date{font-size:12px;color:#888}
.result_full_wrap .left_inner{text-align:center;margin-top:60px}
.result_full_wrap .sub{font-size:16px;color:#666;margin-bottom:10px}
.result_full_wrap .result_name{font-size:44px;font-weight:700;margin-bottom:10px}
.result_full_wrap .result_score{font-size:24px;color:#3aa36b;margin-bottom:20px}
.result_full_wrap .illustration{width:220px;height:220px;margin:0 auto;background:#e5e5e5;border-radius:20px}
.result_full_wrap .illustration{width:220px;height:220px;margin:0 auto;background:#e5e5e5;border-radius:20px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.result_full_wrap .illustration img{width:100%;height:100%;object-fit:contain}

.result_full_wrap .result_full{display:flex;min-height:100vh;background:linear-gradient(135deg,#f3f3f3 40%,#3aa36b 40%)}
.result_full_wrap .result_left{flex:1;display:flex;align-items:center;justify-content:center;flex-direction:column}
.result_full_wrap .left_inner{text-align:center}
.result_full_wrap .sub{font-size:18px;color:#666;margin-bottom:10px}
.result_full_wrap .result_name{font-size:48px;font-weight:700;margin-bottom:10px}
.result_full_wrap .result_score{font-size:28px;color:#3aa36b;margin-bottom:20px}
.result_full_wrap .result_right{flex:1;display:flex;align-items:center;justify-content:center;flex-direction: column;}
.result_full_wrap .analysis_card{width:100%;max-width:420px;background:#fff;border-radius:16px;padding:24px}
.result_full_wrap .analysis_card .card + .card{margin-top:10px}
.result_full_wrap .analysis_card + .analysis_card{margin-top:20px}

.result_full_wrap .analysis_item{margin-bottom:20px}
.result_full_wrap .analysis_item .title{font-size: var(--fs-18);line-height: var(--lh-24);font-weight:600;margin-bottom:6px;text-align:center;}
.result_full_wrap .bar_row{display:flex;align-items:center;gap:10px}
.result_full_wrap .bar{flex:1;height:8px;background:#eee;border-radius:10px;overflow:hidden}
.result_full_wrap .fill{height:100%;background:#4caf50}
.result_full_wrap .left,
.result_full_wrap .right{font-size:var(--fs-16);font-weight:700;text-align:center;width:60px}
.result_full_wrap small{color:#888;font-size:var(--fs-13);}
.result_full_wrap .survey_infor_box{display: flex;flex-direction: column;align-items: center;}

/* =========================
   Responsive
========================= */

/* 큰 화면 보정 */
@media (max-width: 1280px) {
    .result_full_wrap .result_full{min-height:auto;padding:40px 24px;gap:24px}
    .result_full_wrap .result_left,.result_full_wrap .result_right{padding:20px 0}
    .result_full_wrap .analysis_card{max-width:100%}
}

/* 태블릿 */
@media (max-width: 1024px) {
    .result_full_wrap .result_full{gap:20px;background:linear-gradient(180deg,#f3f3f3 0%,#f3f3f3 52%,#3aa36b 52%,#3aa36b 100%)}
    .result_full_wrap .result_name{font-size:40px;line-height:1.2}
    .result_full_wrap .result_score{font-size:24px}
    .result_full_wrap .analysis_card{padding:20px}
    .result_full_wrap .analysis_item .title{font-size:16px;line-height:1.4}
    .result_full_wrap .left,.result_full_wrap .right{width:56px;font-size:14px}
    .result_full_wrap small{font-size:12px}
}

/* 모바일 */
@media (max-width: 768px) {
    .result_full_wrap .result_full{display:block;min-height:auto;padding:0;background:linear-gradient(180deg,#f3f3f3 0%,#f3f3f3 340px,#3aa36b 340px,#3aa36b 100%)}
    .result_full_wrap .result_left{display:block;padding:28px 20px 20px}
    .result_full_wrap .survey_infor_box{align-items:flex-start;text-align:left}
    .result_full_wrap .left_inner{margin-top:28px;text-align:center}
    .result_full_wrap .sub{font-size:15px;margin-bottom:8px}
    .result_full_wrap .result_name{font-size:34px;margin-bottom:8px;word-break:keep-all}
    .result_full_wrap .result_score{font-size:22px;margin-bottom:16px}
    .result_full_wrap .illustration{width:160px;height:160px;border-radius:16px}
    .result_full_wrap .result_right{display:block;padding:20px}
    .result_full_wrap .analysis_card{max-width:100%;padding:18px;border-radius:14px}
    .result_full_wrap .analysis_card + .analysis_card{margin-top:16px}
    .result_full_wrap .analysis_item{margin-bottom:16px}
    .result_full_wrap .analysis_item:last-child{margin-bottom:0}
    .result_full_wrap .analysis_item .title{font-size:15px;margin-bottom:8px}
    .result_full_wrap .bar_row{gap:8px}
    .result_full_wrap .left,.result_full_wrap .right{width:48px;font-size:13px;line-height:1.2}
    .result_full_wrap small{font-size:11px;line-height:1.2}
    .result_full_wrap .bar{height:7px}
    .result_full_wrap .target_info{font-size:13px;line-height:1.5;word-break:keep-all}
    .result_full_wrap .date{font-size:11px}
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .result_full_wrap .result_left{padding:24px 16px 16px}
    .result_full_wrap .result_right{padding:16px}
    .result_full_wrap .result_full{background:linear-gradient(180deg,#f3f3f3 0%,#f3f3f3 300px,#3aa36b 300px,#3aa36b 100%)}
    .result_full_wrap .badge{font-size:11px;padding:4px 8px}
    .result_full_wrap .result_name{font-size:28px}
    .result_full_wrap .result_score{font-size:20px}
    .result_full_wrap .illustration{width:130px;height:130px}
    .result_full_wrap .analysis_card{padding:16px 14px}
    .result_full_wrap .analysis_item .title{font-size:14px}
    .result_full_wrap .left,.result_full_wrap .right{width:42px;font-size:12px}
    .result_full_wrap small{display:block;margin-top:2px;font-size:10px}
    .result_full_wrap .survey_tit{font-size:15px;line-height:1.4}
    .result_full_wrap .survey_sub_tit{font-size:13px;line-height:1.6}
}


.result_full_wrap .top_row{display:flex;justify-content:space-between;margin-bottom:6px}
.result_full_wrap .percent{font-weight:700}
.result_full_wrap .bar{height:6px;background:#eee;border-radius:10px;margin:6px 0}
.result_full_wrap .fill{height:100%;border-radius:10px}
.result_full_wrap .labels{display:flex;justify-content:space-between;font-size:12px;color:#777}
.result_full_wrap .desc{margin-top:6px;font-size:13px;color:#555;line-height:1.4}
.result_full_wrap .survey_result{max-width:none}
.result_full_wrap .survey_result .swiper_recent_wrap{}
.result_full_wrap .survey_result .swiper_recent_wrap + .swiper_recent_wrap{margin-top:30px}

.result_full_wrap .recent_header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.result_full_wrap .recent_header h3{font-size:18px;font-weight:600}
.result_full_wrap .nav_btns{display:flex;gap:8px}
.result_full_wrap .btn_prev,.btn_next{width:40px;height:40px;background:#111;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:20px}
.result_full_wrap .product_card{font-size:14px}
.result_full_wrap .thumb{position:relative;width:100%;background:#eee;border-radius:12px;overflow:hidden}
.result_full_wrap .thumb img{width:100%;height:100%;object-fit:cover}
.result_full_wrap .like{position:absolute;top:8px;right:8px;font-size:18px}
.result_full_wrap .color_list{display:flex;gap:6px;margin-top:8px}
.result_full_wrap .color_list span{width:14px;height:14px;border-radius:4px;border:1px solid #ddd}
.result_full_wrap .meta{margin-top:6px;color:#666;font-size:13px}
.result_full_wrap .meta span{color:#4CAF50;margin-left:6px}
.result_full_wrap .name{margin-top:12px;font-weight:600}
.result_full_wrap .recommend_desc{margin-top:6px;font-weight:400;font-size:13px;color:#777}
.result_full_wrap .price{margin-top:6px;font-size:13px}
.result_full_wrap .old{text-decoration:line-through;color:#aaa;margin-right:6px}
.result_full_wrap .new{font-weight:700;margin-right:6px}
.result_full_wrap .sale{color:#2e7d32;font-weight:600}

.result_notice {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    background: #f8f9fb;
    border: 1px solid #e2e5ea;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* 태블릿 */
@media (max-width:1024px){
    .result_full_wrap .name{font-size:14px}
}

/* 모바일 */
@media (max-width:768px){
    .result_full_wrap .recent_header h3{font-size:16px}
    .result_full_wrap .btn_prev,.btn_next{width:32px;height:32px;font-size:16px}
    .result_full_wrap .meta{font-size:12px}
    .result_full_wrap .name{font-size:13px}
    .result_full_wrap .price{font-size:12px}
}

/* 초소형 */
@media (max-width:480px){
    .result_full_wrap .color_list span{width:12px;height:12px}
    .result_full_wrap .like{font-size:14px}
    .result_full_wrap .name{font-size:12px}
}


.board_wrap{width:100%;position:relative;background-color:var(--color-white);}
.board_wrap .board_wrap_inner{width:100%;max-width:1448px;margin:0 auto;padding:88px 24px 192px;box-sizing:border-box;}
.board_wrap .board_wrap_hd + .board_wrap_bd{margin-top:48px;}
.board_wrap .page_tit_box .page_tit{font-size:var(--fs-24);font-weight:400;line-height:var(--lh-32);color:var(--color-black);letter-spacing:-0.01em;word-break:keep-all;}

.survey_header_row{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;}
.survey_header_row .page_sub_txt{font-size:var(--fs-16);line-height:var(--lh-24);color:var(--color-gray1);margin-top:8px;}
.survey_header_row .btn_result_list{display:inline-block;padding:10px 18px;border-radius:999px;background:var(--color-main2);color:var(--color-white);font-size:var(--fs-14);font-weight:500;white-space:nowrap;}

#boardWrap #boardCntBox #boardList{display:flex;align-items:stretch;flex-wrap:wrap;column-gap:32px;row-gap:64px;}
#boardWrap #boardCntBox #boardList .board_item{width:calc(100% / 3 - (64px / 3));}
#boardWrap #boardCntBox #boardList .board_item .item_inner{display:flex;flex-direction:column;width:100%;height:100%;}
#boardWrap #boardCntBox #boardList .board_item .item_thumb_box{width:100%;aspect-ratio:3/4;}
#boardWrap #boardCntBox #boardList .board_item .item_thumb_box .item_thumb{display:block;width:100%;height:100%;border-radius:16px;overflow:hidden;}
#boardWrap #boardCntBox #boardList .board_item .item_thumb_box .item_thumb img{width:100%;height:100%;object-fit:cover;object-position:center;}

#boardList .board_item .item_inner{
    display:flex;
    flex-direction:row-reverse;
    gap:16px;
}

#boardList .item_thumb_box{
    flex:0 0 120px;     /* 썸네일 폭 */
    max-height:380px;
    aspect-ratio:1/1;   /* 높이 자동 맞춤 */
}

#boardWrap #boardCntBox #boardList .board_item .item_desc_box{display:flex;flex-direction:column;flex:1 1 auto;}
#boardWrap #boardCntBox #boardList .board_item .item_thumb_box + .item_desc_box{margin-top:0;}
#boardWrap #boardCntBox #boardList .board_item .item_cate_box .item_cate{display:flex;align-items:center;gap:8px;font-size:var(--fs-15);font-weight:500;line-height:var(--lh-22);color:var(--color-main2);}
.survey_badge{display:inline-block;padding:2px 8px;border-radius:999px;font-size:12px;font-weight:600;line-height:1.4;background:var(--color-main2);color:var(--color-white);}
.survey_badge.badge_red{background:#e53935;}
.survey_badge.badge_blue{background:#1e88e5;}
.survey_badge.badge_orange{background:#fb8c00;}
.survey_progress_badge{display:inline-block;padding:2px 8px;border-radius:999px;font-size:12px;font-weight:600;line-height:1.4;background:#ff7a00;color:#fff;}

#boardWrap #boardCntBox #boardList .board_item .item_cate_box + .item_subject_box{margin-top:8px;}
#boardWrap #boardCntBox #boardList .board_item .item_subject_box .subject_link{display:inline-block;}
#boardWrap #boardCntBox #boardList .board_item .item_subject_box .item_subject{font-size:var(--fs-20);font-weight:500;line-height:var(--lh-28);color:var(--color-black);}

#boardWrap #boardCntBox #boardList .board_item .item_subject_box + .item_content_box{margin-top:8px;}
#boardWrap #boardCntBox #boardList .board_item .item_content_box .item_content{font-size:var(--fs-16);font-weight:400;line-height:var(--lh-22);color:var(--color-gray1);overflow:hidden;white-space:normal;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;word-break:keep-all;}

.item_meta_box{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin-top:14px;}
.item_meta{display:inline-flex;align-items:center;gap:6px;font-size:var(--fs-14);line-height:var(--lh-20);color:var(--color-gray1);}
.item_meta img{width:16px;height:16px;flex:0 0 auto;}

.item_btn_box{margin-top:auto;padding-top:18px;}
.item_btn_box .btn_open_layer{display:block;width:100%;padding:12px 16px;border-radius:12px;background:var(--color-main2);color:#fff;font-size:var(--fs-15);font-weight:500;text-align:center;}

#boardWrap #boardCntBox #boardList .board_noitem{flex:1 0 100%;padding:96px 0;border-bottom:1px solid var(--divider-line);}
#boardWrap #boardCntBox #boardList .board_noitem .noitem_txt{font-size:var(--fs-16);line-height:var(--lh-24);color:var(--color-gray1);text-align:center;}

#boardWrap .paging{margin-top:56px;text-align:center;}
#boardWrap .paging a,#boardWrap .paging strong{display:inline-block;min-width:36px;padding:10px 12px;margin:0 4px;border:1px solid #ddd;font-size:var(--fs-14);text-decoration:none;color:#333;border-radius:6px;}
#boardWrap .paging strong{background:#333;color:#fff;border-color:#333;}



@media (max-width:1080px){
    .board_wrap .board_wrap_inner{padding:48px 16px 128px;}
    .board_wrap .page_tit_box .page_tit{font-size:var(--fs-20);line-height:var(--lh-28);}
    #boardWrap #boardCntBox #boardList{column-gap:24px;row-gap:48px;}
    #boardWrap #boardCntBox #boardList .board_item{width:calc(100% / 2 - (24px / 2));}
    #boardWrap #boardCntBox #boardList .board_item .item_subject_box .item_subject{font-size:var(--fs-18);line-height:var(--lh-24);}
}
@media (max-width:600px){

    #boardWrap #boardCntBox #boardList{
        display:flex;
        flex-direction:column;
        gap:24px;
    }

    #boardWrap #boardCntBox #boardList .board_item{
        width:100% !important;
    }

    #boardWrap #boardCntBox #boardList .board_item .item_inner{
        display:flex;
        flex-direction:row;
        align-items:stretch;
        gap:14px;
    }

    #boardWrap #boardCntBox #boardList .board_item .item_thumb_box{
        flex:0 0 96px;
        width:96px;
        max-width:96px;
        aspect-ratio:1/1;
    }

    #boardWrap #boardCntBox #boardList .board_item .item_desc_box{
        flex:1 1 auto;
        min-width:0;
    }

    #boardWrap #boardCntBox #boardList .board_item .item_thumb_box + .item_desc_box{
        margin-top:0;
    }
}