aside#bo_vc_w {
    display: none !important;
}

.bo-v-divider {
    height: 8px;
    background: #f5f5f5;
    margin: 0 -17px;
    /* 좌우 패딩 상쇄해서 full-width로 */
}

#bo_vc article:last-of-type,
#bo_vc article.last-comment {
    border-bottom: none;
}

/* ── 글쓰기 폼 ── */
#bo_w {
    max-width: 550px;
    margin: 0 auto;
    padding: 0;
}

#bo_w form {
    background: #fff !important;
    padding: 16px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 공통 입력 영역 */
.write_div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* 텍스트 input 공통 */
#bo_w .frm_input,
#bo_w .one-line-input,
#bo_w input[type="text"],
#bo_w input[type="password"],
#bo_w input[type="email"],
#bo_w select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

#bo_w .frm_input:focus,
#bo_w .one-line-input:focus,
#bo_w input[type="text"]:focus,
#bo_w input[type="password"]:focus,
#bo_w input[type="email"]:focus,
#bo_w select:focus {
    border-color: var(--primary-color, #ff6400);
}

/* 분류 select */
#bo_w .bo_w_select select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* 제목 input */
#wr_subject {
    font-size: 15px !important;
    font-weight: 600;
}

/* 본문 에디터/textarea 영역 */
#bo_w .wr_content textarea,
#bo_w #wr_content {
    width: 100%;
    min-height: 240px;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.7;
    resize: vertical;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

#bo_w .wr_content textarea:focus,
#bo_w #wr_content:focus {
    border-color: var(--primary-color, #ff6400);
}

/* 옵션 체크박스 */
#bo_w .bo_v_option {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#bo_w .chk_box label {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* 파일 첨부 */
#bo_w .bo_w_flie {
    padding: 12px 14px;
    border: 1px dashed #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
}

#bo_w .frm_file {
    font-size: 13px;
    color: #666;
}

#bo_w .file_del {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 링크 입력 */
#bo_w .bo_w_link {
    position: relative;
}

#bo_w .bo_w_link .fa-link {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 13px;
}

#bo_w .bo_w_link input {
    padding-left: 36px !important;
}

/* 관리자 전용 섹션 구분 */
#bo_w > div > div:not(.write_div) {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0 4px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

/* 하단 버튼 */
#bo_w .btn_confirm {
    display: flex;
    gap: 8px;
    padding-bottom: 80px !important; /* 댓글 고정 푸터 여백 */
}

#bo_w .btn_confirm a,
#bo_w .btn_confirm button {
    flex: 1;
    padding: 13px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center;
    border: none;
    cursor: pointer;
}

#bo_w .btn_confirm a {
    background: #f0f0f0 !important;
    color: #666 !important;
}

#bo_w .btn_confirm button {
    background: var(--primary-color, #ff6400) !important;
    color: #fff !important;
}

#bo_w .btn_confirm a:hover {
    background: #e5e5e5 !important;
}

#bo_w .btn_confirm button:active {
    opacity: 0.85;
}

/* 글자수 안내 */
#char_count_desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

#char_count_wrap {
    font-size: 12px;
    color: #aaa;
    text-align: right;
    margin-top: 4px;
}

.bo-w-policy {
    font-size: 12px;
    color: #bbb;
    text-align: center;
    padding: 8px 0;
    line-height: 1.5;
}