/*-------------------- page_top --------------------*/
.page_top {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
}
.top_inner {
    position: relative;
}

.share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: background .4s ease;
}
.share img {
    width: 24px;
    height: 24px;
    transition: transform .4s ease;
}
.share:hover {
    background-color: var(--gray-100);
}
.share:hover img {
    transform: scale(.8);
}

.detail_name {
    margin-bottom: 16px;
    font-size: var(--ft14);
    color: var(--gray-400);
}
.detail_title {
    margin-bottom: 28px;
    font-size: var(--ft32);
    font-weight: var(--medium);
    display: flex;
    align-items: center;
    gap: 16px;
}
.detail_date {
    font-size: var(--ft16);
    color: var(--gray-400);
}

/*-------------------- detail_wrap --------------------*/
.detail_wrap figure {
    width: 100%;
}


.page_list {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.page_list .prev * {
    text-align: left;
}
.page_list .next * {
    text-align: right;
}

.list_label {
    margin-bottom: 8px;
    font-size: var(--ft16);
    font-family: var(--font-eng);
    color: var(--gray-400);
}
.list_title {
    font-size: var(--ft18);
    font-weight: var(--medium);
    color: var(--gray-600);
}
.null .list_title {
    color: var(--gray-300);
}

.list_btn {
    width: 100%;
    max-width: 300px;
    height: var(--btn);
    margin: 40px auto 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: background .4s ease;
}
.list_btn a {
    padding: 10px 24px;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.list_btn:hover {
    background-color: var(--gray-100);
}

@media all and (max-width: 1024px) {
    .m_community .m_btm_menu .icon_line {
        display: none;
    }
    .m_community .m_btm_menu .icon_fill {
        display: block;
    }
    .m_community .m_btm_menu p {
        color: var(--gray-600);
    }
}

@media all and (max-width: 768px) {
    .page_top {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .share {
        width: 32px;
        height: 32px;
    }
    .share img {
        width: 18px;
        height: 18px;
    }
    .detail_title {
        margin-bottom: 16px;
        font-size: var(--ft24);
    }

    .page_list {
        margin-top: 40px;
        padding-top: 24px;
    }
    .list_label {
        font-size: var(--ft13);
    }
    .list_title {
        font-size: var(--ft16);
    }
}