.page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.box_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.box_grid .wrap_box {
    width: 100%;
    min-width: 0;
}
.box_grid .wrap_box.guest {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrap_box.guest .chat_input {
    margin-top: 60px;
}

/*--------------------------- box ---------------------------*/
.box_h {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box_h.line {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-line);
}
.box_h_title {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
}
.more_btn a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.more_btn p {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--gray-500);
}
.more_btn .more_cir {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform .4s ease;
}
.more_btn:hover .more_cir {
    transform: rotate(90deg);
}

/*--------------------------- review_box ---------------------------*/
.review_l::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--dark-line);
    position: absolute;
    top: 0;
    right: 0;
}

.guestbook_list {
    margin-top: 0;
    gap: 40px;
}
.guestbook_list .guestbook_box {
    padding-bottom: 0;
    border-bottom: none;
}

.feed_list .feed_box:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

@media all and (max-width: 1600px) {

    /*-- reivew_list --*/
    .review_l::after {
        display: none;
    }
}

@media all and (max-width: 1400px) {
    .box_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media all and (max-width: 768px) {
    .box_h {
        margin-bottom: 20px;
    }
    .box_h.line {
        padding-bottom: 12px;
    }

    .wrap_box.guest .chat_input {
        margin-top: 32px;
    }
}