/* Han - Bölüm Başlığı (tam kapsam) */
.han-heading .han-head{
  display:grid; grid-template-columns: 1fr auto;
  align-items:center; column-gap:24px; row-gap:12px;
}
.han-heading .han-left{min-width:0}
.han-heading .han-label{
  display:inline-block; background:#e7f5ef; color:#143d32;
  padding:8px 12px; border-radius:6px;
  font-weight:700; line-height:1; margin-bottom:12px;
}
.han-heading .han-title{
  margin:0; color:#1b4332; font-weight:800;
  font-size:clamp(1.6rem, 2.8vw, 3rem);
  line-height:1.1; word-break:break-word;
}
.han-heading .han-right{justify-self:end}
.han-heading .han-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:#f59e0b; color:#143d32;
  font-weight:700; text-decoration:none;
  padding:14px 18px; border-radius:6px;
  transition:background .2s ease, transform .15s ease, color .2s ease, box-shadow .2s ease;
  box-shadow:0 6px 16px rgba(0,0,0,.06); line-height:1;
}
.han-heading .han-btn:hover{ background:#f08c00; color:#0f2f26; transform:translateY(-1px); }
.han-heading .han-btn-text{line-height:1}
.han-heading .han-btn-icon{display:inline-flex; align-items:center; justify-content:center; line-height:0; font-size:18px;}
.han-heading .han-btn.has-icon-left .han-btn-icon{order:-1}
@media (max-width: 768px){
  .han-heading .han-head{ grid-template-columns: 1fr; }
  .han-heading .han-right{ justify-self:start; }
}
@media (max-width: 768px){
  .han-heading.btn-mobile-right .han-head{ grid-template-columns: 1fr auto; }
  .han-heading.btn-mobile-right .han-right{ justify-self:end; }
}
