.share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 14px 0;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;
    padding: 0;

    border: 0;
    border-radius: 5px;

    color: #ffffff;
    text-decoration: none;
    cursor: pointer;

    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}

.share-vk {
    background-color: #0077ff;
}

.share-telegram {
    background-color: #229ed9;
}
.share-copy-vk {
    background-color: #6c757d;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
}
.share-copy-vk.is-copied {
    background-color: #198754;
}

.share-copy-vk .fa {
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
}
.share-button:hover,
.share-button:focus {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transform: translateY(-1px);
}

.share-button:active {
    transform: translateY(0);
}

.share-button svg {
    display: block;
    pointer-events: none;
}
.share-button:focus-visible {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}
.share-copy-status {
    flex: 0 0 100%;
    margin-top: 3px;

    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: #59636e;
}

.share-copy-status:empty {
    display: none;
}