:root{
  --hb-primary:#d6111e;
  --hb-alt:#ddc76d;
  --hb-black:#000;
  --hb-white:#fff;
  --hb-border: rgba(0,0,0,.10);
  --hb-soft: rgba(0,0,0,.06);
  --hb-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.hbl-wrap{
  width:100%;
  max-width:760px;
  margin:16px auto;
  background:var(--hb-white);
  color:var(--hb-black);
  border:1px solid var(--hb-border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--hb-shadow);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.hbl-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:linear-gradient(90deg,var(--hb-primary),#b30d18);
  color:var(--hb-white);
}

.hbl-title{ font-weight:900; font-size:16px; line-height:1.2; margin:0; }

.hbl-badge{
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  white-space:nowrap;
}

.hbl-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:12px;
}

.hbl-card{
  background:var(--hb-white);
  border:1px solid var(--hb-soft);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.hbl-img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  background: rgba(0,0,0,.03);
}

.hbl-card-inner{ padding:12px; }

.hbl-post-title{
  margin:0 0 6px 0;
  font-size:15px;
  line-height:1.25;
  font-weight:900;
}

.hbl-link{ color:var(--hb-black); text-decoration:none; }

.hbl-link:hover{
  text-decoration:underline;
  text-decoration-color:var(--hb-primary);
  text-underline-offset:3px;
}

.hbl-meta{ margin:0 0 8px 0; font-size:12px; opacity:.7; }

.hbl-excerpt{
  margin:0 0 10px 0;
  font-size:13.5px;
  line-height:1.45;
  opacity:.92;
  max-height: calc(1.45em * 3);
  overflow:hidden;
}

.hbl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  background:var(--hb-primary);
  color:#fff !important;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
  box-shadow: 0 6px 14px rgba(214,17,30,.22);
}

.hbl-btn::after{ content:"→"; font-weight:900; line-height:1; }

.hbl-btn:visited,
.hbl-btn:hover,
.hbl-btn:active{ color:#fff !important; }

.hbl-btn:hover{
  filter: brightness(.96);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(214,17,30,.26);
}

.hbl-btn:focus-visible{
  outline:3px solid var(--hb-alt);
  outline-offset:2px;
}

.hbl-footer{
  padding:10px 12px;
  border-top:1px solid rgba(0,0,0,.06);
  background: rgba(221,199,109,.12);
}

.hbl-footer-line{ font-size:12.5px; opacity:.9; }

.hbl-footer-link{
  color: var(--hb-primary);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--hb-alt);
  text-underline-offset: 3px;
}

.hbl-footer-link:hover{ filter: brightness(.95); }

.hbl-empty{
  padding:12px;
  border-radius:14px;
  background: rgba(221,199,109,.16);
  border: 1px solid rgba(0,0,0,.08);
  font-size:13px;
}

@media (max-width:420px){
  .hbl-wrap{ margin:12px 10px; border-radius:16px; }
  .hbl-head{ padding:10px 12px; }
  .hbl-list{ padding:10px; gap:8px; }
  .hbl-card-inner{ padding:10px; }
  .hbl-btn{ width:100%; }
}
