/* 부트캠프 */
.bootcamp_list_wrap{margin-top:40px}
.bootcamp_list{display:flex;flex-wrap:wrap;gap:20px;}
.bootcamp_list li{width:calc(25% - 15px);min-width:220px;max-width:1fr;border:1px solid #ddd;border-radius:10px;overflow:hidden;box-shadow:0 2px 5px rgba(0,0,0,0.05);display:flex;flex-direction:column;background:#fff;}
.bootcamp_list .img_box{width:100%;height:180px;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.bootcamp_list .img_box a{width:100%;height:100%;display:block;}
.bootcamp_list .img_box img{width:100%;height:100%;object-fit:cover;transition:filter 0.3s,transform 0.3s;}
.bootcamp_list .img_box img{filter:brightness(0.8);}
.bootcamp_list .img_box a:hover img{filter:brightness(1);transform:scale(1.05);}



.bootcamp_list .text_box{flex-grow:1;display:flex;flex-direction:column;justify-content:space-between;padding:20px 0}
.bootcamp_title_wrap{border-bottom:1px solid #ddd;margin-bottom:12px;padding:0 20px}
.bootcamp_list .bootcamp_category{font-size:14px;color:#777;margin-bottom:8px}
.bootcamp_list .category{font-weight:500;color:#4C6CE6}
.bootcamp_list .campus{margin-left:4px;color:#888}
.bootcamp_list .bootcamp_title{font-size:18px;line-height:140%;font-weight:bold;color:#333;margin-bottom:10px;max-height:50px;overflow:hidden}
.bootcamp_list .title_line{width:100%;height:1px;background:#eee;margin-bottom:15px}
.bootcamp_list .bootcamp_info{font-size:14px;color:#666;line-height:1.4;margin-bottom:15px;padding:0 20px;display:flex;align-items:center;gap:8px;white-space:nowrap;overflow:hidden;}
.bootcamp_list .bootcamp_info span.price{font-weight:bold;flex-shrink:0;}
.bootcamp_list .bootcamp_info span.detail{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex:1;}
.bootcamp_list .bootcamp_button{display:flex;justify-content:center;align-items:center;gap:5px;margin-top:10px}
.bootcamp_list .btn_free{background:#f5f5f5;color:#333;border:1px solid #d1d5db;display:inline-flex;align-items:center;justify-content:center;padding:8px 18px;border-radius:5px;font-size:13px;font-weight:bold;cursor:pointer;white-space:nowrap}
.bootcamp_list .btn_apply{background:#4C6CE6;color:#fff;border:none;display:inline-flex;align-items:center;justify-content:center;padding:8px 18px;border-radius:5px;font-size:13px;font-weight:bold;cursor:pointer;white-space:nowrap}

.bootcamp_list .btn_free,.bootcamp_list .btn_apply{transition:background 0.2s,color 0.2s,transform 0.2s;}
.bootcamp_list .btn_free:hover{background:#ececec;color:#222}
.bootcamp_list .btn_apply:hover{background:#4363e4;color:#fff}

/****** Mobile ******/
@media screen and (min-width:320px) and (max-width:690px){
/* 부트캠프 */
.bootcamp_list li{width:100%}

}

/****** tablet ******/
@media screen and (min-width:691px) and (max-width:1180px){
/* 부트캠프 */
.bootcamp_list li{width:calc(50% - 10px)}
}


/****** desktop*****/
@media screen and (min-width:1181px) and (max-width:1600px){
/* 부트캠프 */
.bootcamp_list li{width:calc(33.33% - 13.33px)}
}


