.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";
}

.share-buttons-mobile-copy {
    display: none;
}

@media (max-width: 768px) {
    .share-buttons-mobile-copy {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 1200;
        height: 44px;
        border: none;
        border-radius: 999px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .share-buttons-mobile-copy::before {
        font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif;
        font-weight: 900;
        content: "\f0c5";
    }

    .blogs__lists {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }
}