.board_detail__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid rgb(var(--color-color1));
}
.board_detail__title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    flex: 1;
    padding-right: 10px;
}
@media (max-width:1060px) {
    .board_detail__head {
        flex-direction: column;
    }
    .board_detail__title {
        width: 100%;
        padding-right: 0;
    }
    .board_detail__info {
        width: 100%;
        margin-top: 10px;
    }
}
.board_detail__category {
    font-size: 13px;
    font-weight: normal;
    color: rgb(var(--color-color1));
    line-height: 1.5;
}
.board_detail__date {
    font-size: 13px;
    font-weight: normal;
    color: #555;
    line-height: 1.5;
}
.board_detail__date:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 13px;
    vertical-align: middle;
    margin: 0 5px 0 5px;
    background: #d9d9d9;
}
.board_detail__content {
    padding: 40px  0;
    margin-bottom: 30px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}


.ux-box.-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.button-secondary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 2px solid rgb(var(--color-color1));
    color: rgb(var(--color-color1));
    font-weight: 700;
    background-color: transparent;
    min-width: 100px;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 50px;
}