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

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

.main_gb4 {
    position: relative;
    background: #f2f3f4;
}
.main_gb4 .main_gb4_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    width: 100%;
    height: 70%;
    background: #eaebec;
}
.main_gb4 .main_gb4_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #f2f3f4;
    z-index: 2;
}

.main_gb4 .main_gb4_overlay .overlay_top_bg {
    width: 100%;
    height: 70%;
    background: #eaebec;
}

.main_gb4 .board_container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* 타이틀 컨테이너 */
.main_gb4 .title_container {
    width: 100%;
    min-width: 366px;
    max-width: 366px;
    position: relative;
    z-index: 3;
}

/* 타이틀 */
.main_gb4 .main_cont_title {
    margin-bottom: 25px;
}

.main_gb4 .main_cont_title h2 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    color: #0c0c0c;
    display: inline-block;
    width: auto;
}

/* 서브타이틀 */
.main_gb4 .main_cont_subtitle {
    margin-bottom: 105px;
}

.main_gb4 .main_cont_subtitle h3 {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.5;
    color: #5d5d5d;
    display: inline-block;
    width: auto;
}

/* 전체보기 텍스트 */
.main_gb4 .more_container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 45px;
}

.main_gb4 .more_container .more_link {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.main_gb4 .more_container .more_link svg {
    width: 17px;
    height: 17px;
    stroke:#5d5d5d;
}

/* 게시판 리스트 */
.main_gb4 .board_list {
    position: relative;
    width: 100%;
    min-width: 0;
    padding-top: 22px;
}

.main_gb4 .move_link {
    /* height: 100%; */
    display: block;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

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

.main_gb4 .move_link.on .post_container {
    display: none;
}

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

.main_gb4 .move_link.skeleton_ani .post_container > p {
    width: 100%;
    margin-bottom: 0;
}

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

/* 게시판 썸네일 */
.main_gb4 .thumb_container {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

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

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

/* 게시판 호버 텍스트 */
.main_gb4 .hidden_txt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 40px 35px;
}

.main_gb4 .swiper-slide.on .hidden_txt {
    display: flex;
}

/* 게시판 호버 화살표 이미지 */
.main_gb4 .hidden_txt .hidden_arrow {
    width: 100%;
    margin-bottom: auto;
}

.main_gb4 .hidden_txt .hidden_arrow img {
    margin-left: auto;
}

/* 게시판 호버 타이틀 */
.main_gb4 .hidden_txt .hidden_subject {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 32px;
}

/* 게시판 호버 내용 */
.main_gb4 .hidden_txt .hidden_date {
    margin-bottom: 17px;
}

.main_gb4 .hidden_txt .hidden_date p,
.main_gb4 .hidden_txt .hidden_location p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin-bottom: 9px;
}

.main_gb4 .hidden_txt .hidden_date span,
.main_gb4 .hidden_txt .hidden_location span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}

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

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

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

.main_gb4 .swiper-slide.on {
    transform: translateY(-40px);
    transition: all 0.3s ease;
}

/* 스와이퍼 화살표 버튼 */
.main_gb4 .swiper_btn_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main_gb4 .swiper-button {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    transition: all 0.3s ease;
}

.main_gb4 .swiper-button.swiper-button-prev.on {content: url(img/icon_swiper_prev_on.png);}
.main_gb4 .swiper-button.swiper-button-next.on {content: url(img/icon_swiper_next_on.png);}

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

/* 스와이퍼 페이지네이션 */
.main_gb4 .swiper-pagination-custom {
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #999;
}

.main_gb4 .swiper-pagination-custom span.current {
    color: var(--main-font-point-color);
    padding-right: 16px;
}

.main_gb4 .swiper-pagination-custom span.total {
    padding-left: 16px;
}

@media all and (max-width: 991px) {
    .main_gb4 .board_container {
        display: block;
    }

    .main_gb4 .thumb_container {
        border-radius: 0;
    }

    /* 타이틀 컨테이너 */
    .main_gb4 .title_container {
        min-width: 100%;
        max-width: 100%;
    }

    /* 타이틀 */
    .main_gb4 .main_cont_title {
        margin-bottom: 20px;
    }

    .main_gb4 .main_cont_title h2 {
        font-size: 31px;
    }

    /* 서브타이틀 */
    .main_gb4 .main_cont_subtitle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .main_gb4 .main_cont_subtitle h3 {
        font-size: 16px;
    }

    /* 전체보기 텍스트 */
    .main_gb4 .more_container {
        display: block;
        margin-bottom: 0;
		padding-right: 2px;
    }

    .main_gb4 .more_container .more_link {
        display: block;
    }

    .main_gb4 .more_container .more_link img {
        width: 44px;
    }

    /* 게시판 리스트 */
    .main_gb4 .board_list {
        padding-top: 0;
    }

    .main_gb4 .move_link .post_container {
        padding: 21px 0 0 0;
    }

    .main_gb4 .move_link.on .post_container {
        display: block;
    }

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

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

    /* 게시판 호버 텍스트 */
    .main_gb4 .hidden_txt {
        padding: 33px 30px 28px 33px;
    }

    /* 게시판 호버 화살표 이미지 */
    .main_gb4 .hidden_txt .hidden_arrow img {
        width: 32px;
    }

    /* 게시판 호버 타이틀 */
    .main_gb4 .hidden_txt .hidden_subject {
        font-size: 19px;
        margin-bottom: 25px;
    }

    /* 게시판 호버 내용 */
    .main_gb4 .hidden_txt .hidden_date {
        margin-bottom: 14px;
    }

    .main_gb4 .hidden_txt .hidden_date p,
    .main_gb4 .hidden_txt .hidden_location p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .main_gb4 .hidden_txt .hidden_date span,
    .main_gb4 .hidden_txt .hidden_location span {
        font-size: 14px;
    }

    /* 스와이퍼 */
    .main_gb4 .swiper {
        position: relative;
    }

    .main_gb4 .swiper-slide.on {
        transform: translateY(0);
    }
}