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

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

.main_lb6 > .container_fix {
    padding: 0;
}
.main_lb6 .widget-cont {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* 타이틀 컨테이너 */
.main_lb6 .title_container {
    width: 100%;
    min-width: 420px;
    max-width: 420px;
	/* transform: translateY(-16px); */
}

/* 카테고리 */
.main_lb6 .main_cont_category {
    margin-bottom: 9px;
}

.main_lb6 .main_cont_category h3 {
    font-size: 25px;
    font-weight: 700;
    color: #7f69bc;
    display: inline-block;
    width: auto;
}

/* 타이틀 */
.main_lb6 .main_cont_title {
    margin-bottom: 64px;
}

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

/* 게시판 탭 */
.main_lb6 .title_container ul li {
    margin-bottom: 36px;
}

.main_lb6 .title_container ul li:last-child {margin-bottom: 0;}

.main_lb6 .title_container ul li span {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #777777;
    display: inline-block;
    width: auto;
    cursor: pointer;
}

.main_lb6 .title_container ul li.active span {
    color: #7f69bc;
    font-weight: 700;
}

/* 게시판 스켈레톤 UI */
.main_lb6 .list-box .move_link.skeleton_ani {
    width: 100%;
    justify-content: space-between;
}

.main_lb6 .list-box .move_link.skeleton_ani > div {
    width: 100%;
    margin-bottom: 20px;
}

/* 게시판 컨테이너 */
.main_lb6 .board_list {
    width: calc(100% - 380px);
    margin-top: 20px;
}

.main_lb6 .board_list ul,
.main_lb6 .board_list ul li {
    height: 100%;
}

/* 게시판 게시글 */
.main_lb6 .board-container {
    height: 100%;
}

.main_lb6 .board-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.main_lb6 .list-box {
    width: 100%;
}

.main_lb6 .list-box:nth-child(2) {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 23px 0 34px;
    margin: 35px 0 25px;
}

.main_lb6 .list-box > a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 85px;
    width: 100%;
    height: 100%;
    padding: 0 18px 0 40px;
}

/* 게시판 날짜 */
.main_lb6 .list-box .list_date {
	display: flex;
    flex-direction: column;
    align-items: center;
	margin-bottom: 0;
}

.main_lb6 .list-box .list_date p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    color: #d0d0d0;
}

.main_lb6 .list-box .list_date p:first-child {
    font-size: 52px;
    font-weight: bold;
}

/* 게시판 카테고리 */

.main_lb6 .list-box .txt_container {
	    transform: translateY(7px);	
}

.main_lb6 .list-box .list_category {
    width: 100%;
    margin-bottom: 18px;
}

.main_lb6 .list-box .list_category h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    color: #7f69bc;
}

/* 게시판 타이틀 */
.main_lb6 .list-box .list_title {
    width: 100%;
}

.main_lb6 .list-box .list_title h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #27262e;
    display: -webkit-box;
    -webkit-line-clamp: 1;  /* 표시할 줄 수 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 게시판 아이콘 */
.main_lb6 .list-box .list_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: auto;
	margin-top: 8px;
    transition: all 0.5s ease;
}

.main_lb6 .list-box.on .list_icon {background: var(--main-point-color-hover);}
.main_lb6 .list-box.on .list_icon img {content: url(img/icon_arrow_on.png);}

/* 전체보기 */
.main_lb6 .more_container {
    margin-top: 27px;
}

.main_lb6 .more_container > a {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7f69bc;
    margin-left: auto;
    transition: .2s;
    border-radius: 2px;
}

.main_lb6 .more_container > a:hover {
    background: #a899c8;
}

@media (max-width: 991px) {
    .main_lb6 > .container_fix {
        padding: 0 15px;
    }

    .main_lb6 .widget-cont {
        display: block;
    }

    /* 타이틀 컨테이너 */
    .main_lb6 .title_container {
        min-width: 100%;
        max-width: 100%;
        transform: translateY(0);
    }

    /* 카테고리 */
    .main_lb6 .main_cont_category {
        margin-bottom: 6px;
        text-align: center;
    }

    .main_lb6 .main_cont_category h3 {
        font-size: 15px;
    }

    /* 타이틀 */
    .main_lb6 .main_cont_title {
        margin-bottom: 29px;
        text-align: center;
    }

    .main_lb6 .main_cont_title h2 {
        font-size: 35px;
    }

    /* 게시판 탭 */
    .main_lb6 .title_container ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 38px;
        margin-bottom: 52px;
    }

    .main_lb6 .title_container ul li {
        margin-bottom: 0;
    }

    .main_lb6 .title_container ul li span {
        font-size: 17px;
    }

    /* 게시판 컨테이너 */
    .main_lb6 .board_list {
        width: 100%;
    }

    /* 게시판 게시글 */

    .main_lb6 .board-wrapper {
        display: block;
    }

    .main_lb6 .list-box:nth-child(2) {
        padding: 23px 0;
        margin: 24px 0;
    }

    .main_lb6 .list-box > a {
        gap: 22px;
        padding: 0;
    }

    /* 게시판 날짜 */

    .main_lb6 .list-box .list_date {
        width: 52px;
        margin-bottom: 0;
    }

    .main_lb6 .list-box .list_date p {
        font-size: 13px;
    }

    .main_lb6 .list-box .list_date p:first-child {
        font-size: 31px;
    }

    /* 게시판 카테고리 */

    .main_lb6 .list-box .txt_container {
        transform: translateY(2px);
        flex:1;
    }

    .main_lb6 .list-box .list_category {
        width: 100%;
        margin-bottom: 12px;
    }

    .main_lb6 .list-box .list_category h4 {
        font-size: 15px;
    }

    /* 게시판 타이틀 */
    .main_lb6 .list-box .list_title h2 {
        font-size: 19px;
    }

    /* 전체보기 */
    .main_lb6 .more_container {
        margin-top: 41px;
    }

    .main_lb6 .more_container > a {
        width: 44px;
        height: 44px;
    }

    .main_lb6 .more_container > a img {
        width: 16px;
    }
}