.social {
    position: relative;
}

.btn.social__expand-button {
    gap: 8px;
    border-radius: 32px;
    padding: 11px 16px;
}

.social__list {
    position: absolute;
    display: none;
    list-style: none;
    width: 100%;
    top: calc(100% + 12px);
    margin: 0;
    padding: 4px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: var(--background-primary);
}

.social__list-opened {
    display: block;
}

a.btn.social-item__link {
    justify-content: start;
    width: 100%;
    padding: 12px;
    gap: 8px;
}

.social-item__icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .social__expand-button .social-item__text {
        display: none;
    }

    .btn.social__expand-button {
        padding: 10px;
        width: 40px;
        height: 40px;
    }
}