.lcdf-nav-socials{
  display:flex;
  align-items:center;
  gap:5px;
  margin-left:2px;
  flex:0 0 auto;
}
.lcdf-social-icon{
  width:28px;
  height:28px;
  display:inline-grid;
  place-items:center;
  color:#9a9da5;
  border-radius:50%;
  transition:color .22s ease,background-color .22s ease,transform .22s ease;
}
.lcdf-social-icon svg{
  width:15px;
  height:15px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.lcdf-social-icon svg .fill-shape,
.lcdf-social-icon svg .fill-dot{
  fill:currentColor;
  stroke:none;
}
.lcdf-social-icon:hover,
.lcdf-social-icon:focus-visible{
  color:var(--social-brand);
  background:rgba(0,0,0,.035);
  transform:translateY(-1px);
}
.lcdf-social-icon:focus-visible{
  outline:2px solid var(--blue,#2445e8);
  outline-offset:2px;
}
@media(max-width:1320px){
  .lcdf-nav-socials{gap:2px}
  .lcdf-social-icon{width:26px;height:26px}
  .lcdf-social-icon svg{width:14px;height:14px}
}
@media(max-width:980px){
  .lcdf-nav-socials{
    width:min(620px,100%);
    margin:0 auto;
    padding:16px 4px;
    gap:12px;
    border-bottom:1px solid #e5e5e8;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .lcdf-social-icon{width:36px;height:36px;background:#f5f5f7}
  .lcdf-social-icon svg{width:17px;height:17px}
}
