/* LRGW-326 — Shared public site header */
.public-header-inner{
  min-height:46px;
  display:flex;
  align-items:center;
  gap:24px;
}
.public-header-inner .site-name{flex:0 0 auto}
.public-header-inner .header-nav{margin-left:auto}
.public-header-inner .header-nav a.active,
.public-header-inner .header-nav a[aria-current="page"]{color:var(--gold)}
.public-header-socials{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}
.public-header-socials a{
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.72;
  transition:opacity .15s ease,transform .15s ease;
}
.public-header-socials a:hover{opacity:1;transform:translateY(-1px)}
.public-header-socials img{width:16px;height:16px;object-fit:contain;filter:grayscale(1) brightness(1.35)}

@media(max-width:760px){
  .public-header-inner{gap:12px}
  .public-header-inner .header-nav{gap:12px}
  .public-header-socials{display:none}
}
@media(max-width:560px){
  .public-header-inner{padding-left:14px;padding-right:14px}
  .public-header-inner .site-name{display:none}
  .public-header-inner .header-nav{margin:0 auto;justify-content:center;width:100%}
}
