.header-socials {
    min-height: var(--hdr-social-h, 52px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 0;
}

.header-socials .soc {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.header-socials .soc:hover,
.header-socials .soc:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.14);
    border-color: var(--brand-blue, #0073ff);
}

.header-socials .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-socials img {
    width: 24px;
    height: 24px;
    display: block;
}

@media (max-width: 768px) {
    .header-socials {
        gap: 10px;
    }

    .header-socials .soc {
        width: 40px;
        height: 40px;
    }

    .header-socials img {
        width: 22px;
        height: 22px;
    }
}