.public-socials{
    display:flex;
    justify-content:center;
    gap:22px;
    margin-bottom:45px;
}

.public-socials a{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    background:#1f1f1f;
    color:white;
    text-decoration:none;
    transition:background .35s ease,border-color .35s ease,transform .35s ease;
}

.public-socials a:hover{
    border-color:#D4AF37;
    background:#D4AF37;
    transform:translateY(-5px);
}

.public-socials a:focus-visible{
    outline:3px solid rgba(212,175,55,.46);
    outline-offset:4px;
}

.public-socials svg{
    width:22px;
    height:22px;
    display:block;
    stroke:currentColor;
    opacity:1;
}

@media (max-width:768px){
    .public-socials{margin-bottom:34px;}
}

@media (max-width:576px){
    .public-socials{gap:16px;}
    .public-socials a{
        width:48px;
        height:48px;
    }
}
