.share-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.share-buttons__item {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free", sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.share-buttons__item::before {
    display: inline-block;
}
.share-buttons__item:focus-visible {
    outline: 2px solid #1f6feb;
    outline-offset: 2px;
}

.share-buttons__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.share-buttons__item--copied {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.5);
}

.share-buttons__item--vk {
    background-color: #0077ff;
    }
.share-buttons__item--vk::before {
    content: "\f189";
}

.share-buttons__item--ok {
    background-color: #ff9800;
    }
.share-buttons__item--ok::before {
    content: "\f263";
}

.share-buttons__item--tg {
    background-color: #34a3e6;
    }
.share-buttons__item--tg::before {
    content: "\f3fe";
}

.share-buttons__item--copy {
    background-color: #5e5e5e;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif;
    font-weight: 900;
}
.share-buttons__item--copy::before {
    content: "\f0c5";
}