/* Site hero — bold gradient title + minimal pills (v11) */

.site-wrap > header.site-hero{
  text-align: center;
  padding: clamp(16px, 2.4vw, 30px) clamp(10px, 2vw, 18px) clamp(10px, 1.6vw, 18px) !important;
  max-width: min(980px, 100%);
  margin: 0 auto;
}

.site-hero__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-hero__title{
  margin: 0 !important;
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-size: clamp(1.55rem, calc(1.2rem + 2.4vw), 2.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -.03em !important;
  color: #0f172a !important;
  text-shadow: none !important;
  white-space: nowrap;
}
.site-hero__grad{
  color: #4f46e5;
  background: linear-gradient(92deg, #7c3aed 0%, #4f46e5 55%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Meta row: pills + share icons */
.site-hero__meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 30px;
}
.site-hero__pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
}
.site-hero__pill b{ color: #7c3aed; font-weight: 800; }
.site-hero__pill::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  flex-shrink: 0;
}
.site-hero__pill:nth-child(2)::before{ background: #0891b2; }
.site-hero__pill:nth-child(3)::before{ background: #059669; }

/* Share — tiny icon buttons at the end of the meta row */
.site-hero .share-bar-host{
  margin: 0 !important;
  max-width: none !important;
  flex-shrink: 0;
  min-height: 30px;
}
.site-hero .share-bar{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
}
.site-hero .share-bar__heading{ display: none; }
.site-hero .share-bar__btn{
  width: 28px;
  height: 28px;
  padding: 0 !important;
  border-radius: 999px !important;
  justify-content: center;
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05) !important;
  transition: border-color .15s, transform .15s;
}
.site-hero .share-bar__btn i{ font-size: 12px !important; }
.site-hero .share-bar__btn svg{ display: block; flex-shrink: 0; }
.site-hero .share-bar__btn--wa i{ color: #25d366; }
.site-hero .share-bar__btn--fb i{ color: #1877f2; }
.site-hero .share-bar__btn--tw i{ color: #0f1419; }
.site-hero .share-bar__btn--tg i{ color: #229ed9; }
.site-hero .share-bar__btn--li i{ color: #0a66c2; }
.site-hero .share-bar__btn--copy i{ color: #64748b; }
.site-hero .share-bar__btn:hover{
  transform: translateY(-1px);
  border-color: #c4b5fd !important;
}
.site-hero .share-bar__label{ display: none !important; }

/* SEO keywords — hidden visually, kept for crawlers */
.site-hero__seo{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-wrap > main#main-content{
  padding-top: 4px !important;
}

/* Phones — allow the title to wrap, keep everything centered */
@media (max-width: 640px){
  .site-hero__title{ white-space: normal; }
}
@media (max-width: 420px){
  .site-hero__pill{ padding: 4px 10px; font-size: 11px; }
  .site-hero .share-bar__btn{ width: 30px; height: 30px; }
}
