/* COM/BBS_CNT - 게시판 연동 커넥터 위젯 */
.BBS_CNT { width: 100%; float: left; position: relative }

/* 콤보 정보 + 관리 버튼 (뱃지 아래, inner 밖) */
.BBS_CNT .bbs_cnt_combo_info { position: absolute; left: 0; top: 42px; z-index: 100; padding: 5px 10px; background: rgba(0,0,0,0.6); color: #fff; font-size: 11px; font-family: monospace; border-radius: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; cursor: pointer }
.BBS_CNT .bbs_cnt_combo_info:hover { background: rgba(0,0,0,0.8) }

.BBS_CNT .bbs_cnt_manage_btn { position: absolute; left: 0; top: 66px; z-index: 100; display: inline-flex; align-items: center; gap: 3px; padding: 5px 10px; background: rgba(37,99,235,0.85); color: #fff; font-size: 11px; font-weight: 600; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: all 0.2s }
.BBS_CNT .bbs_cnt_manage_btn:hover { background: rgba(37,99,235,1) }
.BBS_CNT .bbs_cnt_manage_btn i { font-size: 13px }

/* 제목 영역: 세로 정렬, 각 제목 100% */
.BBS_CNT .sub_stit_box { width: 100%; float: left; margin-bottom: clamp(15px, calc(1.17vw + 11.25px), 30px) }
.BBS_CNT .sub_stit_box .sub_stit2,
.BBS_CNT .sub_stit_box .sub_stit3,
.BBS_CNT .sub_stit_box .sub_stit4,
.BBS_CNT .sub_stit_box .sub_stit5 { width: 100%; float: left }
.BBS_CNT .sub_stit_box .sub_stit_link { display: flex; align-items: center; justify-content: space-between; gap: 10px }
.BBS_CNT .sub_stit_box .sub_stit_link.btn_st2 { display: flex; align-items: center; justify-content: space-between; gap: 10px }

/* 본문 영역 */
.BBS_CNT .bbs_cnt_body { width: 100%; float: left }

/* 빈 상태 안내 (관리자용) */
.BBS_CNT .bbs_cnt_empty { width: 100%; float: left; padding: 40px 20px; background: #fafafa; border: 2px dashed #ddd; border-radius: 12px; text-align: center; color: #999 }
.BBS_CNT .bbs_cnt_empty p { margin: 5px 0; font-size: 14px; line-height: 1.6 }
.BBS_CNT .bbs_cnt_empty strong { color: #555; font-weight: 700 }

/* 모바일 */
@media only all and (max-width: 767px) {
  .BBS_CNT .bbs_cnt_combo_info { top: 38px; max-width: 160px }
  .BBS_CNT .bbs_cnt_manage_btn { top: 60px }
}
