@charset "utf-8";
/*
2024-04-04 (주)파이브센스_FIVESENSES.Corp.

본 라이브러리(라이브러리 소스코드)는 (주)파이브센스의 자산입니다.
무단으로 외부로 유출 및 일시 반출을 할 경우 손해배상 책임 및 민사/형사적 책임이 있습니다.
*/
/* 프로알라 오류 숨김처리 */
.main_sblb2 .widget_froala .fr-counter {
    display: none !important;
}
/* 타이틀 컨테이너 */
.main_sblb2 .title_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

/* 타이틀 */
.main_sblb2 .main_cont_title {
    margin-bottom: 0px;
}

.main_sblb2 .main_cont_title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-point-color);
    display: inline-block;
    width: auto;
}

/* 게시판 */
.main_sblb2 .board_list > ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 55px;
}

.main_sblb2 .board_list > ul > li {
    min-width: calc((100% - 55px) / 2);
    max-width: calc((100% - 55px) / 2);
}

/* 게시판 대제목 */
.main_sblb2 .board_title_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}

.main_sblb2 .board_title_container h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-point-color);
    display: inline-block;
    width: auto;
    line-height: 24px;
}

/* 전체보기 아이콘 hover 액션 */
.main_sblb2 .more_container .more_link .more_icon .more_b {display: none;}
.main_sblb2 .more_container .more_link.on .more_icon .more_b {display: block;}
.main_sblb2 .more_container .more_link .more_icon .more_w {display: block;}
.main_sblb2 .more_container .more_link.on .more_icon .more_w {display: none;}

/* 게시판 리스트 */
.main_sblb2 .list-box {
    position: relative;
    border-top: 1px solid #e1e1e1;
}

.main_sblb2 .list-box:last-child {
    border-bottom: 1px solid #e1e1e1;
}

.main_sblb2 .list-box.on {
    background: #fcfcfc;
}

/* 게시판 스켈레톤 UI */
.main_sblb2 .load_blink {
	width:100%;
}

.main_sblb2 .list-box .move_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    padding: 23px 10px 20.5px 61px;
}

/* 게시판 new 스티커 */
.main_sblb2 .list-box .new_label {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 10px;
}

.main_sblb2 .list-box .new_label span {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #3f50f7;
    width: 37px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background-color:#dae2ff;
}

/* 게시판 제목 */
.main_sblb2 .list-box .move_link p {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 게시판 날짜 */
.main_sblb2 .list-box .list-box-right span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #999;
}

@media (max-width: 991px) {
    /* 타이틀 컨테이너 */
    .main_sblb2 .title_container {
        justify-content: center;
        margin-bottom: 34px;
    }

    /* 타이틀 */
    .main_sblb2 .main_cont_title h2 {
        font-size: 31.5px;
    }

    /* 게시판 */
    .main_sblb2 .board_list ul {
        flex-direction: column;
        gap: 46px;
    }

    .main_sblb2 .board_list > ul > li {
        min-width: 100%;
        max-width: 100%;
    }

    /* 게시판 대제목 */
    .main_sblb2 .board_title_container {
        margin-bottom: 20px;
    }

    .main_sblb2 .board_title_container h3 {
        font-size: 21px;
    }
    
    /* 전체보기 아이콘 hover 액션 */
    .main_sblb2 .more_container .more_link .more_icon .more_b {display: none; width: 16px;}
    .main_sblb2 .more_container .more_link .more_icon .more_w {display: block; width: 16px;}

    /* 게시판 스켈레톤 UI */
    .main_sblb2 .list-box .move_link {
        padding: 22px 0 21px 0;
    }

    /* 게시판 new 스티커 */
    .main_sblb2 .list-box .new_label {
        position: relative;
        transform: translateY(0);
        top: 50%;
        left: 0;
    }

    .main_sblb2 .list-box .new_label span {
        width: 35px;
        height: 18px;
    }

    /* 게시판 타이틀 */
    .main_sblb2 .list-box .move_link p {
        font-size: 15px;
    }

    /* 게시판 날짜 */
    .main_sblb2 .list-box .list-box-right span {
        font-size: 14px;
    }
}