/* 20240912 추가 */

/* 블로그 */
.sub_n .blog {
    height: 540px;
    background: url(/img/board/bg_blog.jpg) no-repeat center center;
}

.sub_n .blog dl dt {
    font-size: 60px !important;
    margin-bottom: 0;
}

.sub_n .subvs.blog .bgtxt dl {
    margin-bottom: 0;
}

.sc_board {
    background: url(/img/board/bg_sc_blog.png) no-repeat center center/cover;
}

.sc_board .tit_area {
    padding-bottom: 50px;
}

.sc_board .tit_area h2,
.sc_board .tit_area h3,
.sc_board p,
.sc_board span {
    font-family: Pretendard !important;
}

.sc_board .tit_area h2 {
    color: var(--neutral-gray-800, #262626);
    font-size: 18px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 140%;
    letter-spacing: -0.36px;
    padding-bottom: 22px;
}


.sc_board .tit_area h2:before {
    content: '';
    position: relative;
    width: 10px;
    height: 10px;
    display: block;
    background: #17A59C;
    margin-right: 10px;
}

.sc_board .tit_area h3 {
    color: var(--neutral-gray-800, #262626);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.64px;
}

.sc_board .board_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
    padding-bottom: 100px;
}

.sc_board .board_list .img_box {
    position: relative;
    padding-top: 70%;
    display: block;
    border: 1px solid #ACACAC;
}

.sc_board .board_list .img_box img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    object-fit: cover;
    background: var(--neutral-gray-5002, #FAFAFA);
}

.sc_board .board_list .tit_box {
    padding-top: 20px;
}

.sc_board .board_list .tit_box dt {
    display: flex;
    align-items: center;
    padding-bottom: 8px;

}

.sc_board .board_list .tit_box .writer {
    position: relative;
    display: flex;
    overflow: hidden;
    color: #0A5853;
    text-overflow: ellipsis;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    align-items: center;
    letter-spacing: -0.32px;
}


.sc_board .board_list .tit_box .writer:after {
    content: '';
    position: relative;
    display: block;
    width: 2px;
    height: 16px;
    background: var(--neutral-gray-30002, #D4D4D4);
    margin: 0 12px;
    line-height: 150%;
}

.sc_board .board_list .tit_box .date {
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Pretendard;
    font-size: 16px;
    color: var(--neutral-gray-40001, #A3A3A3);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.32px;
}

.sc_board .board_list .tit_box .tit {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--neutral-gray-800, #262626);
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.4px;
    height: 60px;
}

.sc_board .pagination {
    display: flex;
    /* margin: 0 auto; */
    align-items: center;
    justify-content: center;
}

.sc_board .pagination .blind {
    display: none;
}

.sc_board .pagination [class*='btn'] {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    cursor: pointer;
}

.sc_board .pagination .btn_first {
    background-image: url(/img/board/ico_board_first.png);
    margin-right: 12px;
}

.sc_board .pagination .btn_prev {
    background-image: url(/img/board/ico_board_prev.png);
}

.sc_board .pagination .btn_next {
    background-image: url(/img/board/ico_board_next.png);
    margin-right: 12px;
}

.sc_board .pagination .btn_last {
    background-image: url(/img/board/ico_board_last.png);
}

.sc_board .pagination .num_box {
    display: flex;
    gap: 12px;
    margin: 0 40px;
}

.sc_board .pagination .num {
    overflow: hidden;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    display: flex;
    padding: 3px 8px;
    letter-spacing: -0.32px;
    background: var(--neutral-gray-20003, #E5E5E5);
    color: var(--neutral-gray-50002, #737373);
}

.sc_board .pagination .num.on {
    background: #0A5853;
    color: var(--Neutral-Gray-white, #FFF);
}

@media screen and (max-width: 1020px) {

    .sc_board .board_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .sub_n .blog {
        height: 360px;
        background: url(/img/board/bg_blog_m.jpg) no-repeat center center / cover;
    }

    .sub_n .subvs.blog .bgtxt {
        padding-top: 0;
        align-items: center;
    }

    .sub_n .subvs.blog .bgtxt dl dt {
        font-size: 30px !important;
        font-weight: 700;
        line-height: 100%;
    }

    .sc_board {
        background: url(/img/board/bg_sc_blog_m.png) no-repeat center center / cover;
    }

    .sc_board .tit_area {
        padding-bottom: 30px;
    }

    .sc_board .tit_area h2 {
        font-size: 15px;
        font-weight: 400;
        line-height: 140%;
        letter-spacing: -0.3px;
    }

    .sc_board .tit_area h3 {
        font-family: Pretendard;
        font-size: 18px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: -0.36px;
    }

    .sc_board .board_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        padding-bottom: 60px;
    }

    .sc_board .board_list .img_box {
        padding-top: 50%;
    }

    .sc_board .board_list .tit_box .writer {
        font-size: 15px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: -0.3px;
    }

    .sc_board .board_list .tit_box .date {
        font-size: 15px;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: -0.3px;
    }

    .sc_board .board_list .tit_box .tit {
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
        height: 48px;
        letter-spacing: -0.32px;
    }

    .sc_board .pagination .num_box {
        margin: 0 20px;
    }
}


/* 블로그 상세 */

.sc_board .board_wrap {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    margin-bottom: 60px;

}

.sc_board .board_wrap .tit_box {
    display: flex;
    padding: 22px 0px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 30px;
    gap: 10px;
    align-self: stretch;
    background: var(--neutral-gray-10001, #F5F5F5);
}

.sc_board .board_wrap .tit_box .tit {
    font-family: Pretendard;
    word-break: break-word;
    /* padding-bottom: 20px; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
}

.sc_board .board_wrap .con_box {
    background: #fff;
    /* height: 588px; */
    border-bottom: 1px solid var(--neutral-gray-30002, #D4D4D4);
}


.sc_board .board_wrap .info {
    display: flex;
    align-items: center;
}

.sc_board .board_wrap .info .writer {
    color: var(--neutral-gray-60001, #525252);
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
    position: relative;
    display: flex;
    align-items: center;
}

.sc_board .board_wrap .info .writer:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 1px;
    height: 18px;
    background: #525252;
    margin: 0 20px;
}

.sc_board .board_wrap .info .date {
    color: var(--neutral-gray-60001, #525252);
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
}

.sc_board .bottom_box {}

.sc_board .bottom_box .btn_list {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    background: #fff;
    gap: 50px;
}

.sc_board .bottom_box .btn_list:first-child {
    border-bottom: 1px solid var(--neutral-gray-30002, #D4D4D4);
}

.sc_board .bottom_box .btn_list .txt {
    width: 30%;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
    /* padding-left: 24px; */
    width: 80px;
    display: flex;
    align-items: center;
}

.sc_board .bottom_box .btn_list .txt:before {
    content: '';
    position: relative;
    width: 24px;
    height: 24px;
    background: url(/img/board/ico_board_arrow.svg) center center /100% no-repeat;
}

.sc_board .bottom_box .btn_list:last-child .txt:before {
    transform: rotate(180deg);
}

.sc_board .bottom_box .btn_list .tit {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
    font-family: Pretendard;
}

.sc_board .btn_link {
    display: block;
    padding: 12px 42px;
    background: #5C928B;
    width: fit-content;
    margin: 0 auto;
    color: var(--Neutral-Gray-white, #FFF);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
    /* 145% */
}

@media screen and (max-width: 768px) {
    .sc_board .board_wrap {
        margin-bottom: 30px;
    }

    .sc_board .board_wrap .tit_box .tit {
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: -0.3px;
    }

    .sc_board .board_wrap .info .writer,
    .sc_board .board_wrap .info .date {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -0.28px;
    }

    .sc_board .bottom_box .btn_list {
        padding: 12px;
        gap: 20px;
    }

    .sc_board .bottom_box .btn_list .txt,
    .sc_board .bottom_box .btn_list .tit {
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -0.3px;
    }

    .sc_board .btn_link {
        font-size: 18px;
        line-height: 29px;
        padding: 10px 24px;
    }
}