/* HKBetNet Betting Tips Archive v1.0 */
.hkbn-bta{
  --paper:#f1eee5;
  --soft:#f7f4ec;
  --ink:#171b18;
  --green:#244c3b;
  --green-dark:#17382b;
  --mustard:#c89b3c;
  --border:#cfc9bb;
  max-width:1180px;
  margin:0 auto;
  padding:28px 18px 56px;
  color:var(--ink);
}
.hkbn-bta-hero{
  background:var(--green-dark);
  color:#fff;
  border:1px solid var(--green-dark);
  border-radius:4px;
  padding:34px 30px;
  margin-bottom:22px;
}
.hkbn-bta-kicker{
  margin:0 0 8px;
  color:#ead7aa;
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
}
.hkbn-bta-hero h1{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(28px,4vw,44px);
  line-height:1.15;
}
.hkbn-bta-hero p{
  margin:0;
  max-width:880px;
  color:#f4f0e8;
  font-size:16px;
  line-height:1.8;
}
.hkbn-bta-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 16px;
  margin-bottom:14px;
  background:var(--soft);
  border:1px solid var(--border);
  border-top:3px solid var(--mustard);
}
.hkbn-bta-toolbar strong{
  color:var(--green-dark);
}
.hkbn-bta-back{
  color:var(--green-dark)!important;
  font-weight:900!important;
  text-decoration:underline!important;
  text-decoration-color:var(--mustard)!important;
  text-decoration-thickness:2px!important;
  text-underline-offset:4px!important;
}
.hkbn-bta-list{
  border:1px solid var(--border);
  background:#fff;
}
.hkbn-bta-item{
  display:grid;
  grid-template-columns:128px minmax(0,1fr);
  gap:18px;
  padding:18px 20px;
  border-bottom:1px solid #e5dfd3;
}
.hkbn-bta-item:last-child{
  border-bottom:0;
}
.hkbn-bta-date{
  color:#667069;
  font-size:13px;
  line-height:1.5;
  font-variant-numeric:tabular-nums;
}
.hkbn-bta-content h2{
  margin:0 0 7px;
  font-size:19px;
  line-height:1.4;
}
.hkbn-bta-content h2 a{
  color:var(--green-dark)!important;
  font-weight:900!important;
  text-decoration:none!important;
}
.hkbn-bta-content h2 a:hover,
.hkbn-bta-content h2 a:focus{
  text-decoration:underline!important;
  text-decoration-color:var(--mustard)!important;
  text-decoration-thickness:2px!important;
  text-underline-offset:4px!important;
}
.hkbn-bta-excerpt{
  margin:0;
  color:#4d554f;
  font-size:14px;
  line-height:1.75;
}
.hkbn-bta-state{
  padding:28px 20px;
  color:#59615b;
  line-height:1.7;
}
.hkbn-bta-state--error{
  color:#7a2f2f;
}
.hkbn-bta-pagination{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  justify-content:center;
  margin-top:20px;
}
.hkbn-bta-pagination button{
  min-width:42px;
  min-height:40px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:3px;
  background:#fff;
  color:var(--green-dark);
  font-weight:850;
  cursor:pointer;
}
.hkbn-bta-pagination button:hover,
.hkbn-bta-pagination button:focus{
  background:var(--soft);
}
.hkbn-bta-pagination button[aria-current="page"]{
  background:var(--green-dark);
  color:#fff;
  border-color:var(--green-dark);
}
.hkbn-bta-pagination button:disabled{
  opacity:.45;
  cursor:not-allowed;
}
@media (max-width:720px){
  .hkbn-bta-toolbar{
    align-items:flex-start;
    flex-direction:column;
  }
  .hkbn-bta-item{
    grid-template-columns:1fr;
    gap:6px;
  }
}
@media (max-width:480px){
  .hkbn-bta{
    padding-left:12px;
    padding-right:12px;
  }
  .hkbn-bta-hero{
    padding:26px 20px;
  }
}