/* =========================================================
   health-topic.css
   - 건강 주제별(혈압/지질/혈당/체중) 공통 페이지
   ========================================================= */

.ht-hero{
  padding: 18px 18px 16px;
}
.ht-hero__head{
  margin-bottom: 12px;
}
.ht-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(37,99,235,.06);
  font-weight: 1000;
  font-size: 12px;
  opacity: .9;
}
.ht-title{
  margin: 10px 0 6px;
  font-size: 28px;
  letter-spacing: -.4px;
}
.ht-sub{
  margin: 0;
  opacity: .80;
  line-height: 1.45;
}
.ht-sub--muted{ opacity: .70; }

.ht-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ht-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration:none;
  border: 1px solid rgba(15,23,42,.12);
  font-weight: 1000;
  color: rgba(15,23,42,.92);
  background: rgba(255,255,255,.92);
}
.ht-btn--ghost{
  background: rgba(15,23,42,.03);
}

.ht-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ht-card{
  padding: 14px;
}
.ht-h2{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 1000;
}
.ht-list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
  opacity: .88;
}
.ht-note{
  display:grid;
  gap: 8px;
  font-weight: 900;
  opacity: .88;
}

@media (max-width: 980px){
  .ht-grid{ grid-template-columns: 1fr; }
}

