.view_btns{display: flex; justify-content: center; gap: 10px;}
.view_btns a{border:1px solid var(--line); padding:.4em 1em;  border-radius: 4em; color: var(--text);}
.view_btns a:hover{background-color: var(--accent);  border-color: var(--accent);}

 
#bo_w .tb{
  width: 100%;
}
#bo_w .tb td{
  padding:10px
}
.full_input{
  width: 100%;
}
#bo_w{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3.4vw, 44px);
  box-shadow: var(--shadow-card);
}

.write_div{position: relative;}
.write_div i.fa{position:absolute; top: 50%; transform: translateY(-50%); left:0; width: 50px; text-align: center;}
.write_div + .write_div{margin-top: 20px;}
.bo_w_link .form-control{padding-left:50px;}
.bo_w_flie {
  display: flex; 
  min-height: 48px;
  padding: 12px 16px;
  padding-left:50px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.bo_w_flie .file_del{ 
  margin-left: auto;
}

.ck_style {
  display: inline-flex;
  align-items: center;
  margin: 0 8px 8px 0;
  cursor: pointer;
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease;
}

.ck_style input {
  margin-right: 8px;
  accent-color: var(--bw-accent);
  width: 15px;
  height: 15px;
}

.ck_style:hover {
  border-color: var(--bw-accent);
  color: var(--bw-accent-ink);
}

/* 선택된 카테고리: 체크된 input 을 가진 라벨 강조 */
.ck_style:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #06251f;
}

.ck_style:has(input:checked) input {
  accent-color: #06251f;
}