:root{
  --hbc-text:#0b1b2b;
  --hbc-muted:#6b7280;
  --hbc-border:#e5e7eb;
  --hbc-bg:#ffffff;
  --hbc-chip:#f59e0b;
  --hbc-primary:#0b2a63;
  --hbc-shadow: 0 10px 30px rgba(0,0,0,.08);
  --hbc-radius:5px;
  --hbc-line-height:150%;
}

.hbc-news-wrap{
  margin: 0 auto;
  padding: 28px 16px 36px;
  font-family: inherit;
  color: var(--hbc-text);
}

.hbc-news-title{
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  letter-spacing: .2px;
}

.hbc-news-layout{ display:grid; gap:50px; }

/* Featured */
.hbc-news-featured{
  display:grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap:7%;
  background:var(--hbc-bg);
  border-radius:var(--hbc-radius);
  overflow:hidden;
  align-items:stretch;
}
.hbc-news-featured__media{
  display:block;
  border-radius:var(--hbc-radius);
  overflow:hidden;
  background:#f3f4f6;
  min-height:210px;
}
.hbc-news-featured__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hbc-news-featured__body{
  padding:8px 8px 10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hbc-news-badge{
  display:inline-flex;
  align-self:flex-start;
  font-size:12px;
  font-weight:800;
  color:var(--hbc-chip);
  letter-spacing:.3px;
}
.hbc-news-featured__title{
  margin:0;
  font-size:28px;
  line-height:150%;
  font-weight:600;
}
.hbc-news-featured__title a{ color:var(--hbc-text); text-decoration:none; }
.hbc-news-featured__title a:hover{ text-decoration:underline; }
.hbc-news-featured__excerpt{
  margin:0;
  color:var(--hbc-muted);
  font-size:16px;
  line-height:1.6;
  text-decoration: none;
  text-align: justify;
}

.hbc-news-more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:16px;
  color:white;
  text-decoration:none;
}
.hbc-news-more:hover{ text-decoration:underline; }

/* Grid cards */
.hbc-news-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:6px;
}
.hbc-news-card{
  background:var(--hbc-bg);
  border-radius:var(--hbc-radius);
  /* box-shadow:var(--hbc-shadow); */
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hbc-news-card__media{
  display:block;
  height:100%;
  background:#f3f4f6;
}
.hbc-news-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hbc-news-card__body{
  padding:14px 0;
  display:flex;
  flex-direction:column;
  gap:8px;
  height:100%;
}
.hbc-news-card__title{
  margin:0;
  font-size:20px;
  line-height:var(--hbc-line-height);
  font-weight:600;
}
.hbc-news-card__title a{ color:var(--hbc-text); text-decoration:none; }
.hbc-news-card__title a:hover{ text-decoration:underline; }
.hbc-news-card__excerpt{
  margin:0;
  color:var(--hbc-muted);
  font-size:14px;
  line-height:var(--hbc-line-height);
}

.hbc-news-footer{
  display:flex;
  justify-content:center;
  margin-top:8px;
}
.hbc-news-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 18px;
  border-radius:12px;
  background:var(--hbc-primary);
  color:#fff !important;
  font-weight:600;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 24px rgba(11,42,99,.22);
}
.hbc-news-btn:hover{ filter:brightness(1.05); }

/* Responsive */
@media (max-width: 980px){
  .hbc-news-featured{ grid-template-columns:1fr; }
  .hbc-news-featured__media{ min-height:220px; }
  .hbc-news-grid{ grid-template-columns:1fr; }
  .hbc-news-card__media{ height:180px; }
}

.comments-area a, .page-content a {
    text-decoration: none;
}