/* 공통 컨테이너 */
.vh-container{ max-width:1280px; margin:0 auto; padding:0 16px; }

/* 1) 하이라이트 스트립 */
.vh-highlights{ background:#0b0b0c; color:#f5f5f7; }
.vh-highlights .vh-container{
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px; padding:18px 16px;
}
.vh-item{ display:flex; align-items:center; gap:12px; padding:14px; border-radius:14px; background:#151517; }
.vh-ico{ width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:#1e1e21; color:#ff6600; }
.vh-ico svg{ width:20px; height:20px; stroke-width:1.8; }
.vh-txt strong{ display:block; font-weight:700; line-height:1.2; }
.vh-txt p{ margin:2px 0 0; opacity:.8; font-size:14px; }
.vh-link{ color:#ff934d; text-decoration:underline; }

/* 2) 카테고리 타일 */
.vh-cats{ background:#0e0e10; padding:28px 0 40px; }
.vh-cats .vh-container{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.vh-tile{
  position:relative; overflow:hidden; border-radius:16px; background:#111;
  display:block; text-decoration:none; color:#fff;
}
.vh-thumb{ aspect-ratio: 16 / 9; }
.vh-thumb img{ width:100%; height:100%; object-fit:cover; display:block; filter:brightness(0.92); transition:transform .35s ease, filter .35s ease; }
.vh-cap{
  position:absolute; left:0; right:0; bottom:0; padding:16px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 90%);
  display:flex; align-items:flex-end; justify-content:space-between; gap:8px;
}
.vh-cap strong{ font-size:18px; }
.vh-more{ font-size:13px; opacity:.9; }
.vh-tile:hover .vh-thumb img{ transform:scale(1.04); filter:brightness(1); }

/* 3) 뉴스(게시판 연동) */
.vh-news{ background:#0b0b0c; color:#f5f5f7; padding:42px 0; border-top:1px solid rgba(255,255,255,.06); }
.vh-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.vh-head h2{ font-size:20px; font-weight:800; }
.vh-all{ color:#ff934d; text-decoration:none; }
.vh-news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.vh-news-card{
  background:#151517; padding:16px; border-radius:14px; text-decoration:none; color:#fff;
  display:flex; flex-direction:column; gap:8px; border:1px solid rgba(255,255,255,.04);
}
.vh-news-card:hover{ border-color:rgba(255,255,255,.12); }
.vh-news-title{ font-weight:700; line-height:1.35; }
.vh-news-date{ font-size:13px; opacity:.75; }
.vh-news-empty{ grid-column:1/-1; padding:22px; text-align:center; border-radius:12px; background:#151517; opacity:.8; }

/* 반응형 */
@media (max-width:1024px){
  .vh-highlights .vh-container{ grid-template-columns:repeat(2,1fr); }
  .vh-cats .vh-container{ grid-template-columns:repeat(2,1fr); }
  .vh-news-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .vh-item{ padding:12px; }
  .vh-cap strong{ font-size:16px; }
}