.share-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    flex-wrap: wrap;
}

.share-widget__label {
    font-weight: 700;
    color: #152943;
    font-size: 14px;
}

.share-widget__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-widget__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #152943;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, opacity .15s ease;
    padding: 0;
}

.share-widget__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-widget__btn:hover {
    opacity: .85;
}

.share-widget__btn.is-copied {
    background: #007c23;
}

.share-widget__btn[hidden] {
    display: none;
}

.share-widget__btn[data-share="facebook"] {
    background: #1877f2;
}

.share-widget__btn[data-share="x"] {
    background: #000;
}

.share-widget__btn[data-share="whatsapp"] {
    background: #25d366;
}

.share-widget__btn[data-share="telegram"] {
    background: #229ed9;
}

@media (max-width: 480px) {
    .share-widget {
        gap: 8px;
        padding: 12px;
    }

    .share-widget__btn {
        width: 32px;
        height: 32px;
    }

    .share-widget__btn svg {
        width: 16px;
        height: 16px;
    }
}
