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

본 라이브러리(라이브러리 소스코드)는 (주)파이브센스의 자산입니다.
무단으로 외부로 유출 및 일시 반출을 할 경우 손해배상 책임 및 민사/형사적 책임이 있습니다.
*/

.main_gb9 {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_gb9 .widget-cont {
    width: 100%;
}

/* 타이틀 컨테이너 */
.main_gb9 .title_container {
    width: 100%;
    margin-bottom: 60px;
}

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

.main_gb9 .main_cont_title h2 {
    font-size: 64px;
    font-weight: bold;
    color: #0c0c0c;
    display: inline-block;
    width: auto;
}

/* 게시판 리스트 */
.main_gb9 .board_list {
    position: relative;
}

.main_gb9 .board_list_wrapper {
    
}

/* 게시판 상단&하단 공통 썸네일 */
.main_gb9 .thumb_container {
    overflow: hidden;
}
.main_gb9 .thumb_container .thumb {transition: all 0.5s ease-in-out;}
.main_gb9 .list_box.on .list_box_inner .thumb {transform: scale(1.1);}

/* 게시판 상단&하단 공통 컨텐츠 */
.main_gb9 .list_column .post_top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* 게시판 상단&하단 공통 제목 */
.main_gb9 .list_column .post_subject {
    line-height: 1.56;
    color: #0c0c0c;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
}

/* 게시판 상단 컨텐츠 */
.main_gb9 .list_column#listBoxGB901 {
    margin-bottom: 40px;
}

.main_gb9 .list_column#listBoxGB901 .list_box_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* 게시판 상단 썸네일 */
.main_gb9 .list_column#listBoxGB901 .thumb_container {
    width: calc((100% - 40px) / 2);
}

.main_gb9 .list_column#listBoxGB901 .thumb {
    width: 100%;
    aspect-ratio: 720 / 375;
}

/* 게시판 상단 제목 */
.main_gb9 .list_column#listBoxGB901 .post_container {
    width: calc((100% - 40px) / 2);
    padding: 0 27px;
}

.main_gb9 .list_column#listBoxGB901 .post_subject {
    font-size: 34px;
	line-height:1.35;
    font-weight: bold;
    margin-bottom: 25px;
}

.main_gb9 .list_column#listBoxGB901 .post_subject * {
    word-break: keep-all;
}

/* 게시판 상단 내용 */
.main_gb9 .list_column#listBoxGB901 .post_content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    color: #5d5d5d;
    margin-bottom: 35px;
}

.main_gb9 .list_column#listBoxGB901 .post_content * {
    word-break: keep-all;
}

.main_gb9 .list_column#listBoxGB901 .post_content img {display: none;}
.main_gb9 .list_column#listBoxGB901 .post_content *:nth-child(n+3) {display: none;}

/* 게시판 상단 날짜 */
.main_gb9 .list_column#listBoxGB901 .post_date {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #999;
}

/* 게시판 하단 컨텐츠 */
.main_gb9 .list_column#listBoxGB902 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 38px;
}

/* 게시판 하단 썸네일 */
.main_gb9 .list_column#listBoxGB902 .thumb_container {
    width: 100%;
    margin-bottom: 15px;
}

.main_gb9 .list_column#listBoxGB902 .thumb {
    width: 100%;
    aspect-ratio: 340 / 175;
}

/* 게시판 하단 제목 */
.main_gb9 .list_column#listBoxGB902 .post_subject {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 게시판 하단 내용 */
.main_gb9 .list_column#listBoxGB902 .post_content {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #5d5d5d;
}

.main_gb9 .list_column#listBoxGB902 .post_content * {
    word-break: keep-all;
}

@media all and (max-width: 991px) {
    .main_gb9 {
        height: auto;
        display: block;
    }

    /* 타이틀 컨테이너 */
    .main_gb9 .title_container {
        margin-bottom: 14px;
    }

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

    /* 게시판 상단&하단 공통 컨텐츠 */
    .main_gb9 .list_column .post_top {
        display: block;
    }

    /* 게시판 상단 컨텐츠 */
    .main_gb9 .list_column#listBoxGB901 {
        margin-bottom: 45px;
    }

    .main_gb9 .list_column#listBoxGB901 .list_box_inner {
        display: block;
    }

    /* 게시판 상단 썸네일 */
    .main_gb9 .list_column#listBoxGB901 .thumb_container {
        width: 100%;
    }

    /* 게시판 상단 제목 */
    .main_gb9 .list_column#listBoxGB901 .post_container {
        width: 100%;
        padding: 0 3px;
        margin-top: 24px;
    }

    .main_gb9 .list_column#listBoxGB901 .post_subject {
        font-size: 20px;
		line-height:1.35;
        margin-bottom: 13px;
    }

    /* 게시판 상단 내용 */
    .main_gb9 .list_column#listBoxGB901 .post_content {
        font-size: 15px;
		line-height: 1.53;
        margin-bottom: 15px;
    }

    /* 게시판 상단 날짜 */
    .main_gb9 .list_column#listBoxGB901 .post_date {
        font-size: 14px;
    }

    /* 게시판 하단 컨텐츠 */
    .main_gb9 .list_column#listBoxGB902 {
        flex-wrap: wrap;
        gap: 30px 10px;
    }

    .main_gb9 .list_column#listBoxGB902 .list_box {
        width: calc((100% - 10px) / 2);
    }

    /* 게시판 하단 썸네일 */
    .main_gb9 .list_column#listBoxGB902 .thumb_container {
        margin-bottom: 12px;
    }

    /* 게시판 하단 제목 */
    .main_gb9 .list_column#listBoxGB902 .post_subject {
        font-size: 15px;
    }
}