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

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

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

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

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

/* 게시판 탭 */
.main_btgb2 .board_title_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 49px;
}

.main_btgb2 .board_title_container ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
}

.main_btgb2 .board_title_container ul li span {
    font-size: 21px;
    font-weight: 600;
    color: #999999;
    display: inline-block;
    width: auto;
    cursor: pointer;
    padding: 0 7px 16px;
	border-bottom: 2px solid transparent;
}

.main_btgb2 .board_title_container ul li.active span {
    font-weight: 700;
    color: var(--main-point-color);
    border-bottom: 2px solid var(--main-point-color);
}

/* 전체보기 아이콘 타이틀과 수평 */
.main_btgb2 .more_container {padding-bottom: 20px;}

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

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

.main_btgb2 .move_link {
    height: 100%;
    display: block;
    border-radius: 10px;
    background-color: #f5f5f5;
    overflow: hidden;
    transition: background-color 0.5s ease-in-out;
}

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

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

/* 게시판 라벨 스티커 */
.main_btgb2 .post_container .post_label {
    width: auto;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #adadad;
    border-radius: 50px;
    padding: 5px 11px;
    margin-bottom: 15px;
    transition: .2s;
}

.main_btgb2 .move_link.on .post_container .post_label {
    background:#395b83;
}

/* 게시판 타이틀 */
.main_btgb2 .post_container .post_subject{
    width: 100%;
    min-height: 60px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--main-point-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
}

/* 게시판 날짜 */
.main_btgb2 .post_container .post_date {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #999;
    margin-top: auto;
}

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

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

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


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

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

.main_btgb2 .swiper-slide {
    height: auto;
    text-decoration: none;
    display: block;
}

/* 스와이퍼 화살표 버튼 */
.main_btgb2 .swiper-button {
    width: 64px;
    height: 64px;
    top: 50%;
    opacity: 0;
    transition: all 0.5s;
}

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

.main_btgb2 .swiper-button img{
    width: 100%;
    border-radius: 50%;
    box-shadow: 3px 0 8px rgba(61,61,61,.15);
}

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

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

/* 스와이프 마우스 hover 시 노출 */
.main_btgb2 .swiper-button.swiper-button-disabled {opacity: 0;}
.main_btgb2 .swiper.on ~ .swiper-button {opacity: 0.35;}
.main_btgb2 .swiper-button.on {opacity: 1;}

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

    /* 타이틀 */
    .main_btgb2 .main_cont_title h2 {
        font-size: 31px;
    }
    
    /* 게시판 탭 */
    .main_btgb2 .board_title_container {
        margin-bottom: 21px;
    }

    .main_btgb2 .board_title_container ul {
        gap: 18px;
        overflow-x: auto;
    }

    .main_btgb2 .board_title_container ul::-webkit-scrollbar {
        display:none;
    }

    .main_btgb2 .board_title_container ul li span {
        font-size: 17px;
		padding: 0 8px 13px;
        text-wrap:nowrap;
    }

    /* 전체보기 아이콘 타이틀과 수평 */
    .main_btgb2 .more_container {padding-bottom: 13px;}

    /* 전체보기 아이콘 hover 액션 */
    .main_btgb2 .more_container .more_link .more_icon .more_b {width: 19px;}
    .main_btgb2 .more_container .more_link .more_icon .more_w {width: 19px;}

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

    .main_btgb2 .move_link .post_container {
        padding: 24px 23px;
        min-height: 100px;
    }

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

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

    /* 게시판 타이틀 */
    .main_btgb2 .post_container .post_subject{
        font-size: 15px;
        margin-bottom: 22px;
        min-height: unset;
    }

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

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

    /* 스와이퍼 */
    .main_btgb2 .swiper .swiper-wrapper {
        flex-direction: column;
        gap: 15px 0;
    }

    .main_btgb2 .swiper .swiper-wrapper > a {
        width: 100%;
    }

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