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

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

.main_gb2 {position: relative;}
.main_gb2 .main_gb2_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* height: 58.8%; */
    background: #395b83;
}

/* 타이틀 컨테이너 */
.main_gb2 .title_container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

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

.main_gb2 .main_cont_title h2 {
    font-size: 64px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    display: inline-block;
    width: auto;
}

/* 전체보기 텍스트 */
.main_gb2 .more_container {
    margin-bottom: 0px;
}

.main_gb2 .more_container .more_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.main_gb2 .more_container .more_link .more_txt {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    display: inline-block;
    width: auto;
}

.main_gb2 .more_container .more_link svg {
    width: 17px;
    height: 17px;
    stroke:#fff;
}

/* 게시판 리스트 */
.main_gb2 .board_list {
    position: relative;
    margin-bottom: 32px;
}

.main_gb2 .move_link {
    height: 100%;
    display: block;
    overflow: hidden;
}

.main_gb2 .move_link .post_container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 0 40px;
}

/* 게시판 로드된 게시글과 스켈레톤 UI와 height값 동일하게 맞추기 */
.main_gb2 .move_link.skeleton_ani .post_container {
    padding: 32px 0 40px;
}

.main_gb2 .move_link.skeleton_ani .post_container > p {
    width: 100%;
    margin-bottom: 20px;
}

/* 게시판 타이틀 */
.main_gb2 .post_container .post_subject {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #0c0c0c;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}

/* 게시판 내용 */
.main_gb2 .post_container .post_content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #5d5d5d;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 33px;
}

.main_gb2 .post_content img {display: none;}
.main_gb2 .post_content *:nth-child(n+3) {display: none;}

/* 게시판 날짜 */
.main_gb2 .move_link .post_date {
    margin-top: auto;
}

.main_gb2 .move_link .post_date span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #999999;
}

/* 게시판 썸네일 */
.main_gb2 .thumb_container {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.main_gb2 .thumb_container .thumb {
    transition: all 0.5s ease-in-out;
}

.main_gb2 .swiper-slide.on .move_link .thumb {transform: scale(1.1);}

/* 게시판 분류스티커 */
.main_gb2 .category_container {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.main_gb2 .category_container span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.main_gb2 .category_container.ca_name_bg1 {background: #ffa800;}
.main_gb2 .category_container.ca_name_bg2 {background: #091479;}

/* 스와이퍼 */
.main_gb2 .swiper {
    overflow: visible;
}

.main_gb2 .swiper-wrapper {
    align-items: stretch;
}

.main_gb2 .swiper-slide {
    height: auto;
    position: relative;
    text-decoration: none;
    display: block;
}

/* 스와이퍼 화살표 버튼 */
.main_gb2 .swiper_btn_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 11px;
}

.main_gb2 .swiper-button {
    position: static;
    margin: 0;
    width: 32px;
}

.main_gb2 .swiper-button::after {display: none;}

/* 스와이퍼 페이지네이션 */
.main_gb2 .swiper-pagination-progressbar.swiper-pagination-horizontal {
    position: static;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
}

.main_gb2 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #999;
}

@media all and (max-width: 991px) {
    /* 타이틀 컨테이너 */
    .main_gb2 .title_container {
        align-items: flex-end;
        margin-bottom: 45px;
    }

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

    /* 전체보기 텍스트 */
    .main_gb2 .more_container .more_link img {
        width: 35px;
    }

    /* 게시판 리스트 */
    .main_gb2 .board_list {
        margin-bottom: 8px;
    }

    .main_gb2 .move_link .post_container {
        padding: 23px 0;
    }

    /* 게시판 로드된 게시글과 스켈레톤 UI와 height값 동일하게 맞추기 */
    .main_gb2 .move_link.skeleton_ani .post_container {
        padding: 23px 0;
    }

    .main_gb2 .move_link.skeleton_ani .post_container > p {
        width: 100%;
        margin-bottom: 10px;
    }

    /* 게시판 타이틀 */
    .main_gb2 .post_container .post_subject {
        font-size: 19px;
        margin-bottom: 10px;
    }

    /* 게시판 내용 */
    .main_gb2 .post_container .post_content {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* 게시판 날짜 */
    .main_gb2 .move_link .post_date span {
        font-size: 14px;
    }

    /* 게시판 분류스티커 */
    .main_gb2 .category_container {
        width: 44px;
        height: 44px;
    }

    .main_gb2 .category_container span {
        font-size: 14px;
    }

    /* 스와이퍼 페이지네이션 */
    .main_gb2 .swiper-pagination-progressbar.swiper-pagination-horizontal {
        height: 2px;
    }
}