/* =============================== page =============================== */
.detail_wrap {
    padding-top: 80px;
}

.detail_wrap .detail_head {
    padding-bottom: 40px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 40px;
}

.detail_wrap .edk_edit_admin,
.detail_wrap .edk_edit_admin * {
    font-family: 'Noto Sans KR', sans-serif !important;
}

.detail_wrap .page_category {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    display: block;
}

.detail_wrap .page_category.life {
    color: var(--main-color);
}

.detail_wrap .page_category.travel {
    color: var(--green-color);
}

.detail_wrap .page_category.job {
    color: var(--orange-color);
}

.detail_wrap .page_title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.detail_wrap .page_visit {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.detail_wrap .page_visit .visit_item {
    display: flex;
    align-items: center;
}

.detail_wrap .page_visit .visit_item p {
    color: #5E5E5E;
    font-size: 22px;
}

.detail_wrap .page_visit .visit_item .item_title {
    display: flex;
    align-items: center;
}

.detail_wrap .page_visit .visit_item .item_title::after {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background-color: #BBB;
    margin: 0 10px;
}

/* best */
.best_wrap {
    padding: 80px 0;
}

.best_wrap .border_title {
    font-size: 20px;
    font-weight: 400;
    color: #5E5E5E;
    padding-bottom: 20px;
    border-bottom: 1px solid #BBB;
    margin-bottom: 20px;
}

/* comment */
.comment_wrap {
    padding-bottom: 100px;
}

.comment_wrap .comment_head {
    padding-bottom: 30px;
    border-bottom: 1px solid #BBB;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 0 6px;
}

.comment_wrap .comment_head .comment_title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0 8px;
}

.comment_wrap .comment_head .comment_title::before {
    content: '';
    display: block;
    width: 33px;
    height: 33px;
    background: url(/static/app_www/base/img/icon_comment.png) no-repeat center/contain;
}

.comment_wrap .comment_head .comment_count {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
}

.comment_wrap .input_wrap:not(:last-child) {
    margin-bottom: 24px;
}

.comment_wrap .input_info_wrap {
    display: flex;
    gap: 24px 30px;
}

.comment_wrap .input_info {
    flex-grow: 1;
}

.comment_wrap label {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    display: block;
    margin-bottom: 16px;
}

.comment_wrap label span {
    color: var(--main-color);
}

.comment_wrap input {
    border: 1px solid #BBBBBB;
    border-radius: 10px;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    color: #222;

}

.comment_wrap .comment_text {
    position: relative;
}

.comment_wrap .comment_text textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #BBBBBB;
    border-radius: 10px;
    font-size: 16px;
    color: #222;
    min-height: 192px;
}

.comment_wrap .comment_text .btn_post {
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    padding: 12px 21px;
    border-radius: 10px;
    display: block;
    margin-left: auto;
}

.comment_wrap .comment_list {
    margin-top: 30px;
}

.comment_wrap .comment_list li.no_comment {
    text-align: center;
    padding: 50px 0 0 0;
    color: #BBB;
}

.comment_wrap .comment_list li:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 16px;
}

.comment_wrap .comment_list .writer_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.comment_wrap .comment_list .writer_name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.comment_wrap .comment_list .comment_date {
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

.comment_wrap .comment_list .comment_view {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

/* =============================== page end =============================== */

@media screen and (max-width:1023px) {
    .detail_wrap {
        padding-top: 30px;
    }
}

/* mobile */
@media screen and (max-width: 767px) {

    /* =============================== page =============================== */



    .detail_wrap .detail_head {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .detail_wrap .page_category {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .detail_wrap .page_title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .detail_wrap .page_visit {
        gap: 0 16px;
    }

    .detail_wrap .page_visit .visit_item p {
        font-size: 16px;
    }

    .detail_wrap .page_visit .visit_item .item_title::after {
        height: 10px;
        margin: 0 8px;
    }

    /* best */
    .best_wrap {
        padding: 30px 0;
    }

    .best_wrap .border_title {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    /* comment */
    .comment_wrap {
        padding-bottom: 30px;
    }

    .comment_wrap .input_info_wrap {
        flex-direction: column;
    }

    .comment_wrap .comment_text textarea {
        min-height: 180px;
    }

    .comment_wrap .comment_text .btn_post {
        padding: 10px 20px;
    }

    /* =============================== page end =============================== */
}