@charset "utf-8";
/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/


.main_v5 * {
    line-height: 1;
}

.main_v5 .swiper {
    overflow: visible;
}

/* 타이틀 */
.main_v5 .v5_top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 33px;
}
.main_v5 .main_cont_title {
    width: 100%;
    margin-bottom: 20px;
}
.main_v5 .main_cont_title h2,
.main_v5 .main_cont_title h2 p {
    display: inline-block;
    width: auto;
    font-size: 43px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.main_v5 .main_content p{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    color: #fff;
}

.main_v5 .v5_top .right-box {
    position: relative;
    display: flex;
    gap: 0 10px;
}

/* 더보기 */

.main_v5 .v5_top .more_box .more_a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 50px;
    width: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background-color: #fff;
    transition: all .3s ease-in-out;
}
.main_v5 .more_a svg {
    width: 14px;
    height: 14px;
    fill :#8d96aa;
    transition: all .3s ease-in-out;
}


.main_v5 .v5_top .more_box:hover .more_a {
    border: 1px solid #1868de;
    background: #1868de;
}
.main_v5 .v5_top .more_box:hover svg {
    transform: rotate(360deg);
    transition: .3s;
    fill: #fff;
}

/* 스와이퍼 버튼 */

.main_v5 .swiper_btn_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 6px;
}

.main_v5 .swiper_btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
}

.main_v5 .swiper_btn_click {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255, 0.2);
    border-radius: 10px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.main_v5 .v5_top .swiper_btn_click:hover {
    border-color: rgba(255,255,255, 1);
    transition: .3s;
}

.main_v5 .v5_top .swiper_btn_click svg {
    width: 16px;
    height: 15px;
}


/* 컨텐츠 영역 */

.main_v5 .v5_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main_v5 .board_title {
    position: relative;
    width: 310px;
    z-index: 6;
}

.main_v5 .board_list {
    width: calc(100% - 310px);
}

.main_v5 .swiper-slide {
    height: 100%;
    display: block;
    overflow: hidden;
    transition: background-color .5s ease-in-out;
    text-decoration: none;
}
.main_v5 .swiper-slide .post_content {
    padding-top: 27px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.main_v5 .post_content .post_label {
    display: inline-block;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 0px 9px;
    background: #adadad;
    border-radius: 50px;
}
.main_v5 .post_content .post_label:empty {
    display: none;
}
.main_v5 .post_content .post_subject {
    line-height: 1.5;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.main_v5 .post_content .post_subject h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.main_v5 .img_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.main_v5 .img_wrap .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}
.main_v5 .img_wrap .img_item {
    transition: all .5s ease-in-out;
}
.main_v5 .swiper-slide:hover .img_wrap .img_item {
    transform: scale(1.1);
}

/* 이미지 스켈레톤 */
.load_img {
    display: block;
    width: 100%;
}

@media (max-width:1480px) {
    .main_v5 .main_cont_title h2, .main_v5 .main_cont_title h2 p {
        font-size: 38px;
    }

    .main_v5 .main_content p{
        font-size: 20px;
    }
}

@media (max-width:1280px) {
    .main_v5 .main_cont_title h2, .main_v5 .main_cont_title h2 p {
        font-size: 35px;
    }
    
    .main_v5 .main_content p{
        font-size: 18px;
    }

    .main_v5 .post_content .post_subject h3 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .main_v5 .v5_top {
        display: none;
    }

    .main_v5 .main_cont_title h2, .main_v5 .main_cont_title h2 p {
        font-size: 31px;
    }

    .main_v5 .main_content p {
        font-size: 17px;
    }

    .main_v5 .v5_content {
        flex-direction: column;
        gap: 79px 0;
    }

    .main_v5 .board_title {
        width: 100%;
    }

    .main_v5 .board_list {
        width: 100%;
    }

    .main_v5 .tap_content_box {
        padding: 0;
    }

    .main_v5 .img_wrap {
        border-radius: 9px;
    }

    .main_v5 .swiper-slide .post_content {
        padding-top: 18px;
    }
    .main_v5 .post_content .post_subject h3{
        font-size: 20px;
    }
}