:root{
  --bg:#0b0c10;
  --panel:#111318;
  --panel2:#0f1116;
  --line:#1d212a;
  --txt:#e9eef7;
  --muted:#aab3c2;
  --accent:#ffd27d;
}

.bp-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:18px 14px 40px;
  color:var(--txt);
}

/* ===== QUICK(최근게시물 카드) ===== */
.bp-quick.bp-quick--cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-bottom:16px;
}

.bp-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}

.bp-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;

  /* ✅ 쉐이드/그라데이션 없이, 제목만 딱 강조 */
  padding:0 0 12px 0;
  margin:0 0 10px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.bp-card__title{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:900;
  color:#fff;
  text-decoration:none;
}
.bp-card__title::before{
  content:"";
  width:4px;
  height:14px;
  border-radius:999px;
  background:var(--accent);
  display:inline-block;
}

.bp-card__more{
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.65);
  text-decoration:none;
}
.bp-card__more:hover{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}

.bp-card__desc{
  margin:6px 0 10px;
  color:var(--muted);
  font-size:13px;
}

.bp-card__latest ul{
  margin:0;
  padding:0;
  list-style:none;
}
.bp-card__latest li{
  padding:7px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.bp-card__latest li:last-child{
  border-bottom:0;
}

/* 게시판 준비중 */
.bp-empty{
  padding:12px 0;
  color:rgba(255,255,255,.55);
  font-size:13px;
  font-weight:800;
}

/* ===== 2열 패널 ===== */
.bp-grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

.bp-panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}

.bp-panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:10px 14px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:transparent;
}

.bp-panel__head h2{
  margin:0;
  font-size:16px;
  font-weight:900;
  color:#fff;
  letter-spacing:-0.2px;
  padding-left:12px;
  position:relative;
}
.bp-panel__head h2::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:4px;
  height:16px;
  border-radius:999px;
  background:var(--accent);
}

.bp-more{
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.65);
  text-decoration:none;
}
.bp-more:hover{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}

.bp-panel__body{
  padding:10px 14px 14px;
}

/* ===== 반응형 ===== */
@media (max-width: 920px){
  .bp-quick.bp-quick--cards{ grid-template-columns:1fr 1fr; }
  .bp-grid2{ grid-template-columns:1fr; }
}

@media (max-width: 700px){
  .bp-quick.bp-quick--cards{ grid-template-columns:1fr; }
}

.bpbox{display:block !important; min-height:60px !important; border:2px solid red !important;}

