:root{
  --hbc-text:#0b1b2b;
  --hbc-muted:#6b7280;
  --hbc-border:#e5e7eb;
  --hbc-border-buttom:#031B75;
  --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-button-bg:#1D9DD9;
  --hbc-font-family: var(--e-global-typography-primary-font-family);
  --hbc-font-size-button:16px;
  --hbc-border-title:#1D9DD9;
  --hbc-secondary-bg:#E8F6FF;
}
html, body { margin: 0; padding: 0; }

.hbc-archive-wrap{
  margin:0 auto;
  padding: 26px 16px 56px;
  color: var(--hbc-text);
  padding-left: 8%;
  padding-right: 8%;
  border-bottom: 2px solid var(--hbc-border);
}

.hbc-archive-head{
  text-align:center;
  margin-bottom: 18px;
}

.hbc-archive-title{
  margin:0;
  font-size:28px;
  font-weight:800;
  line-height:1.2;
}

.hbc-archive-desc{
  max-width:760px;
  margin: 12px auto 0;
  color: var(--hbc-muted);
  line-height:1.7;
  font-size:14px;
}

.hbc-news-layout{ display:grid; gap:18px; }


.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) !important; 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:var(--hbc-border-title) !important;
  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:var(--hbc-radius) !important;
  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;
}



/* Pagination */
.hbc-archive-pagination{
  margin-top: 22px;
  display:flex;
  justify-content:center;
}
.hbc-archive-pagination ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:8px;
}
.hbc-archive-pagination a,
.hbc-archive-pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 12px;
   border-radius:var(--hbc-radius) !important;
  border:1px solid var(--hbc-border);
  text-decoration:none;
  font-weight:400;
  color:var(--hbc-text);
  background:#fff;
}
.hbc-archive-pagination .current{
  background:#0b2a63;
  color:#fff;
  border-color:#0b2a63;
}

/* Detail new */
.hbc-single-wrap{
  margin: 0 auto;
  padding: 4% 8%;
  color: var(--hbc-text);
  border-bottom: 2px solid var(--hbc-border);
}

.hbc-single-head{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.hbc-badge{
  font-size: 12px;
  font-weight: 800;
  color: var(--hbc-chip);
  letter-spacing: .3px;
}

.hbc-single-title{
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--hbc-text) !important;
}

.hbc-single-excerpt{
  margin: 0;
  color: var(--hbc-muted);
  font-size: 14px;
  line-height: var(--hbc-line-height);
}

.hbc-single-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size: 12px;
  color: var(--hbc-muted);
  margin-top: 2px;
}

.hbc-single-cover{
  margin-top: 18px;
   border-radius:var(--hbc-radius) !important;
  overflow:hidden;
  background:#f3f4f6;
}

.hbc-single-cover img{
  width:100%;
  height:auto;
  display:block;
}

/* content typography */
.hbc-single-content{
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #1f2937;
}

.hbc-single-content p{ margin: 0 0 16px; }
.hbc-single-content h2, 
.hbc-single-content h3{
  margin: 77px 0 44px;
  line-height: 1.3;
  font-size: 32px !important;
  font-weight: 600 !important;
  color: var(--hbc-text) !important;
}

.hbc-single-content img{
  max-width:100%;
  height:auto;
   border-radius:var(--hbc-radius) !important;
}

.hbc-single-content a{
  color:#2563eb;
  text-decoration:none;
  font-weight:700;
}
.hbc-single-content a:hover{ text-decoration:underline; }

@media (max-width: 768px){
  .hbc-single-title{ font-size: 24px; }
  .hbc-single-meta{ gap: 12px; flex-direction:column; align-items:flex-start; }
}
/* Related posts */
.hbc-related{
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.hbc-related-title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
  color: var(--hbc-text);
  background: var(--hbc-secondary-bg);
  padding: 10px 14px;
  border-left: 4px solid var(--hbc-border-title);
}

.hbc-related-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hbc-related-card{
  background:#fff;
   border-radius:var(--hbc-radius) !important;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid #e5e7eb;
  display:flex;
  flex-direction: column;
}

.hbc-related-media{
  display:block;
  height: auto;
  background:#f3f4f6;
}
.hbc-related-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.hbc-related-placeholder{ width:100%; height:150px; background:#eef3f7; }

.hbc-related-body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  height:100%;
}

.hbc-related-card-title{
  margin:0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
 
}
.hbc-related-card-title a{  color: var(--hbc-text) !important; text-decoration:none; }
.hbc-related-card-title a:hover{ text-decoration:underline; }

.hbc-related-excerpt{
  margin:0;
  color:#6b7280;
  font-size: 13px;
  line-height: 1.7;
}

.hbc-related-more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 400;
  font-size: var(--hbc-font-size-button) !important;
  color:var(--hbc-button-bg) !important;
  text-decoration:none;
}
.hbc-related-more:hover{ text-decoration:underline; }

.hbc-related-footer{
  display:flex;
  justify-content:center;
  margin-top: 6%;
}
.hbc-related-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 120px;
  height: 38px;
  padding: 0 18px;
   border-radius:var(--hbc-radius) !important;
  border: 1px solid var(--hbc-border-buttom);
  background: #fff;
  color: var(--hbc-border-buttom);
  font-weight: 900;
  text-decoration:none;
}
.hbc-related-btn:hover{
  background: var(--hbc-border-buttom);
  color:#fff;
}

@media (max-width: 980px){
  .hbc-related-grid{ grid-template-columns: 1fr; }
  .hbc-related-media{ height: 180px; }
  .hbc-related-placeholder{ height: 180px; }
}
