@charset "utf-8";

/* ### 기본 스타일 커스터마이징 시작 ### */

#container{margin-bottom:30px;}
/* 게시판 목록 */
#bo_list_title{font-size:1.2em;font-weight:bold;height:50px;padding:10px 15px;line-height:30px;}
#bo_list {margin-bottom:20px;}
#bo_list ul{display:grid;grid-template-columns:repeat(auto-fill, minmax(400px, 1fr));column-gap:10px; row-gap:10px;}
#bo_list li{display:grid;grid-template-columns:80px 1fr;align-items:center;padding:10px;border-radius:5px;column-gap:10px;}
#bo_list li img{width:100%;border-radius:5px;}
#bo_list .bo_cnt{display:grid;row-gap:7px;}
#bo_list .bo_subject{font-size:1rem;word-spacing:-0.5px;letter-spacing:-.5px;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;}
#bo_list .bo_content{text-align:justify;word-spacing:-0.5px;letter-spacing:-.5px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;font-size:.83rem;color:#666;}
#bo_list .bo_cate_ico{width:45px;text-align:center;background:#e2eaf6;line-height:20px;border-radius:5px;font-weight:bold;font-size:11px;color:#3ca1ff !important; text-decoration:none;}
#bo_list .bo_info{color:#999;}
#bo_list .bo_info span{}
#bo_list li .after::after {margin:0 8px;display:inline-block;content:"";background:#656464;height:10px;width:1px;}
@media(max-width:767px){
#bo_list ul{grid-template-columns:repeat(1, 1fr);row-gap:10px;}
}
