/* =========================================================
   TLG Header / Hero Offset Fix
   Keeps the compact header visible without covering the hero,
   page titles, article titles, or anchor targets.
   ========================================================= */
:root{
  --tlg-header-offset:64px;
  --tlg-header-offset-mobile:58px;
}

body.tlg-body .tlg-site-header,
body.tlg-body header.tlg-site-header,
body.tlg-body .tlg-ohio-header{
  position:sticky!important;
  top:0!important;
  z-index:1000!important;
}

body.admin-bar .tlg-site-header,
body.admin-bar header.tlg-site-header,
body.admin-bar .tlg-ohio-header{
  top:32px!important;
}

/* If an older rule made the first visual section pull upward, cancel it. */
body.tlg-body .tlg-ohio-home,
body.tlg-body .tlg-archive-wrap,
body.tlg-body .tlg-single-wrap,
body.tlg-body .tlg-submit-page,
body.tlg-body .tlg-account-page,
body.tlg-body .tlg-search-page,
body.tlg-body .tlg-vp-page,
body.tlg-body .tlg-work-page,
body.tlg-body .tlg-escape-page{
  margin-top:0!important;
}

/* Reserve breathing room below the header for inner pages whose first block is a hero/title. */
body.tlg-body:not(.home) main,
body.tlg-body:not(.home) .site-main,
body.tlg-body:not(.home) .tlg-archive-wrap,
body.tlg-body:not(.home) .tlg-single-wrap,
body.tlg-body:not(.home) .tlg-submit-page,
body.tlg-body:not(.home) .tlg-account-page,
body.tlg-body:not(.home) .tlg-search-page{
  padding-top:clamp(18px,3vw,32px)!important;
}

/* Homepage hero starts after the sticky header because the header remains in normal flow. */
body.tlg-body.home .tlg-ohio-hero,
body.tlg-body.front-page .tlg-ohio-hero,
body.tlg-body .tlg-ohio-home > .tlg-ohio-hero:first-child{
  margin-top:0!important;
}

/* Anchor targets should not hide underneath the sticky header. */
html{scroll-padding-top:calc(var(--tlg-header-offset) + 18px)!important;}
[id]{scroll-margin-top:calc(var(--tlg-header-offset) + 18px)!important;}

@media (max-width:782px){
  body.admin-bar .tlg-site-header,
  body.admin-bar header.tlg-site-header,
  body.admin-bar .tlg-ohio-header{top:46px!important;}
}

@media (max-width:700px){
  :root{--tlg-header-offset:var(--tlg-header-offset-mobile);}
  body.tlg-body:not(.home) main,
  body.tlg-body:not(.home) .site-main,
  body.tlg-body:not(.home) .tlg-archive-wrap,
  body.tlg-body:not(.home) .tlg-single-wrap,
  body.tlg-body:not(.home) .tlg-submit-page,
  body.tlg-body:not(.home) .tlg-account-page,
  body.tlg-body:not(.home) .tlg-search-page{
    padding-top:18px!important;
  }
}
