
/* 24.3.8.31 — editable social links in header */
.header-glass{position:relative}
.header-socials{
  position:absolute;
  z-index:8;
  left:50%;
  bottom:-15px;
  transform:translateX(-50%);
  width:min(440px,44vw);
  min-height:30px;
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  gap:8px;
  pointer-events:none;
}
.header-socials[hidden],.mobile-socials[hidden]{display:none!important}
.header-social-link{
  width:36px;height:36px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.48);
  background:rgba(17,56,45,.94);
  color:var(--social-icon-color,#fff);text-decoration:none;
  box-shadow:0 5px 16px rgba(0,0,0,.18);
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
  pointer-events:auto;
}
.header-social-link:hover{transform:translateY(-2px) scale(1.07);background:#d5a94c;border-color:#d5a94c}
.header-social-link svg{width:19px;height:19px;fill:currentColor}
.header-social-link span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.mobile-socials{display:none}
@media(max-width:980px){
  .header-socials{display:none!important}
  .mobile-socials{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    padding:14px 8px 10px;
  }
  .mobile-socials .header-social-link{width:48px;height:48px;background:#17382d}
  .mobile-socials .header-social-link svg{width:24px;height:24px}
}
