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

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

/* 타이틀 컨테이너 */
.main_bgb3 .title_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

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

.main_bgb3 .main_cont_title h2 {
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    width: auto;
}

/* 전체보기 */

.main_bgb3 .more_container {
    margin-top:10px;
}

.main_bgb3 .more_container .more_link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    min-width: 160px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.6s ease;
    padding: 0 21px 0 18px;
}

.main_bgb3 .more_container .more_link.on {
    border-color: #0a4bc3;
}

/* 전체보기 배경 */
.main_bgb3 .more_container .more_link::after {
    content:"";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #0a4bc3;
    transition: all 0.6s ease;
}

.main_bgb3 .more_container .more_link.on::after {
    right: 0;
}

/* 전체보기 텍스트가 hover 배경보다 위로 */
.main_bgb3 .more_container .more_link span {
    position: relative;
    z-index: 1;
}

/* 전체보기 텍스트 */
.main_bgb3 .more_container .more_link .more_txt {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    display: inline-block;
    width: auto;
}

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

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

.main_bgb3 .move_link {
    height: 100%;
    display: block;
    border-radius: 20px;
    background-color: #212c3d;
    overflow: hidden;
    transition: background-color .5s ease, border-color .5s ease;
}

.main_bgb3 .move_link .post_container {
    padding: 27px 31px 25px 32px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

/* 게시판 리스트 스켈레톤 UI */
.main_bgb3 .move_link.skeleton_ani .post_container {
    justify-content: space-around;
}

.main_bgb3 .move_link.skeleton_ani .post_container > p {
    width: 100%;
}

/* 게시판 라벨 스티커 */
.main_bgb3 .post_container .post_label {
    width: auto;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #516174;
    border-radius: 12px;
    padding: 5px 11px;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
}

.main_bgb3 .move_link.on .post_container .post_label {
    background: #0a4bc3;   
    transition: all 0.5s ease-in-out;
}

/* 게시판 타이틀 */
.main_bgb3 .post_container .post_subject {
    width: 100%;
    min-height: 60px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 25px;
    transition: all 0.5s ease-in-out;
}

.main_bgb3 .move_link.on .post_container .post_subject {
    color: #0c0c0c;
    transition: all 0.5s ease-in-out;
}

/* 게시판 날짜 */
.main_bgb3 .post_container .post_date {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #8c939f;
    margin-top: auto;
    transition: all 0.5s ease-in-out;
}

.main_bgb3 .move_link.on .post_container .post_date {
    color: #a8a8a8;
    transition: all 0.5s ease-in-out;
}

/* 게시판 썸네일 */
.main_bgb3 .thumb_container {
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

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

.main_bgb3 .move_link.on {background-color: #ffffff;}
.main_bgb3 .move_link.on .thumb{transform: scale(1.1);}


/* 스와이퍼 */
.main_bgb3 .swiper {
    overflow: hidden;
}

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

.main_bgb3 .swiper-slide {
    height: auto;
}

/* 스와이퍼 화살표 버튼 */
.main_bgb3 .swiper-button {
    width: 72px;
    height: 72px;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 37, 54, 0.8);
    border: 1px solid rgba(68, 79, 94, 0.8);
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s;
}

.main_bgb3 .swiper-button span {
    color: #fff;
    font-family: "SUIT", sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.main_bgb3 .swiper-button.swiper-button-next span {
    transform: translateX(2px);
}

.main_bgb3 .swiper-button.swiper-button-prev span {
    transform: translateX(-2px);
}

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

.main_bgb3 .swiper-button img{
    width: 100%;
    border-radius: 50%;
}

.main_bgb3 .swiper-button-next{
    right: 0;
    margin: 0;
    transform: translate(50%, -50%);
}

.main_bgb3 .swiper-button-prev{
    left: 0;
    transform: translate(-50%, -50%);
}

/* 스와이프 마우스 hover 시 노출 */
.main_bgb3 .swiper-button.swiper-button-disabled {opacity: 0;}
.main_bgb3 .swiper.on ~ .swiper-button {opacity: 1;}
.main_bgb3 .swiper-button.on {
    background-color: #0a4bc3;
    border-color: #0a4bc3;
    opacity: 1;
}

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

    /* 타이틀 */
    .main_bgb3 .main_cont_title h2 {
        font-size: 28px;
        font-weight: 500;
    }

    /* 전체보기 */
    .main_bgb3 .more_container {
        margin-top: 35px;
        text-align: center;
    }

    .main_bgb3 .more_container .more_link {
        display: inline-flex;
        min-width: 167px;
        height: 49px;
        padding: 0 29px 0 27px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* 전체보기 텍스트 */
    .main_bgb3 .more_container .more_link .more_txt {
        font-size: 15px;
        font-weight: 500;
    }

    /* 게시판 리스트 */
    .main_bgb3 .move_link {
        border-radius: 13px;
    }

    .main_bgb3 .move_link .post_container {
        padding: 20px 18px;
        min-height: 100px;
    }

    /* 게시판 로드된 게시글과 스켈레톤 UI와 height값 동일하게 맞추기 */
    .main_bgb3 .move_link.skeleton_ani .post_container {
        padding: 20px 18px;
        min-height: 100px;
    }

    /* 게시판 라벨 스티커 */
    .main_bgb3 .post_container .post_label {
        font-size: 11px;
        padding: 3px 7px;
        margin-bottom: 13px;
    }

    /* 게시판 타이틀 */
    .main_bgb3 .post_container .post_subject{
        font-size: 13px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 17px;
        min-height:unset;
    }

    /* 게시판 날짜 */
    .main_bgb3 .post_container .post_date {
        font-size: 12px;
    }

    /* 게시판 썸네일 */
    .main_bgb3 .thumb_container{
        border-radius: 13px;
    }

    /* 스와이퍼 */
    .main_bgb3 .swiper .swiper-wrapper {
        flex-wrap: wrap;
        gap: 18px 10px;
    }

    .main_bgb3 .swiper .swiper-wrapper > div {
        width: calc(50% - 5px);
    }

    /* 스와이퍼 화살표 버튼 */
    .main_bgb3 .swiper-button{
        display: none;
    }
}